diff --git a/vpr/src/pack/greedy_candidate_selector.cpp b/vpr/src/pack/greedy_candidate_selector.cpp index d4579a45554..0ae3972140b 100644 --- a/vpr/src/pack/greedy_candidate_selector.cpp +++ b/vpr/src/pack/greedy_candidate_selector.cpp @@ -64,7 +64,6 @@ static void add_molecule_to_pb_stats_candidates( PackMoleculeId molecule_id, ClusterGainStats& cluster_gain_stats, t_logical_block_type_ptr cluster_type, - int max_queue_size, AttractionInfo& attraction_groups, const Prepacker& prepacker, const AtomNetlist& atom_netlist, @@ -219,13 +218,11 @@ ClusterGainStats GreedyCandidateSelector::create_cluster_gain_stats( // Initialize the cluster gain stats. ClusterGainStats cluster_gain_stats; cluster_gain_stats.seed_molecule_id = cluster_seed_mol_id; - cluster_gain_stats.num_feasible_blocks = NOT_VALID; cluster_gain_stats.has_done_connectivity_and_timing = false; - // TODO: The reason this is being resized and not reserved is due to legacy - // code which should be updated. - cluster_gain_stats.feasible_blocks.resize(packer_opts_.feasible_block_array_size); - for (int i = 0; i < packer_opts_.feasible_block_array_size; i++) - cluster_gain_stats.feasible_blocks[i] = PackMoleculeId::INVALID(); + cluster_gain_stats.initial_search_for_feasible_blocks = true; + cluster_gain_stats.num_candidates_proposed = 0; + cluster_gain_stats.candidates_propose_limit = packer_opts_.feasible_block_array_size; + cluster_gain_stats.feasible_blocks.clear(); cluster_gain_stats.tie_break_high_fanout_net = AtomNetId::INVALID(); cluster_gain_stats.explore_transitive_fanout = true; @@ -288,8 +285,10 @@ void GreedyCandidateSelector::update_cluster_gain_stats_candidate_success( AttractGroupId atom_grp_id = attraction_groups.get_atom_attraction_group(blk_id); /* reset list of feasible blocks */ - cluster_gain_stats.num_feasible_blocks = NOT_VALID; cluster_gain_stats.has_done_connectivity_and_timing = false; + cluster_gain_stats.initial_search_for_feasible_blocks = true; + cluster_gain_stats.num_candidates_proposed = 0; + cluster_gain_stats.feasible_blocks.clear(); /* TODO: Allow clusters to have more than one attraction group. */ if (atom_grp_id.is_valid()) cluster_gain_stats.attraction_grp_id = atom_grp_id; @@ -680,8 +679,8 @@ PackMoleculeId GreedyCandidateSelector::get_next_candidate_for_cluster( */ // 1. Find unpacked molecules based on criticality and strong connectedness (connected by low fanout nets) with current cluster - if (cluster_gain_stats.num_feasible_blocks == NOT_VALID) { - cluster_gain_stats.num_feasible_blocks = 0; + if (cluster_gain_stats.initial_search_for_feasible_blocks) { + cluster_gain_stats.initial_search_for_feasible_blocks = false; add_cluster_molecule_candidates_by_connectivity_and_timing(cluster_gain_stats, cluster_id, cluster_legalizer, @@ -691,7 +690,7 @@ PackMoleculeId GreedyCandidateSelector::get_next_candidate_for_cluster( if (packer_opts_.prioritize_transitive_connectivity) { // 2. Find unpacked molecules based on transitive connections (eg. 2 hops away) with current cluster - if (cluster_gain_stats.num_feasible_blocks == 0 && cluster_gain_stats.explore_transitive_fanout) { + if (cluster_gain_stats.feasible_blocks.empty() && cluster_gain_stats.explore_transitive_fanout) { add_cluster_molecule_candidates_by_transitive_connectivity(cluster_gain_stats, cluster_id, cluster_legalizer, @@ -699,7 +698,7 @@ PackMoleculeId GreedyCandidateSelector::get_next_candidate_for_cluster( } // 3. Find unpacked molecules based on weak connectedness (connected by high fanout nets) with current cluster - if (cluster_gain_stats.num_feasible_blocks == 0 && cluster_gain_stats.tie_break_high_fanout_net) { + if (cluster_gain_stats.feasible_blocks.empty() && cluster_gain_stats.tie_break_high_fanout_net) { add_cluster_molecule_candidates_by_highfanout_connectivity(cluster_gain_stats, cluster_id, cluster_legalizer, @@ -707,7 +706,7 @@ PackMoleculeId GreedyCandidateSelector::get_next_candidate_for_cluster( } } else { //Reverse order // 3. Find unpacked molecules based on weak connectedness (connected by high fanout nets) with current cluster - if (cluster_gain_stats.num_feasible_blocks == 0 && cluster_gain_stats.tie_break_high_fanout_net) { + if (cluster_gain_stats.feasible_blocks.empty() && cluster_gain_stats.tie_break_high_fanout_net) { add_cluster_molecule_candidates_by_highfanout_connectivity(cluster_gain_stats, cluster_id, cluster_legalizer, @@ -715,7 +714,7 @@ PackMoleculeId GreedyCandidateSelector::get_next_candidate_for_cluster( } // 2. Find unpacked molecules based on transitive connections (eg. 2 hops away) with current cluster - if (cluster_gain_stats.num_feasible_blocks == 0 && cluster_gain_stats.explore_transitive_fanout) { + if (cluster_gain_stats.feasible_blocks.empty() && cluster_gain_stats.explore_transitive_fanout) { add_cluster_molecule_candidates_by_transitive_connectivity(cluster_gain_stats, cluster_id, cluster_legalizer, @@ -724,7 +723,7 @@ PackMoleculeId GreedyCandidateSelector::get_next_candidate_for_cluster( } // 4. Find unpacked molecules based on attraction group of the current cluster (if the cluster has an attraction group) - if (cluster_gain_stats.num_feasible_blocks == 0) { + if (cluster_gain_stats.feasible_blocks.empty()) { add_cluster_molecule_candidates_by_attraction_group(cluster_gain_stats, cluster_id, cluster_legalizer, @@ -732,15 +731,25 @@ PackMoleculeId GreedyCandidateSelector::get_next_candidate_for_cluster( } /* Grab highest gain molecule */ - // If this was a vector, this would just be a pop_back. PackMoleculeId best_molecule = PackMoleculeId::INVALID(); - if (cluster_gain_stats.num_feasible_blocks > 0) { - cluster_gain_stats.num_feasible_blocks--; - int index = cluster_gain_stats.num_feasible_blocks; - best_molecule = cluster_gain_stats.feasible_blocks[index]; + // If there are feasible blocks being proposed and the number of suggestions did not reach the limit. + // Get the block with highest gain from the top of the priority queue. + if (!cluster_gain_stats.feasible_blocks.empty() && !cluster_gain_stats.current_stage_candidates_proposed_limit_reached()) { + best_molecule = cluster_gain_stats.feasible_blocks.pop().first; + VTR_ASSERT(best_molecule != PackMoleculeId::INVALID()); + cluster_gain_stats.num_candidates_proposed++; VTR_ASSERT(!cluster_legalizer.is_mol_clustered(best_molecule)); } + // If we have no feasible blocks, or we have reached the limit of number of pops, + // then we need to clear the feasible blocks list and reset the number of pops. + // This ensures that we can continue searching for feasible blocks for the remaining + // steps (2.transitive, 3.high fanout, 4.attraction group). + if (cluster_gain_stats.feasible_blocks.empty() || cluster_gain_stats.current_stage_candidates_proposed_limit_reached()) { + cluster_gain_stats.feasible_blocks.clear(); + cluster_gain_stats.num_candidates_proposed = 0; + } + // If we are allowing unrelated clustering and no molecule has been found, // get unrelated candidate for cluster. if (allow_unrelated_clustering_ && best_molecule == PackMoleculeId::INVALID()) { @@ -774,7 +783,9 @@ void GreedyCandidateSelector::add_cluster_molecule_candidates_by_connectivity_an LegalizationClusterId legalization_cluster_id, const ClusterLegalizer& cluster_legalizer, AttractionInfo& attraction_groups) { - cluster_gain_stats.explore_transitive_fanout = true; /* If no legal molecules found, enable exploration of molecules two hops away */ + + cluster_gain_stats.explore_transitive_fanout = true; /* If no legal molecules found, enable exploration of molecules two hops away */ + cluster_gain_stats.candidates_propose_limit = packer_opts_.feasible_block_array_size; // set the limit of candidates to propose for (AtomBlockId blk_id : cluster_gain_stats.marked_blocks) { // Get the molecule that contains this block. @@ -785,7 +796,6 @@ void GreedyCandidateSelector::add_cluster_molecule_candidates_by_connectivity_an add_molecule_to_pb_stats_candidates(molecule_id, cluster_gain_stats, cluster_legalizer.get_cluster_type(legalization_cluster_id), - packer_opts_.feasible_block_array_size, attraction_groups, prepacker_, atom_netlist_, @@ -801,6 +811,7 @@ void GreedyCandidateSelector::add_cluster_molecule_candidates_by_transitive_conn AttractionInfo& attraction_groups) { //TODO: For now, only done by fan-out; should also consider fan-in cluster_gain_stats.explore_transitive_fanout = false; + cluster_gain_stats.candidates_propose_limit = std::min(packer_opts_.feasible_block_array_size, AAPACK_MAX_TRANSITIVE_EXPLORE); // set the limit of candidates to propose /* First time finding transitive fanout candidates therefore alloc and load them */ load_transitive_fanout_candidates(cluster_gain_stats, @@ -814,8 +825,6 @@ void GreedyCandidateSelector::add_cluster_molecule_candidates_by_transitive_conn add_molecule_to_pb_stats_candidates(molecule_id, cluster_gain_stats, cluster_legalizer.get_cluster_type(legalization_cluster_id), - std::min(packer_opts_.feasible_block_array_size, - AAPACK_MAX_TRANSITIVE_EXPLORE), attraction_groups, prepacker_, atom_netlist_, @@ -834,6 +843,7 @@ void GreedyCandidateSelector::add_cluster_molecule_candidates_by_highfanout_conn * related blocks */ AtomNetId net_id = cluster_gain_stats.tie_break_high_fanout_net; + cluster_gain_stats.candidates_propose_limit = std::min(packer_opts_.feasible_block_array_size, AAPACK_MAX_TRANSITIVE_EXPLORE); // set the limit of candidates to propose int count = 0; for (AtomPinId pin_id : atom_netlist_.net_pins(net_id)) { @@ -848,8 +858,6 @@ void GreedyCandidateSelector::add_cluster_molecule_candidates_by_highfanout_conn add_molecule_to_pb_stats_candidates(molecule_id, cluster_gain_stats, cluster_legalizer.get_cluster_type(legalization_cluster_id), - std::min(packer_opts_.feasible_block_array_size, - AAPACK_MAX_HIGH_FANOUT_EXPLORE), attraction_groups, prepacker_, atom_netlist_, @@ -877,6 +885,7 @@ void GreedyCandidateSelector::add_cluster_molecule_candidates_by_attraction_grou * group molecules for candidate molecules. */ AttractGroupId grp_id = cluster_gain_stats.attraction_grp_id; + cluster_gain_stats.candidates_propose_limit = packer_opts_.feasible_block_array_size; // set the limit of candidates to propose if (grp_id == AttractGroupId::INVALID()) { return; } @@ -909,7 +918,6 @@ void GreedyCandidateSelector::add_cluster_molecule_candidates_by_attraction_grou add_molecule_to_pb_stats_candidates(molecule_id, cluster_gain_stats, cluster_legalizer.get_cluster_type(legalization_cluster_id), - packer_opts_.feasible_block_array_size, attraction_groups, prepacker_, atom_netlist_, @@ -931,7 +939,6 @@ void GreedyCandidateSelector::add_cluster_molecule_candidates_by_attraction_grou add_molecule_to_pb_stats_candidates(molecule_id, cluster_gain_stats, cluster_legalizer.get_cluster_type(legalization_cluster_id), - packer_opts_.feasible_block_array_size, attraction_groups, prepacker_, atom_netlist_, @@ -946,7 +953,6 @@ void GreedyCandidateSelector::add_cluster_molecule_candidates_by_attraction_grou static void add_molecule_to_pb_stats_candidates(PackMoleculeId molecule_id, ClusterGainStats& cluster_gain_stats, t_logical_block_type_ptr cluster_type, - int max_queue_size, AttractionInfo& attraction_groups, const Prepacker& prepacker, const AtomNetlist& atom_netlist, @@ -996,45 +1002,18 @@ static void add_molecule_to_pb_stats_candidates(PackMoleculeId molecule_id, } } - for (int i = 0; i < cluster_gain_stats.num_feasible_blocks; i++) { - if (cluster_gain_stats.feasible_blocks[i] == molecule_id) { - return; // already in queue, do nothing - } + // if already in queue, do nothing + if (cluster_gain_stats.feasible_blocks.contains(molecule_id)) { + return; } - if (cluster_gain_stats.num_feasible_blocks >= max_queue_size - 1) { - /* maximum size for array, remove smallest gain element and sort */ - if (get_molecule_gain(molecule_id, cluster_gain_stats, cluster_att_grp, attraction_groups, num_molecule_failures, prepacker, atom_netlist, appack_ctx) > get_molecule_gain(cluster_gain_stats.feasible_blocks[0], cluster_gain_stats, cluster_att_grp, attraction_groups, num_molecule_failures, prepacker, atom_netlist, appack_ctx)) { - /* single loop insertion sort */ - int j; - for (j = 0; j < cluster_gain_stats.num_feasible_blocks - 1; j++) { - if (get_molecule_gain(molecule_id, cluster_gain_stats, cluster_att_grp, attraction_groups, num_molecule_failures, prepacker, atom_netlist, appack_ctx) <= get_molecule_gain(cluster_gain_stats.feasible_blocks[j + 1], cluster_gain_stats, cluster_att_grp, attraction_groups, num_molecule_failures, prepacker, atom_netlist, appack_ctx)) { - cluster_gain_stats.feasible_blocks[j] = molecule_id; - break; - } else { - cluster_gain_stats.feasible_blocks[j] = cluster_gain_stats.feasible_blocks[j + 1]; - } - } - if (j == cluster_gain_stats.num_feasible_blocks - 1) { - cluster_gain_stats.feasible_blocks[j] = molecule_id; - } - } - } else { - /* Expand array and single loop insertion sort */ - int j; - for (j = cluster_gain_stats.num_feasible_blocks - 1; j >= 0; j--) { - if (get_molecule_gain(cluster_gain_stats.feasible_blocks[j], cluster_gain_stats, cluster_att_grp, attraction_groups, num_molecule_failures, prepacker, atom_netlist, appack_ctx) > get_molecule_gain(molecule_id, cluster_gain_stats, cluster_att_grp, attraction_groups, num_molecule_failures, prepacker, atom_netlist, appack_ctx)) { - cluster_gain_stats.feasible_blocks[j + 1] = cluster_gain_stats.feasible_blocks[j]; - } else { - cluster_gain_stats.feasible_blocks[j + 1] = molecule_id; - break; - } - } - if (j < 0) { - cluster_gain_stats.feasible_blocks[0] = molecule_id; - } - cluster_gain_stats.num_feasible_blocks++; + for (std::pair& feasible_block : cluster_gain_stats.feasible_blocks.heap) { + VTR_ASSERT_DEBUG(get_molecule_gain(feasible_block.first, cluster_gain_stats, cluster_att_grp, attraction_groups, num_molecule_failures, prepacker, atom_netlist, appack_ctx) == feasible_block.second); } + + // Insert the molecule into the queue sorted by gain, and maintain the heap property + float molecule_gain = get_molecule_gain(molecule_id, cluster_gain_stats, cluster_att_grp, attraction_groups, num_molecule_failures, prepacker, atom_netlist, appack_ctx); + cluster_gain_stats.feasible_blocks.push(molecule_id, molecule_gain); } /* @@ -1045,27 +1024,7 @@ static void add_molecule_to_pb_stats_candidates(PackMoleculeId molecule_id, */ static void remove_molecule_from_pb_stats_candidates(PackMoleculeId molecule_id, ClusterGainStats& cluster_gain_stats) { - int molecule_index; - bool found_molecule = false; - - //find the molecule index - for (int i = 0; i < cluster_gain_stats.num_feasible_blocks; i++) { - if (cluster_gain_stats.feasible_blocks[i] == molecule_id) { - found_molecule = true; - molecule_index = i; - } - } - - //if it is not in the array, return - if (found_molecule == false) { - return; - } - - //Otherwise, shift the molecules while removing the specified molecule - for (int j = molecule_index; j < cluster_gain_stats.num_feasible_blocks - 1; j++) { - cluster_gain_stats.feasible_blocks[j] = cluster_gain_stats.feasible_blocks[j + 1]; - } - cluster_gain_stats.num_feasible_blocks--; + cluster_gain_stats.feasible_blocks.remove_at_pop_time(molecule_id); } /* diff --git a/vpr/src/pack/greedy_candidate_selector.h b/vpr/src/pack/greedy_candidate_selector.h index a7af8d448b7..b39ad469b45 100644 --- a/vpr/src/pack/greedy_candidate_selector.h +++ b/vpr/src/pack/greedy_candidate_selector.h @@ -23,6 +23,7 @@ #include "vtr_vector.h" #include "vtr_random.h" #include "vtr_vector_map.h" +#include "lazy_pop_unique_priority_queue.h" // Forward declarations class AtomNetlist; @@ -97,13 +98,6 @@ struct ClusterGainStats { /// with the cluster. AttractGroupId attraction_grp_id; - /// @brief Array of feasible blocks to select from [0..max_array_size-1] - /// - /// Sorted in ascending gain order so that the last cluster_ctx.blocks is - /// the most desirable (this makes it easy to pop blocks off the list. - std::vector feasible_blocks; - int num_feasible_blocks; - /// @brief The flat placement location of this cluster. /// /// This is some function of the positions of the molecules which have been @@ -126,6 +120,25 @@ struct ClusterGainStats { /// set when the stats are created based on the primitive pb type /// of the seed. bool is_memory = false; + + /// @brief List of feasible block and its gain pairs. + /// The list is maintained in heap structure with the highest gain block + /// at the front. + LazyPopUniquePriorityQueue feasible_blocks; + + /// @brief Indicator for the initial search for feasible blocks. + bool initial_search_for_feasible_blocks; + + /// @brief Limit for the number of candiate proposed at each stage. + unsigned candidates_propose_limit; + + /// @brief Counter for the number of candiate proposed at each stage. + unsigned num_candidates_proposed; + + /// @brief Check if the current stage candidates proposed limit is reached. + bool current_stage_candidates_proposed_limit_reached() { + return num_candidates_proposed >= candidates_propose_limit; + } }; /** @@ -444,7 +457,7 @@ class GreedyCandidateSelector { // Cluster Candidate Selection // ===================================================================== // - /* + /** * @brief Add molecules with strong connectedness to the current cluster to * the list of feasible blocks. */ @@ -471,7 +484,7 @@ class GreedyCandidateSelector { LegalizationClusterId legalization_cluster_id, const ClusterLegalizer& cluster_legalizer); - /* + /** * @brief Add molecules based on transitive connections (eg. 2 hops away) * with current cluster. */ @@ -481,7 +494,7 @@ class GreedyCandidateSelector { const ClusterLegalizer& cluster_legalizer, AttractionInfo& attraction_groups); - /* + /** * @brief Add molecules based on weak connectedness (connected by high * fanout nets) with current cluster. */ @@ -491,7 +504,7 @@ class GreedyCandidateSelector { const ClusterLegalizer& cluster_legalizer, AttractionInfo& attraction_groups); - /* + /** * @brief If the current cluster being packed has an attraction group * associated with it (i.e. there are atoms in it that belong to an * attraction group), this routine adds molecules from the associated diff --git a/vpr/src/util/lazy_pop_unique_priority_queue.h b/vpr/src/util/lazy_pop_unique_priority_queue.h new file mode 100644 index 00000000000..d375daf19cd --- /dev/null +++ b/vpr/src/util/lazy_pop_unique_priority_queue.h @@ -0,0 +1,216 @@ +/** + * @file + * @author Rongbo Zhang + * @date 2025-04-23 + * @brief This file contains the definition of the LazyPopUniquePriorityQueue class. + * + * The class LazyPopUniquePriorityQueue is a priority queue that allows for lazy deletion of elements. + * The elements are pair of key and sort-value. The key is a unique value to identify the item, and the sort-value is used to sort the item. + * It is implemented using a vector and 2 sets, one set keeps track of the elements in the queue, and the other set keeps track of the elements that are pending deletion, + * so that they can be removed from the queue when they are popped. + * + * Currently, the class supports the following functions: + * LazyPopUniquePriorityQueue::push(): Pushes a key-sort-value (K-SV) pair into the priority queue and adds the key to the tracking set. + * LazyPopUniquePriorityQueue::pop(): Returns the K-SV pair with the highest SV whose key is not pending deletion. + * LazyPopUniquePriorityQueue::remove(): Removes an element from the priority queue immediately. + * LazyPopUniquePriorityQueue::remove_at_pop_time(): Removes an element from the priority queue when it is popped. + * LazyPopUniquePriorityQueue::empty(): Returns whether the queue is empty. + * LazyPopUniquePriorityQueue::clear(): Clears the priority queue vector and the tracking sets. + * LazyPopUniquePriorityQueue::size(): Returns the number of elements in the queue. + * LazyPopUniquePriorityQueue::contains(): Returns true if the key is in the queue, false otherwise. + */ + +#pragma once + +#include +#include +#include + +/** + * @brief Lazy Pop Unique Priority Queue + * + * This is a priority queue that is used to sort items which are identified by the key + * and sorted by the sort value. + * + * It uses a vector to store the key and sort value pair. + * It uses a set to store the keys that are in the vector for uniqueness checking + * and a set to store the delete pending keys which will be removed at pop time. + */ + +template +class LazyPopUniquePriorityQueue { + public: + /** @brief The custom comparsion struct for sorting the items in the priority queue. + * A less than comparison will put the item with the highest sort value to the front of the queue. + * A greater than comparison will put the item with the lowest sort value to the front of the queue. + */ + struct LazyPopUniquePriorityQueueCompare { + bool operator()(const std::pair& a, + const std::pair& b) const { + return a.second < b.second; + } + }; + + /// @brief The vector maintained as heap to store the key and sort value pair. + std::vector> heap; + + /// @brief The set to store the keys that are in the queue. This is used to ensure uniqueness + std::unordered_set content_set; + + /// @brief The set to store the delete pending item from the queue refered by the key. + std::unordered_set delete_pending_set; + + /** + * @brief Push the key and the sort value as a pair into the priority queue. + * + * @param key + * The unique key for the item that will be pushed onto the queue. + * @param value + * The sort value used for sorting the item. + */ + void push(T_key key, T_sort value) { + // Insert the key and sort value pair into the queue if it is not already present + if (content_set.find(key) != content_set.end()) { + // If the key is already in the queue, do nothing + return; + } + // Insert the key and sort value pair into the heap and track the key + // The new item is added to the end of the vector and then the push_heap function is call + // to push the item to the correct position in the heap structure. + heap.emplace_back(key, value); + std::push_heap(heap.begin(), heap.end(), LazyPopUniquePriorityQueueCompare()); + content_set.insert(key); + } + + /** + * @brief Pop the top item from the priority queue. + * + * @return The key and sort value pair. + */ + std::pair pop() { + std::pair top_pair; + while (heap.size() > 0) { + top_pair = heap.front(); + // Remove the key from the heap and the tracking set. + // The pop_heap function will move the top item in the heap structure to the end of the vector container. + // Then the pop_back function will remove the last item. + std::pop_heap(heap.begin(), heap.end(), LazyPopUniquePriorityQueueCompare()); + heap.pop_back(); + content_set.erase(top_pair.first); + + // Checking if the key with the highest sort value is in the delete pending set. + // If it is, ignore the current top item and remove the key from the delete pending set. Then get the next top item. + // Otherwise, the top item found, break the loop. + if (delete_pending_set.find(top_pair.first) != delete_pending_set.end()) { + delete_pending_set.erase(top_pair.first); + top_pair = std::pair(); + } else { + break; + } + } + + // If there is zero non-pending-delete item, clear the queue. + if (empty()) { + clear(); + } + + return top_pair; + } + + /** + * @brief Remove the item with matching key value from the priority queue + * This will immediately remove the item and re-heapify the queue. + * + * This function is expensive, as it requires a full re-heapify of the queue. + * The time complexity is O(n log n) for the re-heapify, where n is the size of the queue. + * It is recommended to use remove_at_pop_time() instead. + * @param key + * The key of the item to be delected from the queue. + */ + void remove(T_key key) { + // If the key is in the priority queue, remove it from the heap and reheapify. + // Otherwise, do nothing. + if (content_set.find(key) != content_set.end()) { + content_set.erase(key); + delete_pending_set.erase(key); + for (int i = 0; i < heap.size(); i++) { + if (heap[i].first == key) { + heap.erase(heap.begin() + i); + break; + } + } + + // If this delete caused the queue to have zero non-pending-delete item, clear the queue. + if (empty()) { + clear(); + // Otherwise re-heapify the queue + } else { + std::make_heap(heap.begin(), heap.end(), LazyPopUniquePriorityQueueCompare()); + } + } + } + + /** + * @brief Remove the item with matching key value from the priority queue at pop time. + * Add the key to the delete pending set for tracking, + * and it will be deleted when it is popped. + * + * This function will not immediately delete the key from the + * priority queue. It will be deleted when it is popped. Thus do not + * expect a size reduction in the priority queue immediately. + * @param key + * The key of the item to be delected from the queue at pop time. + */ + void remove_at_pop_time(T_key key) { + // If the key is in the list, start tracking it in the delete pending list. + // Otherwise, do nothing. + if (content_set.find(key) != content_set.end()) { + delete_pending_set.insert(key); + + // If this marks the last non-pending-delete item as to-be-deleted, clear the queue + if (empty()) { + clear(); + } + } + } + + /** + * @brief Check if the priority queue is empty, i.e. there is zero non-pending-delete item. + * + * @return True if the priority queue is empty, false otherwise. + */ + bool empty() { + return size() == 0; + } + + /** + * @brief Clears the priority queue and the tracking sets. + * + * @return None + */ + void clear() { + heap.clear(); + content_set.clear(); + delete_pending_set.clear(); + } + + /** + * @brief Get the number of non-pending-delete items in the priority queue. + * + * @return The number of non-pending-delete items in the priority queue. + */ + size_t size() { + return heap.size() - delete_pending_set.size(); + } + + /** + * @brief Check if the item referred to the key is in the priority queue. + * + * @param key + * The key of the item. + * @return True if the key is in the priority queue, false otherwise. + */ + bool contains(T_key key) { + return content_set.find(key) != content_set.end(); + } +}; 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 a19aa57c938..2af379bd870 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 1.71 vpr 62.29 MiB -1 -1 0.45 18372 3 0.09 -1 -1 33140 -1 -1 71 99 1 0 success v8.0.0-11920-g63becbef4-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-12-04T15:29:41 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63780 99 130 353 483 1 222 301 13 13 169 clb auto 22.7 MiB 0.06 730 30541 5185 13290 12066 62.3 MiB 0.05 0.00 28 1583 11 3.33e+06 2.25e+06 384474. 2275.00 0.18 - k4_N10_memSize16384_memData64.xml diffeq1.v common 3.90 vpr 66.30 MiB -1 -1 0.72 23492 23 0.30 -1 -1 34028 -1 -1 77 162 0 5 success v8.0.0-11920-g63becbef4-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-12-04T15:29:41 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 67888 162 96 1200 1141 1 675 340 13 13 169 clb auto 25.9 MiB 0.18 5120 92848 24971 61178 6699 66.3 MiB 0.19 0.00 52 9637 13 3.33e+06 2.76e+06 671819. 3975.26 1.14 - k4_N10_memSize16384_memData64.xml single_wire.v common 2.10 vpr 59.81 MiB -1 -1 0.16 16372 1 0.17 -1 -1 29680 -1 -1 0 1 0 0 success v8.0.0-11920-g63becbef4-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-12-04T15:29:41 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 61244 1 1 1 2 0 1 2 3 3 9 -1 auto 21.3 MiB 0.00 2 3 0 3 0 59.8 MiB 0.01 0.00 2 1 1 30000 0 1489.46 165.495 0.01 - k4_N10_memSize16384_memData64.xml single_ff.v common 2.13 vpr 59.62 MiB -1 -1 0.15 16244 1 0.17 -1 -1 29552 -1 -1 1 2 0 0 success v8.0.0-11920-g63becbef4-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-12-04T15:29:41 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 61048 2 1 3 4 1 3 4 3 3 9 -1 auto 21.2 MiB 0.00 6 9 6 0 3 59.6 MiB 0.01 0.00 16 5 1 30000 30000 2550.78 283.420 0.01 +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 initial_placed_wirelength_est 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 1.20 vpr 63.47 MiB -1 -1 0.21 18728 3 0.06 -1 -1 32696 -1 -1 72 99 1 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 64996 99 130 353 483 1 220 302 13 13 169 clb auto 23.7 MiB 0.03 1748 641 31674 5814 13912 11948 63.5 MiB 0.03 0.00 36 1209 9 3.33e+06 2.28e+06 481319. 2848.04 0.18 +k4_N10_memSize16384_memData64.xml diffeq1.v common 2.73 vpr 66.43 MiB -1 -1 0.30 23332 23 0.24 -1 -1 33444 -1 -1 78 162 0 5 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 68020 162 96 1200 1141 1 690 341 14 14 196 clb auto 26.8 MiB 0.11 8696 5304 81261 22686 53433 5142 66.4 MiB 0.09 0.00 46 10726 18 4.32e+06 2.79e+06 735717. 3753.66 1.03 +k4_N10_memSize16384_memData64.xml single_wire.v common 0.51 vpr 61.51 MiB -1 -1 0.06 17188 1 0.02 -1 -1 29568 -1 -1 0 1 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 62988 1 1 1 2 0 1 2 3 3 9 -1 auto 22.9 MiB 0.00 2 2 3 0 3 0 61.5 MiB 0.00 0.00 2 1 1 30000 0 1489.46 165.495 0.00 +k4_N10_memSize16384_memData64.xml single_ff.v common 0.51 vpr 61.52 MiB -1 -1 0.06 17188 1 0.02 -1 -1 29584 -1 -1 1 2 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 63000 2 1 3 4 1 3 4 3 3 9 -1 auto 22.9 MiB 0.00 6 6 9 6 0 3 61.5 MiB 0.00 0.00 16 5 1 30000 30000 2550.78 283.420 0.00 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_basic/basic_timing/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_basic/basic_timing/config/golden_results.txt index 751bc75b90b..ca1a4d01acd 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_basic/basic_timing/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_basic/basic_timing/config/golden_results.txt @@ -1,9 +1,9 @@ - arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - k6_N10_mem32K_40nm.xml ch_intrinsics.v common 3.47 vpr 63.16 MiB -1 -1 0.44 18236 3 0.17 -1 -1 33188 -1 -1 71 99 1 0 success v8.0.0-11920-g63becbef4-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-12-04T15:29:41 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64672 99 130 344 474 1 225 301 13 13 169 clb auto 23.3 MiB 0.09 736 75901 22924 36629 16348 63.2 MiB 0.26 0.00 2.16096 -125.507 -2.16096 2.16096 0.16 0.00128139 0.00121469 0.100824 0.095478 -1 -1 -1 -1 32 1361 16 6.63067e+06 4.37447e+06 323148. 1912.12 0.39 0.254103 0.235005 11612 59521 -1 1272 10 497 712 34049 10041 1.99692 1.99692 -142.118 -1.99692 -0.13959 -0.0561481 396943. 2348.77 0.01 0.05 0.06 -1 -1 0.01 0.0312641 0.0288189 - k6_N10_mem32K_40nm.xml ch_intrinsics.v common_--reorder_rr_graph_nodes_algorithm_random_shuffle 3.44 vpr 63.16 MiB -1 -1 0.50 18152 3 0.14 -1 -1 33088 -1 -1 71 99 1 0 success v8.0.0-11920-g63becbef4-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-12-04T15:29:41 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64676 99 130 344 474 1 225 301 13 13 169 clb auto 23.2 MiB 0.11 736 75901 22924 36629 16348 63.2 MiB 0.26 0.00 2.16096 -125.507 -2.16096 2.16096 0.16 0.00128481 0.00121739 0.100806 0.0954483 -1 -1 -1 -1 32 1361 16 6.63067e+06 4.37447e+06 323148. 1912.12 0.39 0.254201 0.235091 11612 59521 -1 1272 10 497 712 34049 10041 1.99692 1.99692 -142.118 -1.99692 -0.13959 -0.0561481 396943. 2348.77 0.01 0.05 0.06 -1 -1 0.01 0.0311227 0.0286984 - k6_N10_mem32K_40nm.xml diffeq1.v common 9.49 vpr 67.11 MiB -1 -1 0.77 23280 15 0.36 -1 -1 34140 -1 -1 61 162 0 5 success v8.0.0-11920-g63becbef4-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-12-04T15:29:41 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 68724 162 96 1009 950 1 665 324 16 16 256 mult_36 auto 27.7 MiB 0.29 5596 100404 30167 62963 7274 67.1 MiB 0.72 0.01 21.2727 -1572.97 -21.2727 21.2727 0.25 0.00332766 0.00312916 0.315543 0.296132 -1 -1 -1 -1 40 11119 33 1.21132e+07 5.26753e+06 612675. 2393.26 4.42 1.40293 1.28823 19892 118481 -1 8936 23 3487 7703 996102 285541 21.8294 21.8294 -1657.3 -21.8294 0 0 771607. 3014.09 0.03 0.36 0.10 -1 -1 0.03 0.165646 0.152968 - k6_N10_mem32K_40nm.xml diffeq1.v common_--reorder_rr_graph_nodes_algorithm_random_shuffle 9.36 vpr 66.73 MiB -1 -1 0.76 23068 15 0.37 -1 -1 34060 -1 -1 61 162 0 5 success v8.0.0-11920-g63becbef4-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-12-04T15:29:41 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 68332 162 96 1009 950 1 665 324 16 16 256 mult_36 auto 27.4 MiB 0.27 5596 100404 30167 62963 7274 66.7 MiB 0.73 0.01 21.2727 -1572.97 -21.2727 21.2727 0.25 0.00332438 0.00312633 0.31865 0.29876 -1 -1 -1 -1 40 11119 33 1.21132e+07 5.26753e+06 612675. 2393.26 4.32 1.38842 1.27429 19892 118481 -1 8936 23 3487 7703 996102 285541 21.8294 21.8294 -1657.3 -21.8294 0 0 771607. 3014.09 0.03 0.36 0.10 -1 -1 0.03 0.165924 0.153299 - k6_N10_mem32K_40nm.xml single_wire.v common 2.19 vpr 61.04 MiB -1 -1 0.10 16040 1 0.17 -1 -1 29628 -1 -1 0 1 0 0 success v8.0.0-11920-g63becbef4-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-12-04T15:29:41 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 62508 1 1 1 2 0 1 2 3 3 9 -1 auto 22.4 MiB 0.03 2 3 0 3 0 61.0 MiB 0.00 0.00 0.18684 -0.18684 -0.18684 nan 0.00 1.0106e-05 6.693e-06 6.7577e-05 4.7955e-05 -1 -1 -1 -1 2 1 1 53894 0 1165.58 129.509 0.00 0.00184576 0.00171316 254 297 -1 1 1 1 1 15 7 0.211201 nan -0.211201 -0.211201 0 0 1165.58 129.509 0.00 0.00 0.00 -1 -1 0.00 0.00130358 0.00127692 - k6_N10_mem32K_40nm.xml single_wire.v common_--reorder_rr_graph_nodes_algorithm_random_shuffle 2.14 vpr 61.03 MiB -1 -1 0.18 16180 1 0.17 -1 -1 29612 -1 -1 0 1 0 0 success v8.0.0-11920-g63becbef4-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-12-04T15:29:41 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 62496 1 1 1 2 0 1 2 3 3 9 -1 auto 22.5 MiB 0.01 2 3 0 3 0 61.0 MiB 0.00 0.00 0.18684 -0.18684 -0.18684 nan 0.00 3.4991e-05 2.3839e-05 0.000154694 0.000110075 -1 -1 -1 -1 2 1 1 53894 0 1165.58 129.509 0.01 0.00205152 0.00184775 254 297 -1 1 1 1 1 15 7 0.211201 nan -0.211201 -0.211201 0 0 1165.58 129.509 0.00 0.00 0.00 -1 -1 0.00 0.00106138 0.00103434 - k6_N10_mem32K_40nm.xml single_ff.v common 2.12 vpr 60.94 MiB -1 -1 0.17 16352 1 0.17 -1 -1 29692 -1 -1 1 2 0 0 success v8.0.0-11920-g63becbef4-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-12-04T15:29:41 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 62400 2 1 3 4 1 3 4 3 3 9 -1 auto 22.4 MiB 0.01 6 9 3 5 1 60.9 MiB 0.00 0.00 0.55247 -0.90831 -0.55247 0.55247 0.00 1.5239e-05 1.148e-05 9.224e-05 7.1486e-05 -1 -1 -1 -1 2 2 2 53894 53894 1165.58 129.509 0.00 0.00131631 0.00123081 254 297 -1 2 2 3 3 56 20 0.577715 0.577715 -0.9588 -0.577715 0 0 1165.58 129.509 0.00 0.00 0.00 -1 -1 0.00 0.0011347 0.00109647 - k6_N10_mem32K_40nm.xml single_ff.v common_--reorder_rr_graph_nodes_algorithm_random_shuffle 2.11 vpr 61.02 MiB -1 -1 0.17 16384 1 0.17 -1 -1 29576 -1 -1 1 2 0 0 success v8.0.0-11920-g63becbef4-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-12-04T15:29:41 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 62488 2 1 3 4 1 3 4 3 3 9 -1 auto 22.5 MiB 0.00 6 9 3 5 1 61.0 MiB 0.00 0.00 0.55247 -0.90831 -0.55247 0.55247 0.00 1.54e-05 1.1599e-05 9.8314e-05 7.6493e-05 -1 -1 -1 -1 2 2 2 53894 53894 1165.58 129.509 0.00 0.001247 0.00116724 254 297 -1 2 2 3 3 56 20 0.577715 0.577715 -0.9588 -0.577715 0 0 1165.58 129.509 0.00 0.00 0.00 -1 -1 0.00 0.00104656 0.00101086 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +k6_N10_mem32K_40nm.xml ch_intrinsics.v common 1.47 vpr 65.36 MiB -1 -1 0.22 18440 3 0.06 -1 -1 32736 -1 -1 72 99 1 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66928 99 130 344 474 1 224 302 13 13 169 clb auto 25.8 MiB 0.04 1746 762 68106 19514 34631 13961 65.4 MiB 0.11 0.00 2.21168 1.87164 -122.901 -1.87164 1.87164 0.11 0.00056191 0.000527319 0.0403153 0.0378126 -1 -1 -1 -1 32 1396 14 6.63067e+06 4.42837e+06 323148. 1912.12 0.20 0.105519 0.0972534 11612 59521 -1 1378 10 517 775 49020 15288 2.04417 2.04417 -145.25 -2.04417 -0.103145 -0.0426347 396943. 2348.77 0.01 0.02 0.03 -1 -1 0.01 0.0158349 0.0147659 +k6_N10_mem32K_40nm.xml ch_intrinsics.v common_--reorder_rr_graph_nodes_algorithm_random_shuffle 1.47 vpr 64.98 MiB -1 -1 0.21 18440 3 0.06 -1 -1 32732 -1 -1 72 99 1 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66544 99 130 344 474 1 224 302 13 13 169 clb auto 25.6 MiB 0.04 1746 762 68106 19514 34631 13961 65.0 MiB 0.11 0.00 2.21168 1.87164 -122.901 -1.87164 1.87164 0.10 0.00055224 0.000517397 0.0404048 0.0379025 -1 -1 -1 -1 32 1396 14 6.63067e+06 4.42837e+06 323148. 1912.12 0.20 0.106014 0.0977643 11612 59521 -1 1378 10 517 775 49020 15288 2.04417 2.04417 -145.25 -2.04417 -0.103145 -0.0426347 396943. 2348.77 0.01 0.02 0.03 -1 -1 0.01 0.0156154 0.0145562 +k6_N10_mem32K_40nm.xml diffeq1.v common 4.54 vpr 68.83 MiB -1 -1 0.31 23428 15 0.28 -1 -1 33448 -1 -1 61 162 0 5 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 70480 162 96 1009 950 1 667 324 16 16 256 mult_36 auto 29.1 MiB 0.15 9690 5422 80388 23076 51132 6180 68.8 MiB 0.31 0.01 24.8942 21.9154 -1692.2 -21.9154 21.9154 0.17 0.00158429 0.00147162 0.124815 0.116405 -1 -1 -1 -1 40 11149 48 1.21132e+07 5.26753e+06 612675. 2393.26 2.08 0.543747 0.50239 19892 118481 -1 8842 23 4046 9257 1093658 327616 22.4259 22.4259 -1741.35 -22.4259 0 0 771607. 3014.09 0.02 0.22 0.06 -1 -1 0.02 0.0887775 0.0834355 +k6_N10_mem32K_40nm.xml diffeq1.v common_--reorder_rr_graph_nodes_algorithm_random_shuffle 4.58 vpr 68.39 MiB -1 -1 0.32 23432 15 0.29 -1 -1 33816 -1 -1 61 162 0 5 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 70028 162 96 1009 950 1 667 324 16 16 256 mult_36 auto 29.0 MiB 0.15 9690 5422 80388 23076 51132 6180 68.4 MiB 0.31 0.01 24.8942 21.9154 -1692.2 -21.9154 21.9154 0.17 0.00159526 0.00148652 0.124933 0.11659 -1 -1 -1 -1 40 11149 48 1.21132e+07 5.26753e+06 612675. 2393.26 2.09 0.544451 0.503424 19892 118481 -1 8842 23 4046 9257 1093658 327616 22.4259 22.4259 -1741.35 -22.4259 0 0 771607. 3014.09 0.02 0.22 0.06 -1 -1 0.02 0.0856913 0.0804183 +k6_N10_mem32K_40nm.xml single_wire.v common 0.56 vpr 63.12 MiB -1 -1 0.07 17288 1 0.02 -1 -1 29568 -1 -1 0 1 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 64636 1 1 1 2 0 1 2 3 3 9 -1 auto 24.5 MiB 0.00 2 2 3 0 3 0 63.1 MiB 0.00 0.00 0.18684 0.18684 -0.18684 -0.18684 nan 0.00 1.4484e-05 8.56e-06 8.9672e-05 6.0789e-05 -1 -1 -1 -1 2 1 1 53894 0 1165.58 129.509 0.00 0.000934459 0.000863394 254 297 -1 1 1 1 1 15 7 0.211201 nan -0.211201 -0.211201 0 0 1165.58 129.509 0.00 0.00 0.00 -1 -1 0.00 0.000878643 0.000849111 +k6_N10_mem32K_40nm.xml single_wire.v common_--reorder_rr_graph_nodes_algorithm_random_shuffle 0.51 vpr 62.75 MiB -1 -1 0.07 17288 1 0.02 -1 -1 29568 -1 -1 0 1 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 64252 1 1 1 2 0 1 2 3 3 9 -1 auto 24.5 MiB 0.00 2 2 3 0 3 0 62.7 MiB 0.00 0.00 0.18684 0.18684 -0.18684 -0.18684 nan 0.00 6.879e-06 3.791e-06 5.5775e-05 3.7475e-05 -1 -1 -1 -1 2 1 1 53894 0 1165.58 129.509 0.00 0.00087896 0.000824065 254 297 -1 1 1 1 1 15 7 0.211201 nan -0.211201 -0.211201 0 0 1165.58 129.509 0.00 0.00 0.00 -1 -1 0.00 0.00081755 0.000787937 +k6_N10_mem32K_40nm.xml single_ff.v common 0.51 vpr 62.75 MiB -1 -1 0.06 17284 1 0.02 -1 -1 29580 -1 -1 1 2 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 64256 2 1 3 4 1 3 4 3 3 9 -1 auto 24.5 MiB 0.00 6 6 9 3 5 1 62.8 MiB 0.00 0.00 0.55247 0.55247 -0.90831 -0.55247 0.55247 0.00 9.134e-06 5.954e-06 7.5691e-05 5.6953e-05 -1 -1 -1 -1 2 2 2 53894 53894 1165.58 129.509 0.00 0.000934593 0.000872745 254 297 -1 2 2 3 3 56 20 0.577715 0.577715 -0.9588 -0.577715 0 0 1165.58 129.509 0.00 0.00 0.00 -1 -1 0.00 0.000868574 0.000830121 +k6_N10_mem32K_40nm.xml single_ff.v common_--reorder_rr_graph_nodes_algorithm_random_shuffle 0.52 vpr 62.72 MiB -1 -1 0.06 16904 1 0.02 -1 -1 29584 -1 -1 1 2 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 64224 2 1 3 4 1 3 4 3 3 9 -1 auto 24.1 MiB 0.00 6 6 9 3 5 1 62.7 MiB 0.00 0.00 0.55247 0.55247 -0.90831 -0.55247 0.55247 0.00 8.915e-06 5.818e-06 7.4453e-05 5.5619e-05 -1 -1 -1 -1 2 2 2 53894 53894 1165.58 129.509 0.00 0.000952687 0.000889176 254 297 -1 2 2 3 3 56 20 0.577715 0.577715 -0.9588 -0.577715 0 0 1165.58 129.509 0.00 0.00 0.00 -1 -1 0.00 0.000926898 0.000890064 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_basic/basic_timing_no_sdc/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_basic/basic_timing_no_sdc/config/golden_results.txt index e5e577a6aa0..614dc34633a 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_basic/basic_timing_no_sdc/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_basic/basic_timing_no_sdc/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 total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - k6_N10_mem32K_40nm.xml mkPktMerge.v common 14.27 vpr 75.54 MiB -1 -1 1.67 25360 2 0.13 -1 -1 33796 -1 -1 43 311 15 0 success v8.0.0-11920-g63becbef4-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-12-04T15:29:41 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 77356 311 156 972 1128 1 953 525 28 28 784 memory auto 28.9 MiB 0.44 8505 220693 82593 126911 11189 69.5 MiB 1.24 0.02 3.82651 -4329.36 -3.82651 3.82651 0.84 0.00554225 0.00490893 0.598549 0.528234 -1 -1 -1 -1 40 13414 12 4.25198e+07 1.05374e+07 2.03169e+06 2591.44 6.02 1.94301 1.71815 62360 400487 -1 12485 12 2406 2992 760238 228941 4.26893 4.26893 -4812.21 -4.26893 -13.8425 -0.321515 2.55406e+06 3257.73 0.09 0.29 0.34 -1 -1 0.09 0.16964 0.153486 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +k6_N10_mem32K_40nm.xml mkPktMerge.v common 6.31 vpr 70.39 MiB -1 -1 0.75 25736 2 0.09 -1 -1 33528 -1 -1 43 311 15 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 72080 311 156 972 1128 1 953 525 28 28 784 memory auto 31.2 MiB 0.27 18876 8716 214342 80322 124048 9972 70.4 MiB 0.61 0.01 4.91229 4.39077 -4239.94 -4.39077 4.39077 0.60 0.00262128 0.0023325 0.283495 0.251921 -1 -1 -1 -1 40 13591 16 4.25198e+07 1.05374e+07 2.03169e+06 2591.44 1.96 0.889033 0.801036 62360 400487 -1 12638 13 2518 2949 727753 230227 4.48005 4.48005 -4599.19 -4.48005 -24.1998 -0.322548 2.55406e+06 3257.73 0.08 0.18 0.22 -1 -1 0.08 0.10009 0.0930957 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_basic/hdl_include_yosys/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_basic/hdl_include_yosys/config/golden_results.txt index cbe871a6d70..6c901e19f85 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_basic/hdl_include_yosys/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_basic/hdl_include_yosys/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 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_modified.v common 2.71 vpr 61.64 MiB -1 -1 0.45 18444 3 0.09 -1 -1 32856 -1 -1 71 99 1 0 success v8.0.0-11920-g63becbef4-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-12-04T15:29:41 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63120 99 130 353 483 1 222 301 13 13 169 clb auto 21.8 MiB 0.06 723 26509 3069 10019 13421 61.6 MiB 0.04 0.00 28 1598 8 3.33e+06 2.25e+06 384474. 2275.00 0.18 +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 initial_placed_wirelength_est 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_modified.v common 1.11 vpr 62.57 MiB -1 -1 0.21 18340 3 0.06 -1 -1 32272 -1 -1 72 99 1 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 64072 99 130 353 483 1 221 302 13 13 169 clb auto 22.8 MiB 0.03 1823 708 26614 3324 9855 13435 62.6 MiB 0.02 0.00 28 1654 13 3.33e+06 2.28e+06 384474. 2275.00 0.12 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_basic_odin/basic_no_timing/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_basic_odin/basic_no_timing/config/golden_results.txt index 68c5f54f784..513370f5331 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_basic_odin/basic_no_timing/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_basic_odin/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 3.06 vpr 62.63 MiB 0.05 9228 -1 -1 4 0.26 -1 -1 34628 -1 -1 78 99 1 0 success v8.0.0-11852-g026644d7f-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-11-21T16:04:00 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/temp/temp2/vtr-verilog-to-routing 64132 99 130 378 508 1 260 308 14 14 196 clb auto 23.1 MiB 0.07 836 35634 7872 13338 14424 62.6 MiB 0.06 0.00 30 1863 18 4.32e+06 2.46e+06 504535. 2574.16 1.49 - k4_N10_memSize16384_memData64.xml diffeq1.v common 3.71 vpr 66.76 MiB 0.03 9312 -1 -1 23 0.28 -1 -1 34812 -1 -1 78 162 0 5 success v8.0.0-11852-g026644d7f-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-11-21T16:04:00 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/temp/temp2/vtr-verilog-to-routing 68360 162 96 1214 1147 1 691 341 14 14 196 clb auto 26.3 MiB 0.20 5391 114581 32074 75067 7440 66.8 MiB 0.23 0.00 50 10696 14 4.32e+06 2.79e+06 792225. 4041.96 1.36 - k4_N10_memSize16384_memData64.xml single_wire.v common 0.50 vpr 60.26 MiB 0.03 6196 -1 -1 1 0.02 -1 -1 29884 -1 -1 0 1 0 0 success v8.0.0-11852-g026644d7f-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-11-21T16:04:00 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/temp/temp2/vtr-verilog-to-routing 61708 1 1 1 2 0 1 2 3 3 9 -1 auto 21.5 MiB 0.00 2 3 0 3 0 60.3 MiB 0.00 0.00 2 1 1 30000 0 1489.46 165.495 0.00 - k4_N10_memSize16384_memData64.xml single_ff.v common 0.50 vpr 60.32 MiB 0.01 6248 -1 -1 1 0.02 -1 -1 29888 -1 -1 1 2 0 0 success v8.0.0-11852-g026644d7f-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-11-21T16:04:00 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/temp/temp2/vtr-verilog-to-routing 61772 2 1 3 4 1 3 4 3 3 9 -1 auto 21.6 MiB 0.00 6 9 6 0 3 60.3 MiB 0.00 0.00 16 5 1 30000 30000 2550.78 283.420 0.01 +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 initial_placed_wirelength_est 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 3.37 odin 98.62 MiB 2.09 100992 -1 -1 4 0.20 -1 -1 33712 -1 -1 77 99 1 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65108 99 130 378 508 1 264 307 13 13 169 clb auto 23.7 MiB 0.03 2217 834 80002 17611 37329 25062 63.6 MiB 0.06 0.00 38 1591 8 3.33e+06 2.43e+06 504671. 2986.22 0.18 +k4_N10_memSize16384_memData64.xml diffeq1.v common 4.23 odin 85.88 MiB 1.73 87936 -1 -1 23 0.22 -1 -1 34272 -1 -1 78 162 0 5 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 68008 162 96 1214 1147 1 683 341 14 14 196 clb auto 26.8 MiB 0.11 8470 5094 83641 22304 55208 6129 66.4 MiB 0.09 0.00 46 10813 38 4.32e+06 2.79e+06 735717. 3753.66 1.06 +k4_N10_memSize16384_memData64.xml single_wire.v common 1.66 vpr 61.51 MiB 1.16 61056 -1 -1 1 0.02 -1 -1 29296 -1 -1 0 1 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 62984 1 1 1 2 0 1 2 3 3 9 -1 auto 22.9 MiB 0.00 2 2 3 0 3 0 61.5 MiB 0.00 0.00 2 1 1 30000 0 1489.46 165.495 0.00 +k4_N10_memSize16384_memData64.xml single_ff.v common 1.59 vpr 61.52 MiB 1.09 61440 -1 -1 1 0.02 -1 -1 29964 -1 -1 1 2 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 62996 2 1 3 4 1 3 4 3 3 9 -1 auto 22.9 MiB 0.00 6 6 9 6 0 3 61.5 MiB 0.00 0.00 16 5 1 30000 30000 2550.78 283.420 0.00 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_basic_odin/basic_timing/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_basic_odin/basic_timing/config/golden_results.txt index ef84b66a484..ea885b126e3 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_basic_odin/basic_timing/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_basic_odin/basic_timing/config/golden_results.txt @@ -1,9 +1,9 @@ - arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - k6_N10_mem32K_40nm.xml ch_intrinsics.v common 4.50 vpr 64.15 MiB 0.07 9400 -1 -1 3 0.27 -1 -1 34560 -1 -1 75 99 1 0 success v8.0.0-11852-g026644d7f-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-11-21T16:04:00 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/temp/temp2/vtr-verilog-to-routing 65688 99 130 363 493 1 255 305 13 13 169 clb auto 24.4 MiB 0.09 908 74177 24418 37403 12356 64.1 MiB 0.26 0.00 2.24932 -227.778 -2.24932 2.24932 0.32 0.00128796 0.00121332 0.096703 0.0915143 -1 -1 -1 -1 32 1516 16 6.63067e+06 4.59005e+06 323148. 1912.12 2.05 0.536952 0.490784 11612 59521 -1 1275 27 730 1142 95340 32482 2.40779 2.40779 -232.565 -2.40779 0 0 396943. 2348.77 0.11 0.11 0.05 -1 -1 0.11 0.067572 0.0617159 - k6_N10_mem32K_40nm.xml ch_intrinsics.v common_--reorder_rr_graph_nodes_algorithm_random_shuffle 4.47 vpr 64.18 MiB 0.07 9504 -1 -1 3 0.27 -1 -1 34508 -1 -1 75 99 1 0 success v8.0.0-11852-g026644d7f-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-11-21T16:04:00 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/temp/temp2/vtr-verilog-to-routing 65716 99 130 363 493 1 255 305 13 13 169 clb auto 24.4 MiB 0.09 908 74177 24418 37403 12356 64.2 MiB 0.25 0.00 2.24932 -227.778 -2.24932 2.24932 0.33 0.00129519 0.00122409 0.0975081 0.0921414 -1 -1 -1 -1 32 1516 16 6.63067e+06 4.59005e+06 323148. 1912.12 2.05 0.537515 0.491308 11612 59521 -1 1275 27 730 1142 95340 32482 2.40779 2.40779 -232.565 -2.40779 0 0 396943. 2348.77 0.10 0.10 0.06 -1 -1 0.10 0.0672906 0.0614343 - k6_N10_mem32K_40nm.xml diffeq1.v common 7.21 vpr 67.98 MiB 0.05 9412 -1 -1 15 0.36 -1 -1 34576 -1 -1 60 162 0 5 success v8.0.0-11852-g026644d7f-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-11-21T16:04:00 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/temp/temp2/vtr-verilog-to-routing 69616 162 96 999 932 1 661 323 16 16 256 mult_36 auto 27.8 MiB 0.27 5495 75599 21207 48608 5784 68.0 MiB 0.58 0.01 21.6615 -1879.46 -21.6615 21.6615 0.51 0.00360796 0.00340202 0.25554 0.240594 -1 -1 -1 -1 44 10097 29 1.21132e+07 5.21364e+06 665287. 2598.78 3.00 1.1065 1.02126 20656 131250 -1 8720 22 3466 7443 973330 268208 22.2123 22.2123 -1936.09 -22.2123 0 0 864808. 3378.16 0.21 0.36 0.12 -1 -1 0.21 0.171024 0.158501 - k6_N10_mem32K_40nm.xml diffeq1.v common_--reorder_rr_graph_nodes_algorithm_random_shuffle 7.19 vpr 68.00 MiB 0.05 9256 -1 -1 15 0.38 -1 -1 34544 -1 -1 60 162 0 5 success v8.0.0-11852-g026644d7f-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-11-21T16:04:00 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/temp/temp2/vtr-verilog-to-routing 69628 162 96 999 932 1 661 323 16 16 256 mult_36 auto 27.8 MiB 0.27 5495 75599 21207 48608 5784 68.0 MiB 0.58 0.01 21.6615 -1879.46 -21.6615 21.6615 0.51 0.00357179 0.00336822 0.255146 0.240275 -1 -1 -1 -1 44 10097 29 1.21132e+07 5.21364e+06 665287. 2598.78 3.02 1.11639 1.03133 20656 131250 -1 8720 22 3466 7443 973330 268208 22.2123 22.2123 -1936.09 -22.2123 0 0 864808. 3378.16 0.21 0.36 0.12 -1 -1 0.21 0.171551 0.159214 - k6_N10_mem32K_40nm.xml single_wire.v common 0.52 vpr 61.57 MiB 0.02 6336 -1 -1 1 0.02 -1 -1 29916 -1 -1 0 1 0 0 success v8.0.0-11852-g026644d7f-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-11-21T16:04:00 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/temp/temp2/vtr-verilog-to-routing 63052 1 1 1 2 0 1 2 3 3 9 -1 auto 23.1 MiB 0.00 2 3 0 3 0 61.6 MiB 0.00 0.00 0.18684 -0.18684 -0.18684 nan 0.00 1.0413e-05 6.444e-06 6.9938e-05 4.9915e-05 -1 -1 -1 -1 2 1 1 53894 0 1165.58 129.509 0.00 0.00113499 0.00107062 254 297 -1 1 1 1 1 19 15 0.211201 nan -0.211201 -0.211201 0 0 1165.58 129.509 0.00 0.00 0.00 -1 -1 0.00 0.00114956 0.00110637 - k6_N10_mem32K_40nm.xml single_wire.v common_--reorder_rr_graph_nodes_algorithm_random_shuffle 0.50 vpr 61.70 MiB 0.01 6288 -1 -1 1 0.02 -1 -1 29852 -1 -1 0 1 0 0 success v8.0.0-11852-g026644d7f-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-11-21T16:04:00 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/temp/temp2/vtr-verilog-to-routing 63176 1 1 1 2 0 1 2 3 3 9 -1 auto 23.1 MiB 0.00 2 3 0 3 0 61.7 MiB 0.00 0.00 0.18684 -0.18684 -0.18684 nan 0.00 1.0828e-05 6.306e-06 8.6241e-05 6.4409e-05 -1 -1 -1 -1 2 1 1 53894 0 1165.58 129.509 0.00 0.00147956 0.00135131 254 297 -1 1 1 1 1 19 15 0.211201 nan -0.211201 -0.211201 0 0 1165.58 129.509 0.00 0.00 0.00 -1 -1 0.00 0.00110491 0.00107479 - k6_N10_mem32K_40nm.xml single_ff.v common 0.51 vpr 61.60 MiB 0.01 6340 -1 -1 1 0.02 -1 -1 29792 -1 -1 1 2 0 0 success v8.0.0-11852-g026644d7f-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-11-21T16:04:00 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/temp/temp2/vtr-verilog-to-routing 63080 2 1 3 4 1 3 4 3 3 9 -1 auto 23.2 MiB 0.00 6 9 5 1 3 61.6 MiB 0.00 0.00 0.55247 -0.90831 -0.55247 0.55247 0.00 1.5674e-05 1.1879e-05 0.000102525 7.8057e-05 -1 -1 -1 -1 2 2 2 53894 53894 1165.58 129.509 0.00 0.0012801 0.00119733 254 297 -1 2 2 3 3 56 18 0.577715 0.577715 -0.9588 -0.577715 0 0 1165.58 129.509 0.00 0.00 0.00 -1 -1 0.00 0.00109578 0.00105577 - k6_N10_mem32K_40nm.xml single_ff.v common_--reorder_rr_graph_nodes_algorithm_random_shuffle 0.52 vpr 61.85 MiB 0.01 6336 -1 -1 1 0.02 -1 -1 29872 -1 -1 1 2 0 0 success v8.0.0-11852-g026644d7f-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-11-21T16:04:00 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/temp/temp2/vtr-verilog-to-routing 63336 2 1 3 4 1 3 4 3 3 9 -1 auto 23.4 MiB 0.00 6 9 5 1 3 61.9 MiB 0.00 0.00 0.55247 -0.90831 -0.55247 0.55247 0.00 1.5402e-05 1.1583e-05 0.00010302 8.1368e-05 -1 -1 -1 -1 2 2 2 53894 53894 1165.58 129.509 0.00 0.00128286 0.00120047 254 297 -1 2 2 3 3 56 18 0.577715 0.577715 -0.9588 -0.577715 0 0 1165.58 129.509 0.00 0.00 0.00 -1 -1 0.00 0.0011085 0.00106995 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +k6_N10_mem32K_40nm.xml ch_intrinsics.v common 4.09 odin 100.12 MiB 2.45 102528 -1 -1 3 0.20 -1 -1 33716 -1 -1 75 99 1 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 67068 99 130 363 493 1 253 305 13 13 169 clb auto 26.0 MiB 0.04 2273 844 74177 21541 39695 12941 65.5 MiB 0.18 0.00 2.6333 2.22949 -229.909 -2.22949 2.22949 0.11 0.00102109 0.000975646 0.0645574 0.0608928 -1 -1 -1 -1 32 1393 19 6.63067e+06 4.59005e+06 323148. 1912.12 0.23 0.134441 0.124635 11612 59521 -1 1193 22 721 1096 62496 20405 2.52707 2.52707 -230.152 -2.52707 0 0 396943. 2348.77 0.01 0.04 0.03 -1 -1 0.01 0.0262126 0.0241565 +k6_N10_mem32K_40nm.xml ch_intrinsics.v common_--reorder_rr_graph_nodes_algorithm_random_shuffle 3.69 odin 99.75 MiB 2.12 102144 -1 -1 3 0.20 -1 -1 33712 -1 -1 75 99 1 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 67028 99 130 363 493 1 253 305 13 13 169 clb auto 25.6 MiB 0.04 2273 844 74177 21541 39695 12941 65.5 MiB 0.12 0.00 2.6333 2.22949 -229.909 -2.22949 2.22949 0.10 0.000551623 0.00051622 0.043118 0.0403948 -1 -1 -1 -1 32 1393 19 6.63067e+06 4.59005e+06 323148. 1912.12 0.22 0.113077 0.104115 11612 59521 -1 1193 22 721 1096 62496 20405 2.52707 2.52707 -230.152 -2.52707 0 0 396943. 2348.77 0.01 0.04 0.03 -1 -1 0.01 0.0264785 0.0243931 +k6_N10_mem32K_40nm.xml diffeq1.v common 5.96 odin 87.00 MiB 1.89 89088 -1 -1 15 0.28 -1 -1 34196 -1 -1 62 162 0 5 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 71044 162 96 999 932 1 663 325 16 16 256 mult_36 auto 29.4 MiB 0.14 9594 5574 90802 23938 58756 8108 69.4 MiB 0.34 0.01 24.8422 21.1611 -1910.27 -21.1611 21.1611 0.17 0.00167155 0.00156543 0.146309 0.137079 -1 -1 -1 -1 40 11068 31 1.21132e+07 5.32143e+06 612675. 2393.26 1.77 0.555231 0.516342 19892 118481 -1 8993 24 3753 8101 1142271 339586 22.091 22.091 -1952.75 -22.091 0 0 771607. 3014.09 0.02 0.23 0.06 -1 -1 0.02 0.0953915 0.0898028 +k6_N10_mem32K_40nm.xml diffeq1.v common_--reorder_rr_graph_nodes_algorithm_random_shuffle 6.11 odin 87.00 MiB 2.05 89088 -1 -1 15 0.30 -1 -1 34232 -1 -1 62 162 0 5 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 71036 162 96 999 932 1 663 325 16 16 256 mult_36 auto 29.4 MiB 0.14 9594 5574 90802 23938 58756 8108 69.4 MiB 0.35 0.01 24.8422 21.1611 -1910.27 -21.1611 21.1611 0.17 0.00167453 0.00156692 0.147276 0.137984 -1 -1 -1 -1 40 11068 31 1.21132e+07 5.32143e+06 612675. 2393.26 1.73 0.548675 0.510684 19892 118481 -1 8993 24 3753 8101 1142271 339586 22.091 22.091 -1952.75 -22.091 0 0 771607. 3014.09 0.02 0.23 0.06 -1 -1 0.02 0.0940813 0.0885938 +k6_N10_mem32K_40nm.xml single_wire.v common 1.64 vpr 62.75 MiB 1.13 62208 -1 -1 1 0.02 -1 -1 29284 -1 -1 0 1 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 64252 1 1 1 2 0 1 2 3 3 9 -1 auto 24.5 MiB 0.00 2 2 3 0 3 0 62.7 MiB 0.00 0.00 0.18684 0.18684 -0.18684 -0.18684 nan 0.00 6.926e-06 3.897e-06 5.931e-05 4.0663e-05 -1 -1 -1 -1 14 13 1 53894 0 3251.56 361.284 0.00 0.000930685 0.000857938 318 537 -1 13 1 1 1 42 40 1.13321 nan -1.13321 -1.13321 0 0 4350.07 483.341 0.00 0.00 0.00 -1 -1 0.00 0.000814883 0.000785455 +k6_N10_mem32K_40nm.xml single_wire.v common_--reorder_rr_graph_nodes_algorithm_random_shuffle 1.64 vpr 63.12 MiB 1.13 62208 -1 -1 1 0.02 -1 -1 29544 -1 -1 0 1 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 64636 1 1 1 2 0 1 2 3 3 9 -1 auto 24.9 MiB 0.00 2 2 3 0 3 0 63.1 MiB 0.00 0.00 0.18684 0.18684 -0.18684 -0.18684 nan 0.00 6.671e-06 3.657e-06 5.512e-05 3.7177e-05 -1 -1 -1 -1 14 13 1 53894 0 3251.56 361.284 0.00 0.00087693 0.000816732 318 537 -1 13 1 1 1 42 40 1.13321 nan -1.13321 -1.13321 0 0 4350.07 483.341 0.00 0.00 0.00 -1 -1 0.00 0.000823421 0.000793996 +k6_N10_mem32K_40nm.xml single_ff.v common 1.65 vpr 63.12 MiB 1.14 62592 -1 -1 1 0.02 -1 -1 29584 -1 -1 1 2 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 64640 2 1 3 4 1 3 4 3 3 9 -1 auto 24.5 MiB 0.00 6 6 9 5 1 3 63.1 MiB 0.00 0.00 0.55247 0.55247 -0.90831 -0.55247 0.55247 0.00 9.509e-06 6.128e-06 7.8966e-05 5.8678e-05 -1 -1 -1 -1 2 2 2 53894 53894 1165.58 129.509 0.00 0.000960819 0.000895847 254 297 -1 2 2 3 3 56 18 0.577715 0.577715 -0.9588 -0.577715 0 0 1165.58 129.509 0.00 0.00 0.00 -1 -1 0.00 0.000868741 0.000828858 +k6_N10_mem32K_40nm.xml single_ff.v common_--reorder_rr_graph_nodes_algorithm_random_shuffle 1.76 vpr 62.75 MiB 1.24 62208 -1 -1 1 0.02 -1 -1 29596 -1 -1 1 2 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 64252 2 1 3 4 1 3 4 3 3 9 -1 auto 24.5 MiB 0.00 6 6 9 5 1 3 62.7 MiB 0.00 0.00 0.55247 0.55247 -0.90831 -0.55247 0.55247 0.00 9.481e-06 6.058e-06 7.5019e-05 5.5752e-05 -1 -1 -1 -1 2 2 2 53894 53894 1165.58 129.509 0.00 0.000976511 0.00091156 254 297 -1 2 2 3 3 56 18 0.577715 0.577715 -0.9588 -0.577715 0 0 1165.58 129.509 0.00 0.00 0.00 -1 -1 0.00 0.000882718 0.000844713 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_basic_odin/basic_timing_no_sdc/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_basic_odin/basic_timing_no_sdc/config/golden_results.txt index 919720b66b9..0969bfb6332 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_basic_odin/basic_timing_no_sdc/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_basic_odin/basic_timing_no_sdc/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 total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - k6_N10_mem32K_40nm.xml mkPktMerge.v common 18.64 vpr 68.68 MiB 0.15 16588 -1 -1 2 0.14 -1 -1 33680 -1 -1 43 311 15 0 success v8.0.0-11852-g026644d7f-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-11-21T16:04:00 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/temp/temp2/vtr-verilog-to-routing 70328 311 156 972 1128 1 953 525 28 28 784 memory auto 29.0 MiB 0.43 9306 216459 81370 124762 10327 68.7 MiB 1.23 0.02 3.96757 -4422.94 -3.96757 3.96757 1.99 0.0055271 0.00489462 0.594444 0.523451 -1 -1 -1 -1 36 14708 20 4.25198e+07 1.05374e+07 1.86960e+06 2384.70 9.73 2.38769 2.10211 60012 360096 -1 13625 12 2932 3661 921536 275737 4.35536 4.35536 -4857.74 -4.35536 -16.7192 -0.318417 2.30301e+06 2937.52 0.63 0.34 0.31 -1 -1 0.63 0.170436 0.153664 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +k6_N10_mem32K_40nm.xml mkPktMerge.v common 10.82 odin 620.14 MiB 5.17 635024 -1 -1 2 0.09 -1 -1 34820 -1 -1 43 311 15 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 71248 311 156 972 1128 1 953 525 28 28 784 memory auto 30.5 MiB 0.26 18730 9136 197406 68626 118543 10237 69.6 MiB 0.53 0.01 4.81396 3.68545 -4313.24 -3.68545 3.68545 0.58 0.00250062 0.00220291 0.243094 0.21545 -1 -1 -1 -1 40 14133 17 4.25198e+07 1.05374e+07 2.03169e+06 2591.44 1.98 0.801256 0.718483 62360 400487 -1 13372 13 2874 3403 928204 274043 3.86375 3.86375 -4754.06 -3.86375 -26.664 -0.360359 2.55406e+06 3257.73 0.08 0.19 0.21 -1 -1 0.08 0.0937982 0.0869213 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_basic_odin/hdl_include_odin/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_basic_odin/hdl_include_odin/config/golden_results.txt index f19725cfd85..68933f7a97c 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_basic_odin/hdl_include_odin/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_basic_odin/hdl_include_odin/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 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_modified.v common 2.61 vpr 62.39 MiB 0.07 9224 -1 -1 4 0.25 -1 -1 34556 -1 -1 78 99 1 0 success v8.0.0-11852-g026644d7f-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-11-21T16:04:00 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/temp/temp2/vtr-verilog-to-routing 63888 99 130 378 508 1 260 308 14 14 196 clb auto 23.3 MiB 0.07 836 35634 7872 13338 14424 62.4 MiB 0.06 0.00 30 1863 18 4.32e+06 2.46e+06 504535. 2574.16 0.99 +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 initial_placed_wirelength_est 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_modified.v common 1.46 odin 97.50 MiB 0.17 99840 -1 -1 4 0.19 -1 -1 33712 -1 -1 77 99 1 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65056 99 130 378 508 1 264 307 13 13 169 clb auto 23.7 MiB 0.03 2217 834 80002 17611 37329 25062 63.5 MiB 0.07 0.00 38 1591 8 3.33e+06 2.43e+06 504671. 2986.22 0.18 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/arithmetic_tasks/figure_8/config/config.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/arithmetic_tasks/figure_8/config/config.txt index 6bdbf89bdbe..2946d486557 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/arithmetic_tasks/figure_8/config/config.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/arithmetic_tasks/figure_8/config/config.txt @@ -128,4 +128,4 @@ qor_parse_file=qor_standard.txt # Pass requirements pass_requirements_file=pass_requirements_chain_small.txt -script_params=-lut_size 6 -routing_failure_predictor off -seed 1 +script_params=-lut_size 6 -routing_failure_predictor off -seed 2 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 99080e3a8c6..ef10cbea02c 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,211 +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 ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time num_le num_luts num_add_blocks max_add_chain_length num_sub_blocks max_sub_chain_length - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_004bits.v common 1.81 vpr 61.53 MiB -1 -1 0.14 17176 2 0.05 -1 -1 31920 -1 -1 2 9 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63004 9 5 28 33 1 17 16 17 17 289 -1 unnamed_device 22.7 MiB 0.01 102 56 22 34 0 61.5 MiB 0.00 0.00 1.25905 -11.4776 -1.25905 1.25905 0.35 8.882e-05 8.0374e-05 0.000503367 0.000460617 -1 -1 -1 -1 20 177 7 6.55708e+06 24110 394039. 1363.46 0.24 0.00338036 0.00301975 19870 87366 -1 145 5 37 42 2127 683 1.13885 1.13885 -10.6853 -1.13885 0 0 477104. 1650.88 0.02 0.01 0.07 -1 -1 0.02 0.00234608 0.00214041 13 6 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_005bits.v common 1.75 vpr 61.79 MiB -1 -1 0.15 17260 2 0.07 -1 -1 31784 -1 -1 2 11 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63268 11 6 34 40 1 20 19 17 17 289 -1 unnamed_device 23.1 MiB 0.01 68 419 92 314 13 61.8 MiB 0.01 0.00 1.13885 -12.6274 -1.13885 1.13885 0.36 0.000104018 9.4606e-05 0.00207701 0.00189506 -1 -1 -1 -1 20 166 5 6.55708e+06 24110 394039. 1363.46 0.25 0.00525114 0.0047588 19870 87366 -1 137 4 34 37 1601 538 1.01865 1.01865 -12.5587 -1.01865 0 0 477104. 1650.88 0.02 0.01 0.07 -1 -1 0.02 0.00240353 0.00219298 16 7 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_006bits.v common 1.70 vpr 61.61 MiB -1 -1 0.12 17184 3 0.05 -1 -1 31860 -1 -1 3 13 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63088 13 7 41 48 1 27 23 17 17 289 -1 unnamed_device 22.9 MiB 0.01 135 631 147 469 15 61.6 MiB 0.01 0.00 1.37725 -16.6067 -1.37725 1.37725 0.32 0.000129747 0.00011854 0.00286597 0.002624 -1 -1 -1 -1 20 273 10 6.55708e+06 36165 394039. 1363.46 0.25 0.007305 0.00653074 19870 87366 -1 227 7 76 83 3857 1249 1.25705 1.25705 -17.2319 -1.25705 0 0 477104. 1650.88 0.02 0.01 0.08 -1 -1 0.02 0.0033876 0.00303842 19 9 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_007bits.v common 1.80 vpr 61.52 MiB -1 -1 0.13 17272 3 0.04 -1 -1 31840 -1 -1 4 15 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 62992 15 8 47 55 1 35 27 17 17 289 -1 unnamed_device 23.1 MiB 0.01 246 1107 227 797 83 61.5 MiB 0.01 0.00 1.23151 -21.1845 -1.23151 1.23151 0.32 0.000140574 0.000128754 0.00439077 0.0040239 -1 -1 -1 -1 22 399 8 6.55708e+06 48220 420624. 1455.45 0.33 0.0233791 0.0196844 20158 92377 -1 374 12 138 186 9733 2657 1.23151 1.23151 -21.7797 -1.23151 0 0 500653. 1732.36 0.02 0.01 0.05 -1 -1 0.02 0.00470751 0.00408781 23 10 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_008bits.v common 1.98 vpr 61.69 MiB -1 -1 0.16 17380 3 0.05 -1 -1 32048 -1 -1 6 17 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63172 17 9 56 65 1 37 32 17 17 289 -1 unnamed_device 23.3 MiB 0.01 141 1132 207 843 82 61.7 MiB 0.01 0.00 1.73785 -23.0011 -1.73785 1.73785 0.32 0.000177397 0.000163282 0.00448382 0.00413693 -1 -1 -1 -1 26 292 10 6.55708e+06 72330 477104. 1650.88 0.34 0.0230579 0.0195262 21022 109990 -1 253 10 116 150 5905 2088 1.73785 1.73785 -22.979 -1.73785 0 0 585099. 2024.56 0.03 0.01 0.09 -1 -1 0.03 0.00488895 0.00427019 26 14 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_009bits.v common 2.00 vpr 61.60 MiB -1 -1 0.17 17588 4 0.08 -1 -1 31936 -1 -1 6 19 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63080 19 10 60 70 1 46 35 17 17 289 -1 unnamed_device 23.2 MiB 0.02 206 890 192 689 9 61.6 MiB 0.01 0.00 1.83817 -26.8738 -1.83817 1.83817 0.32 0.00018623 0.000172113 0.00345229 0.00318807 -1 -1 -1 -1 24 503 11 6.55708e+06 72330 448715. 1552.65 0.34 0.023586 0.0197806 20734 103517 -1 456 14 189 265 14696 4171 1.79897 1.79897 -29.1306 -1.79897 0 0 554710. 1919.41 0.02 0.02 0.09 -1 -1 0.02 0.00625358 0.00539304 29 13 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_010bits.v common 1.85 vpr 61.68 MiB -1 -1 0.11 17620 4 0.06 -1 -1 31780 -1 -1 7 21 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63156 21 11 69 80 1 45 39 17 17 289 -1 unnamed_device 23.2 MiB 0.02 234 1425 276 1119 30 61.7 MiB 0.01 0.00 2.00308 -29.8235 -2.00308 2.00308 0.32 0.00021215 0.000195206 0.00517815 0.0047725 -1 -1 -1 -1 20 484 10 6.55708e+06 84385 394039. 1363.46 0.26 0.011519 0.0102836 19870 87366 -1 431 8 137 199 8705 2803 1.8657 1.8657 -30.3926 -1.8657 0 0 477104. 1650.88 0.02 0.01 0.08 -1 -1 0.02 0.00515178 0.00455678 33 17 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_011bits.v common 2.06 vpr 61.65 MiB -1 -1 0.13 17464 5 0.06 -1 -1 32020 -1 -1 7 23 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63128 23 12 76 88 1 52 42 17 17 289 -1 unnamed_device 23.1 MiB 0.02 299 2130 460 1580 90 61.6 MiB 0.02 0.00 2.1851 -34.7155 -2.1851 2.1851 0.31 0.000225836 0.000208793 0.00737873 0.0068159 -1 -1 -1 -1 30 557 11 6.55708e+06 84385 526063. 1820.29 0.39 0.0385933 0.032892 21886 126133 -1 477 9 132 177 10121 2634 2.0649 2.0649 -34.6717 -2.0649 0 0 666494. 2306.21 0.03 0.01 0.10 -1 -1 0.03 0.0056861 0.00499978 36 19 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_012bits.v common 1.97 vpr 61.68 MiB -1 -1 0.15 17448 5 0.06 -1 -1 32056 -1 -1 8 25 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63164 25 13 83 96 1 61 46 17 17 289 -1 unnamed_device 23.1 MiB 0.03 382 1604 307 1258 39 61.7 MiB 0.02 0.00 2.1433 -40.194 -2.1433 2.1433 0.32 0.0002374 0.000218617 0.00535399 0.0049428 -1 -1 -1 -1 20 750 24 6.55708e+06 96440 394039. 1363.46 0.28 0.0174527 0.0152737 19870 87366 -1 675 11 204 284 17644 4645 2.0231 2.0231 -41.4897 -2.0231 0 0 477104. 1650.88 0.02 0.02 0.08 -1 -1 0.02 0.00708701 0.00625295 39 21 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_013bits.v common 1.98 vpr 61.82 MiB -1 -1 0.12 17548 5 0.06 -1 -1 31808 -1 -1 10 27 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63308 27 14 91 105 1 72 51 17 17 289 -1 unnamed_device 23.2 MiB 0.05 487 1931 345 1368 218 61.8 MiB 0.02 0.00 2.31696 -45.6334 -2.31696 2.31696 0.32 0.000303653 0.000273882 0.00640562 0.00591371 -1 -1 -1 -1 26 873 12 6.55708e+06 120550 477104. 1650.88 0.36 0.0365231 0.0313217 21022 109990 -1 816 8 208 332 18433 4780 1.9839 1.9839 -46.0894 -1.9839 0 0 585099. 2024.56 0.03 0.02 0.09 -1 -1 0.03 0.00631768 0.005585 44 24 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_014bits.v common 1.92 vpr 61.82 MiB -1 -1 0.15 17672 6 0.07 -1 -1 32032 -1 -1 10 29 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63308 29 15 95 110 1 74 54 17 17 289 -1 unnamed_device 23.2 MiB 0.03 326 1992 324 1638 30 61.8 MiB 0.02 0.00 2.92362 -47.3926 -2.92362 2.92362 0.32 0.000283404 0.000262906 0.00638465 0.00592117 -1 -1 -1 -1 26 681 9 6.55708e+06 120550 477104. 1650.88 0.29 0.0229025 0.019846 21022 109990 -1 645 14 253 412 18759 5604 2.76422 2.76422 -48.0089 -2.76422 0 0 585099. 2024.56 0.03 0.02 0.09 -1 -1 0.03 0.00906397 0.00783781 46 23 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_015bits.v common 2.02 vpr 61.88 MiB -1 -1 0.17 17476 6 0.07 -1 -1 31980 -1 -1 10 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63364 31 16 104 120 1 74 57 17 17 289 -1 unnamed_device 23.2 MiB 0.03 413 2455 496 1792 167 61.9 MiB 0.02 0.00 2.5437 -52.0473 -2.5437 2.5437 0.32 0.000314967 0.000292737 0.00803663 0.00746438 -1 -1 -1 -1 28 797 9 6.55708e+06 120550 500653. 1732.36 0.37 0.0394837 0.0339214 21310 115450 -1 706 7 169 223 12972 3468 2.5437 2.5437 -53.9588 -2.5437 0 0 612192. 2118.31 0.03 0.02 0.10 -1 -1 0.03 0.0066224 0.00586415 50 27 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_016bits.v common 1.89 vpr 61.88 MiB -1 -1 0.17 17512 7 0.07 -1 -1 32112 -1 -1 10 33 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63364 33 17 112 129 1 80 60 17 17 289 -1 unnamed_device 23.1 MiB 0.03 455 2400 450 1872 78 61.9 MiB 0.01 0.00 2.77173 -56.4743 -2.77173 2.77173 0.28 0.000151138 0.000138573 0.00382632 0.0035109 -1 -1 -1 -1 22 966 13 6.55708e+06 120550 420624. 1455.45 0.24 0.0223788 0.0192259 20158 92377 -1 820 14 243 337 17062 5047 2.6619 2.6619 -58.7642 -2.6619 0 0 500653. 1732.36 0.02 0.02 0.08 -1 -1 0.02 0.010673 0.0092982 54 30 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_018bits.v common 2.09 vpr 61.96 MiB -1 -1 0.17 17540 7 0.06 -1 -1 31948 -1 -1 13 37 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63444 37 19 127 146 1 95 69 17 17 289 -1 unnamed_device 23.1 MiB 0.04 580 5286 1128 3575 583 62.0 MiB 0.04 0.00 2.83296 -65.8925 -2.83296 2.83296 0.32 0.000370259 0.000344095 0.0149742 0.013844 -1 -1 -1 -1 28 987 8 6.55708e+06 156715 500653. 1732.36 0.38 0.0517571 0.0451646 21310 115450 -1 947 6 224 327 15796 4347 2.6201 2.6201 -68.3998 -2.6201 0 0 612192. 2118.31 0.03 0.02 0.10 -1 -1 0.03 0.00692764 0.00618013 63 35 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_020bits.v common 2.16 vpr 61.99 MiB -1 -1 0.15 17432 8 0.07 -1 -1 31996 -1 -1 14 41 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63480 41 21 139 160 1 106 76 17 17 289 -1 unnamed_device 22.9 MiB 0.04 588 8396 2008 5342 1046 62.0 MiB 0.05 0.00 3.1799 -77.5868 -3.1799 3.1799 0.34 0.000399995 0.000371199 0.0222085 0.0206233 -1 -1 -1 -1 26 1120 12 6.55708e+06 168770 477104. 1650.88 0.38 0.0643844 0.0565876 21022 109990 -1 1022 10 319 425 23447 6363 3.1799 3.1799 -79.2365 -3.1799 0 0 585099. 2024.56 0.03 0.02 0.12 -1 -1 0.03 0.00931512 0.00841851 67 37 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_022bits.v common 2.19 vpr 62.45 MiB -1 -1 0.13 17484 9 0.07 -1 -1 31884 -1 -1 15 45 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63948 45 23 153 176 1 107 83 17 17 289 -1 unnamed_device 23.1 MiB 0.05 536 7643 1816 4897 930 62.4 MiB 0.05 0.00 4.01419 -88.5998 -4.01419 4.01419 0.32 0.000435711 0.000404292 0.0198098 0.0183771 -1 -1 -1 -1 26 1149 13 6.55708e+06 180825 477104. 1650.88 0.44 0.0661535 0.0580745 21022 109990 -1 1003 13 321 492 25700 7436 3.87922 3.87922 -89.4779 -3.87922 0 0 585099. 2024.56 0.03 0.03 0.10 -1 -1 0.03 0.0114958 0.0102772 73 41 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_024bits.v common 2.19 vpr 62.10 MiB -1 -1 0.13 17776 10 0.07 -1 -1 32012 -1 -1 15 49 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63588 49 25 166 191 1 117 89 17 17 289 -1 unnamed_device 22.7 MiB 0.04 524 8207 1797 5151 1259 62.1 MiB 0.05 0.00 4.48062 -100.236 -4.48062 4.48062 0.32 0.000471573 0.000438453 0.0210235 0.0195468 -1 -1 -1 -1 26 1157 12 6.55708e+06 180825 477104. 1650.88 0.44 0.070761 0.0623165 21022 109990 -1 1039 10 321 455 24838 7158 4.40948 4.40948 -103.002 -4.40948 0 0 585099. 2024.56 0.03 0.03 0.09 -1 -1 0.03 0.0115319 0.01024 78 44 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_028bits.v common 2.40 vpr 62.41 MiB -1 -1 0.16 17836 11 0.07 -1 -1 32112 -1 -1 20 57 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63908 57 29 198 227 1 147 106 17 17 289 -1 unnamed_device 23.0 MiB 0.05 782 8606 1708 6393 505 62.4 MiB 0.06 0.00 4.94665 -134.466 -4.94665 4.94665 0.33 0.000571874 0.000532504 0.0215301 0.0200481 -1 -1 -1 -1 28 1522 13 6.55708e+06 241100 500653. 1732.36 0.43 0.0827513 0.0729032 21310 115450 -1 1371 8 367 517 27034 7537 4.59642 4.59642 -133.949 -4.59642 0 0 612192. 2118.31 0.03 0.03 0.11 -1 -1 0.03 0.0120118 0.0107143 93 56 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_032bits.v common 2.50 vpr 62.60 MiB -1 -1 0.19 17800 13 0.08 -1 -1 32188 -1 -1 20 65 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64100 65 33 224 257 1 164 118 17 17 289 -1 unnamed_device 22.9 MiB 0.06 928 17169 4443 10653 2073 62.6 MiB 0.10 0.00 5.28408 -153.681 -5.28408 5.28408 0.36 0.000649312 0.000604542 0.0408491 0.0380181 -1 -1 -1 -1 30 1659 12 6.55708e+06 241100 526063. 1820.29 0.47 0.109688 0.0977858 21886 126133 -1 1555 13 429 584 31745 8729 5.08288 5.08288 -153.594 -5.08288 0 0 666494. 2306.21 0.04 0.03 0.12 -1 -1 0.04 0.016224 0.0145393 107 62 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_048bits.v common 2.63 vpr 63.23 MiB -1 -1 0.20 18112 19 0.10 -1 -1 32232 -1 -1 34 97 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64752 97 49 340 389 1 260 180 17 17 289 -1 unnamed_device 23.4 MiB 0.10 1520 22532 5263 15517 1752 63.2 MiB 0.13 0.00 7.62655 -301.388 -7.62655 7.62655 0.29 0.000991752 0.000926486 0.0481233 0.0448481 -1 -1 -1 -1 30 2687 13 6.55708e+06 409870 526063. 1820.29 0.51 0.154423 0.138579 21886 126133 -1 2432 11 662 955 55712 14661 7.28333 7.28333 -297.521 -7.28333 0 0 666494. 2306.21 0.03 0.05 0.10 -1 -1 0.03 0.0249464 0.0224501 165 98 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_064bits.v common 3.24 vpr 63.93 MiB -1 -1 0.28 18296 26 0.13 -1 -1 32396 -1 -1 41 129 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65464 129 65 453 518 1 334 235 17 17 289 -1 unnamed_device 24.1 MiB 0.10 1951 55259 16458 32932 5869 63.9 MiB 0.28 0.00 10.6369 -487.594 -10.6369 10.6369 0.34 0.00134162 0.00125451 0.10975 0.102432 -1 -1 -1 -1 30 3742 35 6.55708e+06 494255 526063. 1820.29 0.78 0.289369 0.262587 21886 126133 -1 3039 12 909 1148 67590 18881 10.0187 10.0187 -472.64 -10.0187 0 0 666494. 2306.21 0.03 0.07 0.10 -1 -1 0.03 0.0361792 0.0327806 210 131 -1 -1 -1 -1 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_004bits.v common 0.49 abc 29.28 MiB -1 -1 0.10 17348 1 0.02 -1 -1 29980 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 23980 9 5 30 31 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_005bits.v common 0.58 abc 29.28 MiB -1 -1 0.12 17328 1 0.03 -1 -1 29984 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 23928 11 6 36 37 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_006bits.v common 0.66 abc 29.27 MiB -1 -1 0.14 17352 1 0.02 -1 -1 29972 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 24144 13 7 42 43 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_007bits.v common 0.66 abc 29.22 MiB -1 -1 0.14 17312 1 0.02 -1 -1 29924 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 24024 15 8 49 50 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_008bits.v common 0.63 abc 29.30 MiB -1 -1 0.14 17436 1 0.02 -1 -1 30000 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 23980 17 9 55 56 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_009bits.v common 0.61 abc 29.30 MiB -1 -1 0.15 17384 1 0.02 -1 -1 30000 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 24072 19 10 61 62 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_010bits.v common 0.58 abc 29.34 MiB -1 -1 0.16 17320 1 0.03 -1 -1 30048 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 23932 21 11 67 68 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_011bits.v common 0.55 abc 29.36 MiB -1 -1 0.14 17188 1 0.02 -1 -1 30068 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 24076 23 12 74 75 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_012bits.v common 0.83 abc 29.29 MiB -1 -1 0.16 17156 1 0.02 -1 -1 29992 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 23980 25 13 80 81 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_013bits.v common 0.67 abc 29.23 MiB -1 -1 0.15 17352 1 0.02 -1 -1 29936 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 23964 27 14 86 87 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_014bits.v common 0.64 abc 29.44 MiB -1 -1 0.15 17296 1 0.02 -1 -1 30144 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 24080 29 15 92 93 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_015bits.v common 0.82 abc 29.46 MiB -1 -1 0.16 17372 1 0.02 -1 -1 30164 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 24028 31 16 99 100 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_016bits.v common 0.90 abc 29.28 MiB -1 -1 0.16 17348 1 0.02 -1 -1 29984 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 24032 33 17 105 106 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_018bits.v common 1.13 abc 29.58 MiB -1 -1 0.16 17496 1 0.02 -1 -1 30288 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 24004 37 19 117 118 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_020bits.v common 1.11 abc 29.28 MiB -1 -1 0.15 17584 1 0.03 -1 -1 29980 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 24108 41 21 130 131 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_022bits.v common 1.33 abc 29.30 MiB -1 -1 0.15 17496 1 0.04 -1 -1 30004 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 24068 45 23 142 143 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_024bits.v common 1.13 abc 29.30 MiB -1 -1 0.16 17684 1 0.02 -1 -1 30000 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 24012 49 25 155 156 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_028bits.v common 0.59 abc 29.43 MiB -1 -1 0.16 17528 1 0.02 -1 -1 30140 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 24212 57 29 180 181 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_032bits.v common 0.61 abc 29.43 MiB -1 -1 0.14 17660 1 0.03 -1 -1 30136 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 24056 65 33 205 206 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_048bits.v common 0.60 abc 29.41 MiB -1 -1 0.12 17788 1 0.03 -1 -1 30116 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 24088 97 49 305 306 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_064bits.v common 1.42 abc 29.55 MiB -1 -1 0.21 18072 1 0.03 -1 -1 30256 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 24028 129 65 405 406 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_004bits.v common 0.58 abc 29.32 MiB -1 -1 0.15 17340 1 0.02 -1 -1 30024 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 23756 9 5 30 31 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_005bits.v common 0.56 abc 29.36 MiB -1 -1 0.14 17204 1 0.02 -1 -1 30060 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 23848 11 6 36 37 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_006bits.v common 0.46 abc 29.20 MiB -1 -1 0.08 17420 1 0.02 -1 -1 29904 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 23768 13 7 42 43 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_007bits.v common 0.55 abc 29.36 MiB -1 -1 0.16 17368 1 0.02 -1 -1 30060 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 23832 15 8 49 50 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_008bits.v common 0.50 abc 29.30 MiB -1 -1 0.11 17336 1 0.03 -1 -1 30000 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 23792 17 9 55 56 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_009bits.v common 0.56 abc 29.30 MiB -1 -1 0.14 17268 1 0.02 -1 -1 30008 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 23780 19 10 61 62 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_010bits.v common 0.64 abc 29.29 MiB -1 -1 0.15 17364 1 0.03 -1 -1 29996 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 23676 21 11 67 68 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_011bits.v common 0.77 abc 29.50 MiB -1 -1 0.15 17480 1 0.02 -1 -1 30208 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 23908 23 12 74 75 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_012bits.v common 0.87 abc 29.35 MiB -1 -1 0.13 17308 1 0.03 -1 -1 30056 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 23860 25 13 80 81 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_013bits.v common 0.78 abc 29.34 MiB -1 -1 0.15 17316 1 0.02 -1 -1 30044 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 23840 27 14 86 87 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_014bits.v common 0.90 abc 29.28 MiB -1 -1 0.13 17320 1 0.03 -1 -1 29984 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 23792 29 15 92 93 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_015bits.v common 0.55 abc 29.28 MiB -1 -1 0.15 17412 1 0.02 -1 -1 29984 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 23760 31 16 99 100 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_016bits.v common 0.57 abc 29.43 MiB -1 -1 0.14 17428 1 0.02 -1 -1 30136 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 23804 33 17 105 106 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_018bits.v common 0.59 abc 29.38 MiB -1 -1 0.15 17580 1 0.02 -1 -1 30084 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 23888 37 19 117 118 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_020bits.v common 0.59 abc 29.28 MiB -1 -1 0.16 17688 1 0.02 -1 -1 29980 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 23704 41 21 130 131 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 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.29 MiB -1 -1 0.14 17696 1 0.02 -1 -1 29988 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 23960 45 23 142 143 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_024bits.v common 0.53 abc 29.36 MiB -1 -1 0.09 17412 1 0.02 -1 -1 30060 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 23772 49 25 155 156 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_028bits.v common 0.64 abc 29.38 MiB -1 -1 0.15 17288 1 0.03 -1 -1 30088 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 23700 57 29 180 181 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_032bits.v common 0.68 abc 29.30 MiB -1 -1 0.17 17596 1 0.03 -1 -1 30000 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 23696 65 33 205 206 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_048bits.v common 0.67 abc 29.53 MiB -1 -1 0.14 17704 1 0.03 -1 -1 30236 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 23772 97 49 305 306 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_064bits.v common 0.81 abc 29.84 MiB -1 -1 0.22 18144 1 0.04 -1 -1 30556 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 23768 129 65 405 406 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_004bits.v common 1.67 vpr 61.95 MiB -1 -1 0.09 17252 1 0.03 -1 -1 30116 -1 -1 3 9 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63432 9 5 34 35 1 20 17 17 17 289 -1 unnamed_device 23.2 MiB 0.01 145 80 29 46 5 61.9 MiB 0.00 0.00 0.83871 -12.0914 -0.83871 0.83871 0.32 8.9493e-05 8.1196e-05 0.000627793 0.000575929 -1 -1 -1 -1 20 218 6 6.64007e+06 37674 394039. 1363.46 0.25 0.00366787 0.00331915 20530 87850 -1 213 8 56 56 3444 969 0.890248 0.890248 -12.2124 -0.890248 0 0 477104. 1650.88 0.02 0.01 0.08 -1 -1 0.02 0.0028001 0.00250588 14 2 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_005bits.v common 1.81 vpr 61.82 MiB -1 -1 0.15 17384 1 0.02 -1 -1 29928 -1 -1 4 11 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63308 11 6 41 42 1 26 21 17 17 289 -1 unnamed_device 23.1 MiB 0.01 179 525 133 355 37 61.8 MiB 0.01 0.00 0.803048 -13.1622 -0.803048 0.803048 0.33 0.000104816 9.5546e-05 0.00232117 0.00211796 -1 -1 -1 -1 20 294 8 6.64007e+06 50232 394039. 1363.46 0.25 0.00578063 0.00517738 20530 87850 -1 279 8 74 74 5640 1476 0.923248 0.923248 -15.592 -0.923248 0 0 477104. 1650.88 0.02 0.01 0.08 -1 -1 0.02 0.00307315 0.00274174 17 2 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_006bits.v common 1.86 vpr 61.86 MiB -1 -1 0.14 17352 1 0.02 -1 -1 30052 -1 -1 5 13 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63344 13 7 48 49 1 32 25 17 17 289 -1 unnamed_device 23.5 MiB 0.01 158 889 183 672 34 61.9 MiB 0.01 0.00 0.825048 -14.9551 -0.825048 0.825048 0.32 0.00012299 0.000112599 0.00344711 0.00315992 -1 -1 -1 -1 22 332 15 6.64007e+06 62790 420624. 1455.45 0.31 0.0177773 0.0149893 20818 92861 -1 288 10 103 103 5874 1694 0.934248 0.934248 -16.7505 -0.934248 0 0 500653. 1732.36 0.02 0.01 0.08 -1 -1 0.02 0.00384738 0.00340089 20 2 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_007bits.v common 1.89 vpr 61.98 MiB -1 -1 0.15 17472 1 0.02 -1 -1 30136 -1 -1 4 15 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63468 15 8 55 56 1 38 27 17 17 289 -1 unnamed_device 23.6 MiB 0.02 130 827 161 522 144 62.0 MiB 0.01 0.00 1.18536 -16.9426 -1.18536 1.18536 0.32 0.000141038 0.000129717 0.00333865 0.00306739 -1 -1 -1 -1 22 336 15 6.64007e+06 50232 420624. 1455.45 0.34 0.0179109 0.0151424 20818 92861 -1 281 7 118 118 7761 2504 1.08545 1.08545 -19.5322 -1.08545 0 0 500653. 1732.36 0.02 0.01 0.08 -1 -1 0.02 0.0039426 0.00354868 22 2 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_008bits.v common 2.04 vpr 61.95 MiB -1 -1 0.14 17348 1 0.02 -1 -1 30048 -1 -1 5 17 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63440 17 9 62 63 1 41 31 17 17 289 -1 unnamed_device 23.5 MiB 0.02 156 1759 570 827 362 62.0 MiB 0.02 0.00 1.19636 -19.8289 -1.19636 1.19636 0.32 0.000158366 0.000145724 0.00632531 0.00582349 -1 -1 -1 -1 32 266 11 6.64007e+06 62790 554710. 1919.41 0.38 0.0232912 0.0199009 22834 132086 -1 249 10 97 97 4881 1477 0.834048 0.834048 -18.8492 -0.834048 0 0 701300. 2426.64 0.03 0.01 0.11 -1 -1 0.03 0.00447744 0.00392841 25 2 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_009bits.v common 1.90 vpr 61.86 MiB -1 -1 0.14 17316 1 0.03 -1 -1 30144 -1 -1 5 19 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63348 19 10 69 70 1 44 34 17 17 289 -1 unnamed_device 23.4 MiB 0.02 160 1574 392 922 260 61.9 MiB 0.02 0.00 1.20736 -22.28 -1.20736 1.20736 0.31 0.000177199 0.000163665 0.00559114 0.00516294 -1 -1 -1 -1 22 389 20 6.64007e+06 62790 420624. 1455.45 0.33 0.0271204 0.0230692 20818 92861 -1 335 13 170 170 11128 3516 1.05245 1.05245 -23.8346 -1.05245 0 0 500653. 1732.36 0.03 0.02 0.09 -1 -1 0.03 0.00547305 0.00480176 28 2 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_010bits.v common 1.93 vpr 62.00 MiB -1 -1 0.15 17268 1 0.03 -1 -1 30160 -1 -1 6 21 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63488 21 11 76 77 1 49 38 17 17 289 -1 unnamed_device 23.4 MiB 0.02 326 2054 512 1388 154 62.0 MiB 0.02 0.00 1.21836 -28.0305 -1.21836 1.21836 0.32 0.000193986 0.000179202 0.0069198 0.00639758 -1 -1 -1 -1 26 550 12 6.64007e+06 75348 477104. 1650.88 0.35 0.0275302 0.0234892 21682 110474 -1 504 11 163 163 10372 2794 1.00925 1.00925 -29.7279 -1.00925 0 0 585099. 2024.56 0.03 0.02 0.10 -1 -1 0.03 0.00561273 0.00490548 31 2 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_011bits.v common 1.92 vpr 62.17 MiB -1 -1 0.10 17364 1 0.03 -1 -1 30004 -1 -1 7 23 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63660 23 12 83 84 1 55 42 17 17 289 -1 unnamed_device 23.5 MiB 0.02 202 2274 577 1358 339 62.2 MiB 0.02 0.00 1.22936 -27.3302 -1.22936 1.22936 0.32 0.000217044 0.000200805 0.00744746 0.00689241 -1 -1 -1 -1 26 516 20 6.64007e+06 87906 477104. 1650.88 0.37 0.03361 0.0286167 21682 110474 -1 423 19 254 254 15495 4842 1.14165 1.14165 -28.5397 -1.14165 0 0 585099. 2024.56 0.03 0.02 0.09 -1 -1 0.03 0.00847906 0.00723997 35 2 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_012bits.v common 2.03 vpr 62.03 MiB -1 -1 0.13 17356 1 0.02 -1 -1 30120 -1 -1 8 25 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63516 25 13 90 91 1 61 46 17 17 289 -1 unnamed_device 23.5 MiB 0.02 225 3162 1067 1505 590 62.0 MiB 0.03 0.00 1.24036 -30.3091 -1.24036 1.24036 0.32 0.000223716 0.000206705 0.00935455 0.00864973 -1 -1 -1 -1 28 585 26 6.64007e+06 100464 500653. 1732.36 0.41 0.0378559 0.0324088 21970 115934 -1 409 25 362 362 24657 7379 1.02145 1.02145 -29.5255 -1.02145 0 0 612192. 2118.31 0.04 0.03 0.10 -1 -1 0.04 0.00908575 0.00781132 38 2 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_013bits.v common 2.07 vpr 62.03 MiB -1 -1 0.15 17336 1 0.02 -1 -1 30088 -1 -1 9 27 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63520 27 14 97 98 1 67 50 17 17 289 -1 unnamed_device 23.5 MiB 0.02 251 4650 1464 2253 933 62.0 MiB 0.03 0.00 1.25136 -32.7881 -1.25136 1.25136 0.32 0.000239703 0.00022173 0.0129775 0.0119987 -1 -1 -1 -1 32 519 22 6.64007e+06 113022 554710. 1919.41 0.41 0.0419733 0.0362927 22834 132086 -1 437 14 276 276 16327 5300 1.03125 1.03125 -33.0873 -1.03125 0 0 701300. 2426.64 0.03 0.02 0.12 -1 -1 0.03 0.00771732 0.00669493 41 2 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_014bits.v common 1.96 vpr 62.14 MiB -1 -1 0.15 17348 1 0.02 -1 -1 29924 -1 -1 9 29 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63628 29 15 104 105 1 73 53 17 17 289 -1 unnamed_device 23.5 MiB 0.01 462 4409 1391 2113 905 62.1 MiB 0.03 0.00 1.26236 -39.7652 -1.26236 1.26236 0.32 0.000252152 0.000233455 0.012075 0.0111778 -1 -1 -1 -1 26 812 23 6.64007e+06 113022 477104. 1650.88 0.39 0.0429496 0.0370839 21682 110474 -1 713 17 323 323 26583 6736 1.03125 1.03125 -39.6574 -1.03125 0 0 585099. 2024.56 0.03 0.03 0.09 -1 -1 0.03 0.00919565 0.00794342 44 2 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_015bits.v common 2.09 vpr 62.16 MiB -1 -1 0.15 17408 1 0.02 -1 -1 30248 -1 -1 9 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63656 31 16 111 112 1 79 56 17 17 289 -1 unnamed_device 23.5 MiB 0.03 343 4978 1636 2249 1093 62.2 MiB 0.04 0.00 1.62267 -39.5838 -1.62267 1.62267 0.30 0.000273462 0.000253412 0.0135717 0.0125654 -1 -1 -1 -1 30 686 17 6.64007e+06 113022 526063. 1820.29 0.40 0.0434449 0.0377212 22546 126617 -1 539 11 219 219 10604 3260 0.95891 0.95891 -36.3522 -0.95891 0 0 666494. 2306.21 0.03 0.02 0.10 -1 -1 0.03 0.00745402 0.00655316 46 2 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_016bits.v common 2.01 vpr 62.13 MiB -1 -1 0.08 17640 1 0.02 -1 -1 30132 -1 -1 9 33 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63624 33 17 118 119 1 82 59 17 17 289 -1 unnamed_device 23.4 MiB 0.03 352 6329 2210 2989 1130 62.1 MiB 0.04 0.00 1.63367 -42.2226 -1.63367 1.63367 0.32 0.000292013 0.000271082 0.0171275 0.0158779 -1 -1 -1 -1 28 736 12 6.64007e+06 113022 500653. 1732.36 0.42 0.0478919 0.0418393 21970 115934 -1 618 18 335 335 18999 5605 1.21545 1.21545 -44.5486 -1.21545 0 0 612192. 2118.31 0.03 0.03 0.08 -1 -1 0.03 0.0108162 0.00934396 49 2 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_018bits.v common 2.08 vpr 62.25 MiB -1 -1 0.14 17540 1 0.02 -1 -1 30084 -1 -1 11 37 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63740 37 19 132 133 1 90 67 17 17 289 -1 unnamed_device 23.5 MiB 0.03 393 6867 2746 3975 146 62.2 MiB 0.05 0.00 1.65567 -49.3018 -1.65567 1.65567 0.32 0.000329974 0.000306635 0.0176624 0.0164096 -1 -1 -1 -1 30 805 15 6.64007e+06 138138 526063. 1820.29 0.41 0.0534439 0.0465752 22546 126617 -1 630 14 325 325 20407 5991 1.07325 1.07325 -45.7613 -1.07325 0 0 666494. 2306.21 0.03 0.03 0.10 -1 -1 0.03 0.0100761 0.0087606 55 2 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_020bits.v common 2.04 vpr 62.60 MiB -1 -1 0.13 17640 1 0.03 -1 -1 30388 -1 -1 13 41 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64100 41 21 146 147 1 102 75 17 17 289 -1 unnamed_device 23.3 MiB 0.02 587 9239 3659 4903 677 62.6 MiB 0.06 0.00 1.67767 -57.8173 -1.67767 1.67767 0.32 0.000360642 0.000335237 0.0220756 0.0205309 -1 -1 -1 -1 30 1014 13 6.64007e+06 163254 526063. 1820.29 0.42 0.0603789 0.0531045 22546 126617 -1 868 10 304 304 26082 6742 1.02025 1.02025 -52.0508 -1.02025 0 0 666494. 2306.21 0.03 0.03 0.10 -1 -1 0.03 0.00886711 0.00781227 62 2 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_022bits.v common 2.27 vpr 62.54 MiB -1 -1 0.16 17708 1 0.02 -1 -1 30284 -1 -1 14 45 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64044 45 23 160 161 1 114 82 17 17 289 -1 unnamed_device 23.2 MiB 0.03 505 10228 3751 5231 1246 62.5 MiB 0.06 0.00 1.69967 -61.6923 -1.69967 1.69967 0.32 0.000396366 0.000369082 0.0236606 0.0219962 -1 -1 -1 -1 32 1098 29 6.64007e+06 175812 554710. 1919.41 0.53 0.0745634 0.0654141 22834 132086 -1 841 14 524 524 35053 10407 1.18565 1.18565 -55.6154 -1.18565 0 0 701300. 2426.64 0.03 0.03 0.11 -1 -1 0.03 0.0118029 0.0103314 68 2 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_024bits.v common 2.22 vpr 62.62 MiB -1 -1 0.14 17656 1 0.03 -1 -1 30336 -1 -1 14 49 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64128 49 25 174 175 1 123 88 17 17 289 -1 unnamed_device 23.3 MiB 0.04 715 8278 1733 6367 178 62.6 MiB 0.06 0.00 2.07098 -71.4065 -2.07098 2.07098 0.32 0.000425886 0.000396892 0.0193216 0.0179715 -1 -1 -1 -1 30 1249 15 6.64007e+06 175812 526063. 1820.29 0.44 0.0656005 0.0577432 22546 126617 -1 1106 11 343 343 25695 6324 1.09525 1.09525 -65.1787 -1.09525 0 0 666494. 2306.21 0.03 0.03 0.10 -1 -1 0.03 0.0113828 0.0101237 73 2 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_028bits.v common 2.31 vpr 62.69 MiB -1 -1 0.16 17512 1 0.03 -1 -1 30076 -1 -1 18 57 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64196 57 29 202 203 1 143 104 17 17 289 -1 unnamed_device 23.3 MiB 0.04 774 16452 3708 11655 1089 62.7 MiB 0.10 0.00 2.11498 -86.7435 -2.11498 2.11498 0.32 0.000485084 0.000450927 0.0341069 0.0317077 -1 -1 -1 -1 32 1465 18 6.64007e+06 226044 554710. 1919.41 0.49 0.0895901 0.0796678 22834 132086 -1 1213 17 542 542 36079 10159 1.35645 1.35645 -81.4884 -1.35645 0 0 701300. 2426.64 0.03 0.04 0.11 -1 -1 0.03 0.016593 0.0145733 86 2 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_032bits.v common 2.38 vpr 62.91 MiB -1 -1 0.18 17672 1 0.03 -1 -1 30064 -1 -1 19 65 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64424 65 33 230 231 1 164 117 17 17 289 -1 unnamed_device 23.3 MiB 0.05 1165 18135 6420 10093 1622 62.9 MiB 0.11 0.00 2.50829 -108.778 -2.50829 2.50829 0.32 0.0005667 0.000528433 0.0374509 0.0349335 -1 -1 -1 -1 30 1825 43 6.64007e+06 238602 526063. 1820.29 0.51 0.122573 0.10861 22546 126617 -1 1603 14 500 500 39832 9325 1.21425 1.21425 -91.6209 -1.21425 0 0 666494. 2306.21 0.03 0.04 0.10 -1 -1 0.03 0.016578 0.0146599 97 2 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_048bits.v common 2.65 vpr 63.45 MiB -1 -1 0.17 17900 1 0.03 -1 -1 30280 -1 -1 29 97 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64976 97 49 342 343 1 246 175 17 17 289 -1 unnamed_device 23.9 MiB 0.07 1660 32449 9442 20195 2812 63.5 MiB 0.20 0.00 3.38291 -180.139 -3.38291 3.38291 0.32 0.000868353 0.000813665 0.0603321 0.056479 -1 -1 -1 -1 30 2741 24 6.64007e+06 364182 526063. 1820.29 0.58 0.167976 0.151769 22546 126617 -1 2404 13 827 827 63818 16162 1.39605 1.39605 -140.523 -1.39605 0 0 666494. 2306.21 0.03 0.06 0.10 -1 -1 0.03 0.0236694 0.0212549 145 2 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_064bits.v common 2.96 vpr 63.93 MiB -1 -1 0.19 18156 1 0.03 -1 -1 30516 -1 -1 39 129 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65460 129 65 454 455 1 328 233 17 17 289 -1 unnamed_device 24.4 MiB 0.11 2246 49637 16069 29592 3976 63.9 MiB 0.33 0.01 4.25753 -269.223 -4.25753 4.25753 0.32 0.00123279 0.00116168 0.0889312 0.0837218 -1 -1 -1 -1 32 3518 14 6.64007e+06 489762 554710. 1919.41 0.66 0.226555 0.20755 22834 132086 -1 3131 12 959 959 74779 19366 1.56805 1.56805 -190.941 -1.56805 0 0 701300. 2426.64 0.03 0.08 0.11 -1 -1 0.03 0.0304292 0.0275916 193 2 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_004bits.v common 1.70 vpr 61.73 MiB -1 -1 0.12 17344 1 0.03 -1 -1 29928 -1 -1 3 9 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63216 9 5 34 35 1 20 17 17 17 289 -1 unnamed_device 22.9 MiB 0.01 148 80 29 46 5 61.7 MiB 0.00 0.00 0.83871 -11.7447 -0.83871 0.83871 0.32 8.8927e-05 8.028e-05 0.000604437 0.000548194 -1 -1 -1 -1 20 230 8 6.65987e+06 38034 394039. 1363.46 0.25 0.00388017 0.00347642 20530 87850 -1 214 10 61 61 5414 1452 0.83871 0.83871 -11.8866 -0.83871 0 0 477104. 1650.88 0.02 0.01 0.08 -1 -1 0.02 0.0031468 0.00280409 14 2 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_005bits.v common 1.72 vpr 61.69 MiB -1 -1 0.14 17312 1 0.02 -1 -1 29920 -1 -1 4 11 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63168 11 6 41 42 1 26 21 17 17 289 -1 unnamed_device 23.0 MiB 0.01 189 525 130 355 40 61.7 MiB 0.01 0.00 0.803048 -13.1363 -0.803048 0.803048 0.32 0.000104272 9.5105e-05 0.00233488 0.00212885 -1 -1 -1 -1 20 304 9 6.65987e+06 50712 394039. 1363.46 0.26 0.00586479 0.00523143 20530 87850 -1 282 10 105 105 8718 2335 0.83871 0.83871 -14.5944 -0.83871 0 0 477104. 1650.88 0.03 0.01 0.08 -1 -1 0.03 0.00378422 0.00342251 17 2 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_006bits.v common 1.86 vpr 61.82 MiB -1 -1 0.13 17280 1 0.02 -1 -1 29868 -1 -1 5 13 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63308 13 7 48 49 1 32 25 17 17 289 -1 unnamed_device 23.4 MiB 0.01 147 1105 244 814 47 61.8 MiB 0.01 0.00 0.830189 -14.844 -0.830189 0.830189 0.33 0.00012577 0.000112704 0.00426613 0.00390409 -1 -1 -1 -1 26 305 15 6.65987e+06 63390 477104. 1650.88 0.34 0.0191538 0.0162467 21682 110474 -1 272 12 128 128 8327 2403 0.950389 0.950389 -16.4625 -0.950389 0 0 585099. 2024.56 0.03 0.01 0.09 -1 -1 0.03 0.00423977 0.00371064 20 2 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_007bits.v common 2.02 vpr 61.80 MiB -1 -1 0.16 17392 1 0.02 -1 -1 30000 -1 -1 4 15 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63288 15 8 55 56 1 38 27 17 17 289 -1 unnamed_device 23.4 MiB 0.01 132 947 214 545 188 61.8 MiB 0.01 0.00 1.20253 -16.9819 -1.20253 1.20253 0.34 0.00014165 0.000130082 0.00397733 0.00363354 -1 -1 -1 -1 32 286 17 6.65987e+06 50712 554710. 1919.41 0.38 0.0203804 0.0172185 22834 132086 -1 207 12 103 103 5880 1787 0.856048 0.856048 -16.2356 -0.856048 0 0 701300. 2426.64 0.03 0.01 0.11 -1 -1 0.03 0.00468142 0.00409653 22 2 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_008bits.v common 1.96 vpr 61.77 MiB -1 -1 0.14 17420 1 0.02 -1 -1 30048 -1 -1 5 17 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63256 17 9 62 63 1 41 31 17 17 289 -1 unnamed_device 23.4 MiB 0.02 169 1039 221 683 135 61.8 MiB 0.01 0.00 1.19636 -19.6785 -1.19636 1.19636 0.34 0.000160216 0.000147534 0.00392966 0.00362469 -1 -1 -1 -1 30 342 14 6.65987e+06 63390 526063. 1820.29 0.37 0.0217562 0.0183847 22546 126617 -1 290 13 143 143 7116 2212 0.823048 0.823048 -19.6378 -0.823048 0 0 666494. 2306.21 0.03 0.01 0.10 -1 -1 0.03 0.00533708 0.00464817 25 2 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_009bits.v common 1.96 vpr 61.78 MiB -1 -1 0.10 17400 1 0.02 -1 -1 30056 -1 -1 5 19 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63264 19 10 69 70 1 44 34 17 17 289 -1 unnamed_device 23.3 MiB 0.02 158 1684 407 960 317 61.8 MiB 0.02 0.00 1.20736 -22.0789 -1.20736 1.20736 0.32 0.000176486 0.000162987 0.00597002 0.0055165 -1 -1 -1 -1 30 316 15 6.65987e+06 63390 526063. 1820.29 0.37 0.0258595 0.0220154 22546 126617 -1 281 20 183 183 9032 2990 1.07445 1.07445 -22.6488 -1.07445 0 0 666494. 2306.21 0.05 0.02 0.14 -1 -1 0.05 0.00796327 0.00683749 28 2 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_010bits.v common 1.96 vpr 61.98 MiB -1 -1 0.14 17436 1 0.02 -1 -1 30148 -1 -1 6 21 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63472 21 11 76 77 1 49 38 17 17 289 -1 unnamed_device 23.4 MiB 0.02 335 1865 426 1314 125 62.0 MiB 0.02 0.00 1.21836 -28.0156 -1.21836 1.21836 0.32 0.000195988 0.000181389 0.00640653 0.00592412 -1 -1 -1 -1 26 555 11 6.65987e+06 76068 477104. 1650.88 0.35 0.0272629 0.0232932 21682 110474 -1 547 16 214 214 18567 4835 1.08545 1.08545 -31.2059 -1.08545 0 0 585099. 2024.56 0.03 0.02 0.09 -1 -1 0.03 0.00706697 0.00607694 31 2 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_011bits.v common 2.03 vpr 62.06 MiB -1 -1 0.16 17404 1 0.02 -1 -1 30128 -1 -1 7 23 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63552 23 12 83 84 1 55 42 17 17 289 -1 unnamed_device 23.4 MiB 0.02 204 3498 1194 1551 753 62.1 MiB 0.03 0.00 1.22936 -27.6572 -1.22936 1.22936 0.32 0.000212462 0.000196166 0.0109339 0.0101005 -1 -1 -1 -1 30 454 21 6.65987e+06 88746 526063. 1820.29 0.39 0.0363204 0.0312013 22546 126617 -1 361 18 221 221 11264 3655 1.04739 1.04739 -26.9812 -1.04739 0 0 666494. 2306.21 0.03 0.02 0.10 -1 -1 0.03 0.00812448 0.00696129 35 2 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_012bits.v common 1.99 vpr 61.94 MiB -1 -1 0.15 17252 1 0.02 -1 -1 29996 -1 -1 8 25 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63428 25 13 90 91 1 61 46 17 17 289 -1 unnamed_device 23.4 MiB 0.02 266 3244 1063 1597 584 61.9 MiB 0.03 0.00 1.24036 -31.1975 -1.24036 1.24036 0.32 0.000180091 0.000164931 0.00943785 0.00872483 -1 -1 -1 -1 28 564 34 6.65987e+06 101424 500653. 1732.36 0.43 0.046281 0.0393218 21970 115934 -1 503 13 227 227 15114 4347 1.14045 1.14045 -33.3649 -1.14045 0 0 612192. 2118.31 0.03 0.02 0.11 -1 -1 0.03 0.00698344 0.00607333 38 2 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_013bits.v common 2.09 vpr 62.05 MiB -1 -1 0.15 17416 1 0.02 -1 -1 29976 -1 -1 9 27 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63544 27 14 97 98 1 67 50 17 17 289 -1 unnamed_device 23.4 MiB 0.02 267 4650 1648 2149 853 62.1 MiB 0.04 0.00 1.25136 -33.284 -1.25136 1.25136 0.32 0.000283328 0.000262351 0.0142241 0.0131692 -1 -1 -1 -1 32 627 21 6.65987e+06 114102 554710. 1919.41 0.42 0.0429261 0.0372136 22834 132086 -1 519 21 333 333 18881 5985 1.12945 1.12945 -35.2713 -1.12945 0 0 701300. 2426.64 0.03 0.04 0.11 -1 -1 0.03 0.0149715 0.0126565 41 2 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_014bits.v common 2.07 vpr 61.92 MiB -1 -1 0.15 17644 1 0.02 -1 -1 29984 -1 -1 9 29 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63408 29 15 104 105 1 73 53 17 17 289 -1 unnamed_device 23.3 MiB 0.02 324 3518 788 2107 623 61.9 MiB 0.03 0.00 1.26236 -35.6797 -1.26236 1.26236 0.32 0.000253071 0.000234583 0.00979541 0.0090734 -1 -1 -1 -1 30 698 25 6.65987e+06 114102 526063. 1820.29 0.42 0.0425967 0.0366082 22546 126617 -1 520 15 327 327 17260 5451 1.02039 1.02039 -33.4205 -1.02039 0 0 666494. 2306.21 0.03 0.02 0.08 -1 -1 0.03 0.00850795 0.00740024 44 2 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_015bits.v common 2.14 vpr 61.97 MiB -1 -1 0.16 17636 1 0.02 -1 -1 30264 -1 -1 9 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63460 31 16 111 112 1 79 56 17 17 289 -1 unnamed_device 23.3 MiB 0.02 363 4978 1495 2401 1082 62.0 MiB 0.04 0.00 1.62267 -39.2597 -1.62267 1.62267 0.32 0.000271456 0.000251613 0.0137065 0.0126797 -1 -1 -1 -1 28 787 18 6.65987e+06 114102 500653. 1732.36 0.43 0.0450106 0.0390537 21970 115934 -1 646 20 384 384 28172 7864 1.10039 1.10039 -40.1031 -1.10039 0 0 612192. 2118.31 0.03 0.03 0.10 -1 -1 0.03 0.0116488 0.010003 46 2 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_016bits.v common 2.15 vpr 61.95 MiB -1 -1 0.15 17460 1 0.02 -1 -1 30056 -1 -1 9 33 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63440 33 17 118 119 1 82 59 17 17 289 -1 unnamed_device 23.3 MiB 0.02 358 6329 2576 3638 115 62.0 MiB 0.05 0.00 1.63367 -43.0819 -1.63367 1.63367 0.32 0.000297215 0.00027577 0.0173583 0.0161231 -1 -1 -1 -1 30 697 17 6.65987e+06 114102 526063. 1820.29 0.41 0.0506732 0.0443138 22546 126617 -1 563 18 309 309 15903 4551 0.975189 0.975189 -38.2274 -0.975189 0 0 666494. 2306.21 0.03 0.03 0.09 -1 -1 0.03 0.0107508 0.00928908 49 2 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_018bits.v common 2.29 vpr 62.15 MiB -1 -1 0.17 17580 1 0.02 -1 -1 30004 -1 -1 11 37 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63640 37 19 132 133 1 90 67 17 17 289 -1 unnamed_device 23.3 MiB 0.03 395 6867 2582 3609 676 62.1 MiB 0.05 0.00 1.65567 -48.7086 -1.65567 1.65567 0.32 0.000325622 0.000302353 0.0174514 0.0161951 -1 -1 -1 -1 28 927 37 6.65987e+06 139458 500653. 1732.36 0.49 0.0658178 0.0568171 21970 115934 -1 701 14 374 374 29107 8630 1.23745 1.23745 -49.5635 -1.23745 0 0 612192. 2118.31 0.02 0.02 0.07 -1 -1 0.02 0.00594303 0.00527331 55 2 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_020bits.v common 2.41 vpr 62.28 MiB -1 -1 0.12 17468 1 0.02 -1 -1 30460 -1 -1 13 41 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63772 41 21 146 147 1 102 75 17 17 289 -1 unnamed_device 23.0 MiB 0.03 491 9081 3707 5187 187 62.3 MiB 0.06 0.00 1.67767 -56.6155 -1.67767 1.67767 0.32 0.00035997 0.000334363 0.0218976 0.020333 -1 -1 -1 -1 30 1037 25 6.65987e+06 164814 526063. 1820.29 0.49 0.0667016 0.0582429 22546 126617 -1 743 15 369 369 22934 6790 1.02419 1.02419 -50.6361 -1.02419 0 0 666494. 2306.21 0.03 0.03 0.10 -1 -1 0.03 0.0117394 0.0102506 62 2 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_022bits.v common 3.61 vpr 62.31 MiB -1 -1 0.11 17580 1 0.02 -1 -1 30308 -1 -1 14 45 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63808 45 23 160 161 1 114 82 17 17 289 -1 unnamed_device 23.1 MiB 0.03 499 10228 3488 4555 2185 62.3 MiB 0.06 0.00 1.69967 -61.5408 -1.69967 1.69967 0.32 0.000393075 0.000365679 0.0237597 0.0221074 -1 -1 -1 -1 30 1113 21 6.65987e+06 177492 526063. 1820.29 1.46 0.127983 0.11047 22546 126617 -1 863 16 593 593 46003 13579 1.18459 1.18459 -55.1595 -1.18459 0 0 666494. 2306.21 0.03 0.04 0.10 -1 -1 0.03 0.0130362 0.0113889 68 2 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_024bits.v common 2.71 vpr 62.41 MiB -1 -1 0.16 17728 1 0.02 -1 -1 30344 -1 -1 14 49 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63908 49 25 174 175 1 123 88 17 17 289 -1 unnamed_device 23.1 MiB 0.03 627 5353 1046 4033 274 62.4 MiB 0.04 0.00 2.07098 -70.3136 -2.07098 2.07098 0.32 0.000433307 0.000403645 0.0129451 0.0120394 -1 -1 -1 -1 32 1170 15 6.65987e+06 177492 554710. 1919.41 0.45 0.0588027 0.0514064 22834 132086 -1 1054 17 432 432 30738 8937 1.32345 1.32345 -69.7201 -1.32345 0 0 701300. 2426.64 0.03 0.04 0.11 -1 -1 0.03 0.0145867 0.0127516 73 2 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_028bits.v common 2.29 vpr 62.52 MiB -1 -1 0.16 17584 1 0.04 -1 -1 30108 -1 -1 18 57 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64016 57 29 202 203 1 143 104 17 17 289 -1 unnamed_device 23.4 MiB 0.04 750 10596 2249 7776 571 62.5 MiB 0.07 0.00 2.11498 -85.1831 -2.11498 2.11498 0.31 0.000494895 0.000460975 0.0226536 0.02111 -1 -1 -1 -1 32 1479 15 6.65987e+06 228204 554710. 1919.41 0.47 0.0757256 0.0669986 22834 132086 -1 1199 18 520 520 35837 10747 1.36745 1.36745 -82.2692 -1.36745 0 0 701300. 2426.64 0.03 0.04 0.11 -1 -1 0.03 0.0174867 0.0153336 86 2 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_032bits.v common 2.36 vpr 62.79 MiB -1 -1 0.14 17900 1 0.03 -1 -1 29940 -1 -1 19 65 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64296 65 33 230 231 1 164 117 17 17 289 -1 unnamed_device 23.2 MiB 0.04 1148 18135 6273 10055 1807 62.8 MiB 0.11 0.00 2.50829 -108.743 -2.50829 2.50829 0.31 0.000567141 0.000528695 0.0376235 0.035098 -1 -1 -1 -1 32 1762 17 6.65987e+06 240882 554710. 1919.41 0.48 0.101169 0.0902369 22834 132086 -1 1641 35 572 572 92037 50076 1.42045 1.42045 -99.1377 -1.42045 0 0 701300. 2426.64 0.03 0.09 0.11 -1 -1 0.03 0.034255 0.0298774 97 2 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_048bits.v common 2.76 vpr 62.72 MiB -1 -1 0.15 17948 1 0.04 -1 -1 30296 -1 -1 29 97 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64224 97 49 342 343 1 246 175 17 17 289 -1 unnamed_device 23.6 MiB 0.05 1644 32449 9393 19839 3217 62.7 MiB 0.19 0.00 3.38291 -180.76 -3.38291 3.38291 0.32 0.000880433 0.000823692 0.0609751 0.0571335 -1 -1 -1 -1 32 2858 35 6.65987e+06 367662 554710. 1919.41 0.66 0.183589 0.165605 22834 132086 -1 2422 21 853 853 74293 19928 1.63645 1.63645 -152.543 -1.63645 0 0 701300. 2426.64 0.03 0.08 0.11 -1 -1 0.03 0.0343826 0.0306978 145 2 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_064bits.v common 3.04 vpr 63.06 MiB -1 -1 0.22 18240 1 0.04 -1 -1 30524 -1 -1 39 129 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64576 129 65 454 455 1 328 233 17 17 289 -1 unnamed_device 24.1 MiB 0.07 2278 49637 16106 29325 4206 63.1 MiB 0.32 0.01 4.25753 -269.84 -4.25753 4.25753 0.32 0.00119888 0.00112752 0.0868525 0.0816403 -1 -1 -1 -1 32 3524 24 6.65987e+06 494442 554710. 1919.41 0.71 0.239232 0.218193 22834 132086 -1 3207 15 1082 1082 88606 22556 1.61205 1.61205 -194.499 -1.61205 0 0 701300. 2426.64 0.03 0.09 0.13 -1 -1 0.03 0.0362035 0.0327639 193 2 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml adder_004bits.v common 1.77 vpr 62.61 MiB -1 -1 0.15 17432 1 0.02 -1 -1 30000 -1 -1 1 9 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64112 9 5 34 35 1 15 15 17 17 289 -1 unnamed_device 23.9 MiB 0.02 49 141 51 88 2 62.6 MiB 0.00 0.00 0.723895 -9.92304 -0.723895 0.723895 0.26 8.8052e-05 7.9849e-05 0.000999121 0.000908116 -1 -1 -1 -1 20 98 10 6.95648e+06 14475.7 414966. 1435.87 0.30 0.0111389 0.00932378 23170 95770 -1 97 7 39 39 2258 798 0.74674 0.74674 -9.97418 -0.74674 0 0 503264. 1741.40 0.02 0.01 0.08 -1 -1 0.02 0.00275107 0.00248696 7 2 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml adder_005bits.v common 1.90 vpr 62.60 MiB -1 -1 0.14 17416 1 0.02 -1 -1 29904 -1 -1 1 11 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64100 11 6 41 42 1 20 18 17 17 289 -1 unnamed_device 24.1 MiB 0.05 62 455 89 352 14 62.6 MiB 0.01 0.00 0.723895 -12.1764 -0.723895 0.723895 0.34 0.000105243 9.602e-05 0.00245462 0.00224036 -1 -1 -1 -1 20 159 11 6.95648e+06 14475.7 414966. 1435.87 0.28 0.006791 0.00608146 23170 95770 -1 135 8 71 71 4591 1516 0.74674 0.74674 -13.0356 -0.74674 0 0 503264. 1741.40 0.02 0.01 0.10 -1 -1 0.02 0.00316305 0.00283131 8 2 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml adder_006bits.v common 1.98 vpr 62.57 MiB -1 -1 0.14 17264 1 0.02 -1 -1 29984 -1 -1 2 13 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64076 13 7 48 49 1 25 22 17 17 289 -1 unnamed_device 24.1 MiB 0.05 78 532 113 404 15 62.6 MiB 0.01 0.00 0.802432 -14.5369 -0.802432 0.802432 0.35 0.00012283 0.00011251 0.00266091 0.00244373 -1 -1 -1 -1 22 226 14 6.95648e+06 28951.4 443629. 1535.05 0.33 0.0192559 0.0165149 23458 102101 -1 200 12 93 93 4853 1733 1.04203 1.04203 -16.6837 -1.04203 0 0 531479. 1839.03 0.02 0.01 0.10 -1 -1 0.02 0.00425953 0.003729 10 2 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml adder_007bits.v common 1.92 vpr 62.76 MiB -1 -1 0.09 17224 1 0.03 -1 -1 30004 -1 -1 2 15 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64268 15 8 55 56 1 32 25 17 17 289 -1 unnamed_device 24.3 MiB 0.03 198 745 185 473 87 62.8 MiB 0.01 0.00 0.852632 -19.2076 -0.852632 0.852632 0.34 0.000140716 0.00012916 0.00337215 0.00309938 -1 -1 -1 -1 26 321 13 6.95648e+06 28951.4 503264. 1741.40 0.36 0.0195341 0.0165326 24322 120374 -1 321 11 126 126 8370 2235 1.09223 1.09223 -20.8791 -1.09223 0 0 618332. 2139.56 0.04 0.01 0.12 -1 -1 0.04 0.00464353 0.00415812 11 2 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml adder_008bits.v common 2.08 vpr 62.92 MiB -1 -1 0.15 17404 1 0.02 -1 -1 30132 -1 -1 2 17 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64428 17 9 62 63 1 37 28 17 17 289 -1 unnamed_device 24.4 MiB 0.03 223 1078 298 659 121 62.9 MiB 0.01 0.00 0.852632 -21.5769 -0.852632 0.852632 0.33 0.000157576 0.000145183 0.00461473 0.00425641 -1 -1 -1 -1 30 354 9 6.95648e+06 28951.4 556674. 1926.21 0.39 0.0212789 0.0180897 25186 138497 -1 308 12 127 127 6401 1953 0.959892 0.959892 -22.0373 -0.959892 0 0 706193. 2443.58 0.03 0.01 0.11 -1 -1 0.03 0.00509797 0.00446228 13 2 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml adder_009bits.v common 2.35 vpr 62.62 MiB -1 -1 0.16 17360 1 0.02 -1 -1 30072 -1 -1 4 19 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64124 19 10 69 70 1 44 33 17 17 289 -1 unnamed_device 24.1 MiB 0.02 137 2113 694 1199 220 62.6 MiB 0.02 0.00 0.852632 -22.0391 -0.852632 0.852632 0.33 0.000175963 0.000162527 0.0077691 0.00716049 -1 -1 -1 -1 34 351 30 6.95648e+06 57902.7 618332. 2139.56 0.63 0.045466 0.0380876 25762 151098 -1 282 21 287 287 12600 4481 1.08603 1.08603 -23.81 -1.08603 0 0 787024. 2723.27 0.05 0.03 0.14 -1 -1 0.05 0.00901771 0.00775726 15 2 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml adder_010bits.v common 2.12 vpr 62.77 MiB -1 -1 0.16 17304 1 0.03 -1 -1 30060 -1 -1 4 21 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64280 21 11 76 77 1 49 36 17 17 289 -1 unnamed_device 24.3 MiB 0.02 347 1157 244 770 143 62.8 MiB 0.01 0.00 0.896632 -29.3782 -0.896632 0.896632 0.34 0.000195865 0.000181237 0.00446093 0.00413933 -1 -1 -1 -1 32 570 14 6.95648e+06 57902.7 586450. 2029.24 0.45 0.0343905 0.0288988 25474 144626 -1 537 14 225 225 20970 4717 0.993732 0.993732 -31.9978 -0.993732 0 0 744469. 2576.02 0.03 0.02 0.10 -1 -1 0.03 0.00662926 0.0057376 17 2 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml adder_011bits.v common 2.48 vpr 62.92 MiB -1 -1 0.16 17280 1 0.02 -1 -1 30048 -1 -1 4 23 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64432 23 12 83 84 1 55 39 17 17 289 -1 unnamed_device 24.3 MiB 0.02 176 2481 826 1259 396 62.9 MiB 0.02 0.00 0.896632 -27.0337 -0.896632 0.896632 0.34 0.000210709 0.000195162 0.00860788 0.00797035 -1 -1 -1 -1 34 483 24 6.95648e+06 57902.7 618332. 2139.56 0.67 0.0520092 0.0437792 25762 151098 -1 363 22 394 394 26948 8701 1.04203 1.04203 -28.5778 -1.04203 0 0 787024. 2723.27 0.04 0.03 0.16 -1 -1 0.04 0.00958538 0.00817473 18 2 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml adder_012bits.v common 2.16 vpr 62.77 MiB -1 -1 0.15 17464 1 0.02 -1 -1 30040 -1 -1 5 25 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64280 25 13 90 91 1 60 43 17 17 289 -1 unnamed_device 24.1 MiB 0.02 224 1468 277 1132 59 62.8 MiB 0.02 0.00 0.918632 -30.5074 -0.918632 0.918632 0.34 0.000235964 0.000218668 0.00528816 0.00487691 -1 -1 -1 -1 28 585 18 6.95648e+06 72378.4 531479. 1839.03 0.42 0.0314017 0.026693 24610 126494 -1 522 14 291 291 16745 5276 1.13003 1.13003 -35.7088 -1.13003 0 0 648988. 2245.63 0.03 0.02 0.11 -1 -1 0.03 0.00737591 0.00639021 20 2 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml adder_013bits.v common 2.17 vpr 62.77 MiB -1 -1 0.15 17312 1 0.02 -1 -1 30064 -1 -1 5 27 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64276 27 14 97 98 1 66 46 17 17 289 -1 unnamed_device 24.1 MiB 0.03 339 2916 911 1507 498 62.8 MiB 0.02 0.00 0.951632 -33.9905 -0.951632 0.951632 0.33 0.000237851 0.000219672 0.0093005 0.00860411 -1 -1 -1 -1 30 672 15 6.95648e+06 72378.4 556674. 1926.21 0.43 0.0359111 0.0309348 25186 138497 -1 538 13 312 312 21190 5519 1.20223 1.20223 -37.9867 -1.20223 0 0 706193. 2443.58 0.03 0.02 0.11 -1 -1 0.03 0.0076564 0.00668502 21 2 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml adder_014bits.v common 2.25 vpr 62.77 MiB -1 -1 0.16 17140 1 0.02 -1 -1 29948 -1 -1 5 29 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64276 29 15 104 105 1 72 49 17 17 289 -1 unnamed_device 24.1 MiB 0.03 501 2808 751 1668 389 62.8 MiB 0.02 0.00 0.951632 -40.8249 -0.951632 0.951632 0.34 0.000242718 0.000218442 0.00856423 0.00788443 -1 -1 -1 -1 28 933 14 6.95648e+06 72378.4 531479. 1839.03 0.51 0.0366332 0.0315532 24610 126494 -1 839 20 482 482 52768 11792 1.09223 1.09223 -45.6629 -1.09223 0 0 648988. 2245.63 0.03 0.03 0.14 -1 -1 0.03 0.0104657 0.00901245 23 2 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml adder_015bits.v common 2.48 vpr 62.93 MiB -1 -1 0.17 17680 1 0.02 -1 -1 30380 -1 -1 5 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64444 31 16 111 112 1 78 52 17 17 289 -1 unnamed_device 24.2 MiB 0.04 310 4417 1777 2577 63 62.9 MiB 0.03 0.00 1.33396 -40.1371 -1.33396 1.33396 0.33 0.000271468 0.000251395 0.013265 0.0122886 -1 -1 -1 -1 36 703 18 6.95648e+06 72378.4 648988. 2245.63 0.68 0.065333 0.0558986 26050 158493 -1 570 15 424 424 34284 9332 1.09503 1.09503 -39.6024 -1.09503 0 0 828058. 2865.25 0.03 0.03 0.13 -1 -1 0.03 0.00937891 0.00816579 24 2 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml adder_016bits.v common 2.24 vpr 62.85 MiB -1 -1 0.14 17620 1 0.02 -1 -1 30060 -1 -1 5 33 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64360 33 17 118 119 1 81 55 17 17 289 -1 unnamed_device 24.2 MiB 0.05 328 4735 1875 2804 56 62.9 MiB 0.04 0.00 1.34496 -43.1769 -1.34496 1.34496 0.33 0.000293442 0.00027197 0.0142331 0.0131982 -1 -1 -1 -1 30 767 17 6.95648e+06 72378.4 556674. 1926.21 0.46 0.0473708 0.0411429 25186 138497 -1 631 20 455 455 37921 9718 1.25333 1.25333 -46.1252 -1.25333 0 0 706193. 2443.58 0.03 0.03 0.11 -1 -1 0.03 0.0119303 0.0103075 25 2 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml adder_018bits.v common 2.33 vpr 62.87 MiB -1 -1 0.15 17668 1 0.03 -1 -1 30120 -1 -1 5 37 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64376 37 19 132 133 1 87 61 17 17 289 -1 unnamed_device 24.1 MiB 0.07 367 6541 2699 3775 67 62.9 MiB 0.05 0.00 1.36696 -49.1573 -1.36696 1.36696 0.33 0.000329616 0.000306498 0.0189951 0.0176578 -1 -1 -1 -1 32 856 19 6.95648e+06 72378.4 586450. 2029.24 0.49 0.0571506 0.0498642 25474 144626 -1 628 18 477 477 33113 8842 1.22703 1.22703 -50.8059 -1.22703 0 0 744469. 2576.02 0.03 0.03 0.12 -1 -1 0.03 0.0122266 0.0105782 28 2 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml adder_020bits.v common 2.39 vpr 63.03 MiB -1 -1 0.17 17652 1 0.02 -1 -1 30388 -1 -1 5 41 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64544 41 21 146 147 1 95 67 17 17 289 -1 unnamed_device 24.0 MiB 0.07 409 6867 2815 3994 58 63.0 MiB 0.05 0.00 1.38896 -56.2399 -1.38896 1.38896 0.33 0.00036088 0.000335508 0.0193484 0.0179993 -1 -1 -1 -1 30 1163 35 6.95648e+06 72378.4 556674. 1926.21 0.60 0.0698336 0.0607412 25186 138497 -1 785 16 563 563 51275 13421 1.44463 1.44463 -60.8139 -1.44463 0 0 706193. 2443.58 0.03 0.04 0.11 -1 -1 0.03 0.0123152 0.0107333 31 2 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml adder_022bits.v common 3.70 vpr 63.18 MiB -1 -1 0.17 17588 1 0.03 -1 -1 30316 -1 -1 6 45 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64696 45 23 160 161 1 108 74 17 17 289 -1 unnamed_device 24.0 MiB 0.08 466 7514 3111 4336 67 63.2 MiB 0.05 0.00 1.41096 -62.5444 -1.41096 1.41096 0.34 0.000390697 0.000363589 0.0201808 0.0187804 -1 -1 -1 -1 30 1395 36 6.95648e+06 86854.1 556674. 1926.21 1.90 0.138593 0.119171 25186 138497 -1 978 18 641 641 63569 17940 1.48863 1.48863 -70.3618 -1.48863 0 0 706193. 2443.58 0.03 0.04 0.12 -1 -1 0.03 0.0146196 0.0127359 34 2 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml adder_024bits.v common 2.90 vpr 63.12 MiB -1 -1 0.16 17596 1 0.02 -1 -1 30312 -1 -1 8 49 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64636 49 25 174 175 1 119 82 17 17 289 -1 unnamed_device 23.8 MiB 0.04 520 10228 4157 5955 116 63.1 MiB 0.07 0.00 1.43296 -67.8605 -1.43296 1.43296 0.33 0.000422216 0.000392392 0.0255487 0.0237708 -1 -1 -1 -1 34 1266 38 6.95648e+06 115805 618332. 2139.56 1.06 0.119303 0.103735 25762 151098 -1 942 16 636 636 48693 14140 1.51063 1.51063 -74.0336 -1.51063 0 0 787024. 2723.27 0.03 0.04 0.12 -1 -1 0.03 0.014172 0.0124003 38 2 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml adder_028bits.v common 3.02 vpr 63.27 MiB -1 -1 0.17 17680 1 0.03 -1 -1 30076 -1 -1 9 57 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64784 57 29 202 203 1 142 95 17 17 289 -1 unnamed_device 23.9 MiB 0.05 722 11543 4832 6610 101 63.3 MiB 0.07 0.00 1.47696 -83.7156 -1.47696 1.47696 0.33 0.000489569 0.000455061 0.0277562 0.0258156 -1 -1 -1 -1 38 1507 49 6.95648e+06 130281 678818. 2348.85 1.12 0.143453 0.125414 26626 170182 -1 1153 19 711 711 52152 13258 1.36523 1.36523 -83.7828 -1.36523 0 0 902133. 3121.57 0.03 0.05 0.14 -1 -1 0.03 0.0185791 0.0163538 44 2 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml adder_032bits.v common 3.11 vpr 63.55 MiB -1 -1 0.09 17632 1 0.03 -1 -1 30176 -1 -1 9 65 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65072 65 33 230 231 1 162 107 17 17 289 -1 unnamed_device 24.0 MiB 0.08 866 16299 6958 9195 146 63.5 MiB 0.10 0.00 1.88129 -97.7109 -1.88129 1.88129 0.34 0.000573807 0.000535131 0.0384883 0.0358947 -1 -1 -1 -1 42 1631 39 6.95648e+06 130281 744469. 2576.02 1.15 0.166265 0.146237 27202 183097 -1 1355 16 747 747 71025 18381 1.44933 1.44933 -95.5906 -1.44933 0 0 949917. 3286.91 0.04 0.05 0.15 -1 -1 0.04 0.0188154 0.0166379 50 2 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml adder_048bits.v common 3.38 vpr 64.11 MiB -1 -1 0.18 17836 1 0.03 -1 -1 30336 -1 -1 14 97 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65644 97 49 342 343 1 243 160 17 17 289 -1 unnamed_device 24.3 MiB 0.11 1814 29672 12289 17319 64 64.1 MiB 0.18 0.00 2.41762 -170.667 -2.41762 2.41762 0.33 0.000869886 0.000815239 0.0621123 0.058191 -1 -1 -1 -1 48 2741 23 6.95648e+06 202660 865456. 2994.66 1.22 0.238027 0.213864 28354 207349 -1 2562 20 1103 1103 131768 29384 1.49993 1.49993 -156.421 -1.49993 0 0 1.05005e+06 3633.38 0.04 0.09 0.17 -1 -1 0.04 0.0335475 0.0300032 74 2 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml adder_064bits.v common 4.45 vpr 64.69 MiB -1 -1 0.17 18212 1 0.04 -1 -1 30612 -1 -1 19 129 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 66244 129 65 454 455 1 324 213 17 17 289 -1 unnamed_device 24.9 MiB 0.13 2229 45933 16115 26949 2869 64.7 MiB 0.29 0.01 2.95395 -241.167 -2.95395 2.95395 0.36 0.00119826 0.00112587 0.0975278 0.0913911 -1 -1 -1 -1 54 3485 30 6.95648e+06 275038 949917. 3286.91 1.96 0.36519 0.331033 29506 232905 -1 3162 19 1362 1362 139995 32227 1.85383 1.85383 -217.338 -1.85383 0 0 1.17392e+06 4061.99 0.05 0.11 0.20 -1 -1 0.05 0.044842 0.0404847 98 2 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml adder_004bits.v common 1.79 vpr 62.32 MiB -1 -1 0.14 17252 1 0.03 -1 -1 29912 -1 -1 1 9 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63812 9 5 34 35 1 17 15 17 17 289 -1 unnamed_device 23.6 MiB 0.01 59 141 41 96 4 62.3 MiB 0.01 0.00 0.712895 -10.0692 -0.712895 0.712895 0.33 8.8152e-05 7.9888e-05 0.00100101 0.000908838 -1 -1 -1 -1 18 92 6 6.99608e+06 14715.7 376052. 1301.22 0.25 0.00381367 0.00342478 22882 88689 -1 92 5 35 35 1411 502 0.74674 0.74674 -9.47336 -0.74674 0 0 470940. 1629.55 0.02 0.01 0.08 -1 -1 0.02 0.00244106 0.00223488 7 2 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml adder_005bits.v common 1.95 vpr 62.66 MiB -1 -1 0.14 17260 1 0.03 -1 -1 30116 -1 -1 1 11 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64160 11 6 41 42 1 20 18 17 17 289 -1 unnamed_device 24.0 MiB 0.01 61 409 93 302 14 62.7 MiB 0.01 0.00 0.837432 -13.0771 -0.837432 0.837432 0.34 0.000102121 9.2829e-05 0.00217432 0.00197637 -1 -1 -1 -1 22 165 10 6.99608e+06 14715.7 443629. 1535.05 0.36 0.0173065 0.01441 23458 102101 -1 145 10 68 68 3340 1098 0.837432 0.837432 -14.0795 -0.837432 0 0 531479. 1839.03 0.02 0.01 0.09 -1 -1 0.02 0.00402569 0.00362675 8 2 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml adder_006bits.v common 1.86 vpr 62.51 MiB -1 -1 0.11 17152 1 0.02 -1 -1 29900 -1 -1 2 13 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64012 13 7 48 49 1 26 22 17 17 289 -1 unnamed_device 24.0 MiB 0.01 88 442 89 343 10 62.5 MiB 0.02 0.00 0.802432 -14.6238 -0.802432 0.802432 0.33 0.000416283 0.000382138 0.00349914 0.00321787 -1 -1 -1 -1 22 196 8 6.99608e+06 29431.4 443629. 1535.05 0.33 0.0164598 0.0139839 23458 102101 -1 190 12 106 106 6171 2132 0.793379 0.793379 -15.9608 -0.793379 0 0 531479. 1839.03 0.02 0.01 0.09 -1 -1 0.02 0.00429213 0.00376112 10 2 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml adder_007bits.v common 1.96 vpr 62.73 MiB -1 -1 0.15 17312 1 0.02 -1 -1 30052 -1 -1 2 15 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64240 15 8 55 56 1 32 25 17 17 289 -1 unnamed_device 24.3 MiB 0.01 96 709 205 450 54 62.7 MiB 0.01 0.00 0.859432 -17.7199 -0.859432 0.859432 0.34 0.000140372 0.000128807 0.00323931 0.00297881 -1 -1 -1 -1 26 228 25 6.99608e+06 29431.4 503264. 1741.40 0.37 0.0216731 0.0182166 24322 120374 -1 198 12 131 131 4752 1834 0.927732 0.927732 -17.9149 -0.927732 0 0 618332. 2139.56 0.03 0.01 0.10 -1 -1 0.03 0.00468069 0.0040988 11 2 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml adder_008bits.v common 2.08 vpr 62.63 MiB -1 -1 0.15 17184 1 0.02 -1 -1 30084 -1 -1 2 17 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64132 17 9 62 63 1 38 28 17 17 289 -1 unnamed_device 24.1 MiB 0.02 260 952 218 609 125 62.6 MiB 0.01 0.00 0.824432 -22.1673 -0.824432 0.824432 0.34 0.000156946 0.000144715 0.00406462 0.00375358 -1 -1 -1 -1 32 430 9 6.99608e+06 29431.4 586450. 2029.24 0.41 0.020757 0.0176249 25474 144626 -1 421 9 116 116 11800 2672 0.87204 0.87204 -23.6355 -0.87204 0 0 744469. 2576.02 0.03 0.01 0.12 -1 -1 0.03 0.00440788 0.00390181 13 2 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml adder_009bits.v common 2.12 vpr 62.43 MiB -1 -1 0.16 17352 1 0.02 -1 -1 30028 -1 -1 4 19 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63932 19 10 69 70 1 43 33 17 17 289 -1 unnamed_device 23.9 MiB 0.02 137 2477 763 1101 613 62.4 MiB 0.02 0.00 0.846432 -21.9393 -0.846432 0.846432 0.38 0.000171382 0.000154709 0.00923131 0.00850779 -1 -1 -1 -1 28 370 18 6.99608e+06 58862.7 531479. 1839.03 0.39 0.0301008 0.0257969 24610 126494 -1 287 13 210 210 11679 4198 1.18933 1.18933 -23.5118 -1.18933 0 0 648988. 2245.63 0.03 0.02 0.11 -1 -1 0.03 0.00579286 0.00501637 15 2 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml adder_010bits.v common 2.11 vpr 62.54 MiB -1 -1 0.15 17360 1 0.02 -1 -1 30024 -1 -1 4 21 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64040 21 11 76 77 1 49 36 17 17 289 -1 unnamed_device 24.1 MiB 0.02 344 1393 312 877 204 62.5 MiB 0.02 0.00 0.857432 -28.7171 -0.857432 0.857432 0.36 0.000195901 0.000181275 0.00523369 0.00484884 -1 -1 -1 -1 26 610 16 6.99608e+06 58862.7 503264. 1741.40 0.40 0.0286559 0.0243167 24322 120374 -1 590 18 316 316 34564 7565 0.938732 0.938732 -31.4793 -0.938732 0 0 618332. 2139.56 0.03 0.02 0.10 -1 -1 0.03 0.00771615 0.00659605 17 2 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml adder_011bits.v common 2.14 vpr 62.64 MiB -1 -1 0.16 17396 1 0.03 -1 -1 30004 -1 -1 4 23 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64144 23 12 83 84 1 54 39 17 17 289 -1 unnamed_device 24.1 MiB 0.02 174 2481 746 1270 465 62.6 MiB 0.02 0.00 0.879432 -26.6557 -0.879432 0.879432 0.33 0.00021024 0.000194311 0.00857848 0.00793516 -1 -1 -1 -1 32 441 18 6.99608e+06 58862.7 586450. 2029.24 0.46 0.0332947 0.0284674 25474 144626 -1 372 12 266 266 17399 5603 0.993732 0.993732 -28.012 -0.993732 0 0 744469. 2576.02 0.03 0.02 0.12 -1 -1 0.03 0.00635172 0.00551661 18 2 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml adder_012bits.v common 2.13 vpr 62.57 MiB -1 -1 0.16 17196 1 0.02 -1 -1 30032 -1 -1 5 25 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64072 25 13 90 91 1 60 43 17 17 289 -1 unnamed_device 23.9 MiB 0.03 255 1618 324 1252 42 62.6 MiB 0.02 0.00 0.890432 -31.1278 -0.890432 0.890432 0.34 0.000224588 0.000208394 0.00581343 0.00537445 -1 -1 -1 -1 30 526 13 6.99608e+06 73578.4 556674. 1926.21 0.42 0.0313334 0.0268842 25186 138497 -1 496 10 236 236 16715 4353 0.99734 0.99734 -33.2379 -0.99734 0 0 706193. 2443.58 0.03 0.02 0.11 -1 -1 0.03 0.00608414 0.00533822 20 2 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml adder_013bits.v common 2.17 vpr 62.79 MiB -1 -1 0.16 17396 1 0.02 -1 -1 29940 -1 -1 5 27 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64292 27 14 97 98 1 66 46 17 17 289 -1 unnamed_device 24.2 MiB 0.02 266 2916 905 1615 396 62.8 MiB 0.02 0.00 0.912432 -33.5679 -0.912432 0.912432 0.34 0.000239142 0.000221307 0.00926954 0.00857757 -1 -1 -1 -1 30 707 44 6.99608e+06 73578.4 556674. 1926.21 0.45 0.0465126 0.039743 25186 138497 -1 505 16 384 384 27767 7373 1.11903 1.11903 -36.5295 -1.11903 0 0 706193. 2443.58 0.03 0.02 0.11 -1 -1 0.03 0.0086096 0.00746295 21 2 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml adder_014bits.v common 2.23 vpr 62.61 MiB -1 -1 0.16 17404 1 0.02 -1 -1 29992 -1 -1 5 29 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64116 29 15 104 105 1 72 49 17 17 289 -1 unnamed_device 23.9 MiB 0.03 328 2541 534 1971 36 62.6 MiB 0.02 0.00 0.923432 -36.8485 -0.923432 0.923432 0.34 0.000253876 0.00023465 0.00829029 0.00765966 -1 -1 -1 -1 28 878 26 6.99608e+06 73578.4 531479. 1839.03 0.49 0.0409257 0.0350827 24610 126494 -1 696 17 421 421 38143 10277 1.27733 1.27733 -43.7687 -1.27733 0 0 648988. 2245.63 0.03 0.03 0.10 -1 -1 0.03 0.0099582 0.00858435 23 2 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml adder_015bits.v common 2.27 vpr 62.73 MiB -1 -1 0.14 17584 1 0.02 -1 -1 30304 -1 -1 5 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64232 31 16 111 112 1 78 52 17 17 289 -1 unnamed_device 24.0 MiB 0.03 331 4514 1860 2555 99 62.7 MiB 0.03 0.00 1.29476 -39.8517 -1.29476 1.29476 0.33 0.000271418 0.000251586 0.0135538 0.0125405 -1 -1 -1 -1 30 845 48 6.99608e+06 73578.4 556674. 1926.21 0.52 0.0569387 0.0488876 25186 138497 -1 616 19 462 462 34517 8954 1.11703 1.11703 -42.4939 -1.11703 0 0 706193. 2443.58 0.03 0.03 0.12 -1 -1 0.03 0.0108951 0.00939784 24 2 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml adder_016bits.v common 2.18 vpr 62.88 MiB -1 -1 0.09 17568 1 0.02 -1 -1 30068 -1 -1 5 33 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64384 33 17 118 119 1 81 55 17 17 289 -1 unnamed_device 24.1 MiB 0.03 328 4735 1886 2806 43 62.9 MiB 0.04 0.00 1.31676 -42.6858 -1.31676 1.31676 0.33 0.000291739 0.000270454 0.0141016 0.0130776 -1 -1 -1 -1 30 805 33 6.99608e+06 73578.4 556674. 1926.21 0.49 0.053817 0.046524 25186 138497 -1 641 16 399 399 31520 8272 1.15003 1.15003 -44.2826 -1.15003 0 0 706193. 2443.58 0.03 0.03 0.11 -1 -1 0.03 0.0101561 0.00881561 25 2 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml adder_018bits.v common 2.07 vpr 62.99 MiB -1 -1 0.13 17664 1 0.03 -1 -1 30056 -1 -1 5 37 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64500 37 19 132 133 1 87 61 17 17 289 -1 unnamed_device 24.3 MiB 0.03 364 6541 2695 3784 62 63.0 MiB 0.02 0.00 1.33876 -49.2921 -1.33876 1.33876 0.26 0.000154524 0.000136787 0.00893174 0.00815638 -1 -1 -1 -1 32 939 42 6.99608e+06 73578.4 586450. 2029.24 0.51 0.05855 0.049823 25474 144626 -1 693 12 368 368 26349 7167 1.17203 1.17203 -49.9105 -1.17203 0 0 744469. 2576.02 0.03 0.03 0.12 -1 -1 0.03 0.00929189 0.00813969 28 2 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml adder_020bits.v common 2.35 vpr 62.70 MiB -1 -1 0.16 17492 1 0.02 -1 -1 30308 -1 -1 5 41 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64208 41 21 146 147 1 94 67 17 17 289 -1 unnamed_device 23.7 MiB 0.03 407 6867 2751 4056 60 62.7 MiB 0.05 0.00 1.34976 -54.4321 -1.34976 1.34976 0.33 0.000360265 0.000334878 0.0193038 0.0179451 -1 -1 -1 -1 32 961 35 6.99608e+06 73578.4 586450. 2029.24 0.57 0.0697677 0.0606438 25474 144626 -1 756 15 428 428 30944 8363 1.24903 1.24903 -58.4693 -1.24903 0 0 744469. 2576.02 0.04 0.03 0.12 -1 -1 0.04 0.0117671 0.0102516 31 2 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml adder_022bits.v common 2.27 vpr 62.82 MiB -1 -1 0.16 17528 1 0.03 -1 -1 30348 -1 -1 6 45 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64332 45 23 160 161 1 107 74 17 17 289 -1 unnamed_device 23.7 MiB 0.04 530 7514 3084 4380 50 62.8 MiB 0.05 0.00 1.37176 -61.8029 -1.37176 1.37176 0.33 0.000390883 0.000363367 0.0200903 0.0186905 -1 -1 -1 -1 30 1126 15 6.99608e+06 88294.1 556674. 1926.21 0.48 0.0628619 0.0552343 25186 138497 -1 855 18 558 558 40666 10320 1.16968 1.16968 -63.7857 -1.16968 0 0 706193. 2443.58 0.03 0.04 0.11 -1 -1 0.03 0.014469 0.0126338 34 2 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml adder_024bits.v common 2.94 vpr 63.00 MiB -1 -1 0.14 17580 1 0.02 -1 -1 30244 -1 -1 8 49 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64512 49 25 174 175 1 118 82 17 17 289 -1 unnamed_device 23.8 MiB 0.04 521 10228 4171 5954 103 63.0 MiB 0.07 0.00 1.39376 -67.8066 -1.39376 1.39376 0.33 0.000422838 0.000393319 0.0255703 0.0237972 -1 -1 -1 -1 34 1390 34 6.99608e+06 117725 618332. 2139.56 1.09 0.117769 0.102435 25762 151098 -1 986 29 736 736 98243 38158 1.36333 1.36333 -70.765 -1.36333 0 0 787024. 2723.27 0.03 0.07 0.12 -1 -1 0.03 0.0224734 0.0194537 38 2 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml adder_028bits.v common 3.07 vpr 63.10 MiB -1 -1 0.16 17624 1 0.03 -1 -1 30008 -1 -1 9 57 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64616 57 29 202 203 1 141 95 17 17 289 -1 unnamed_device 23.7 MiB 0.05 724 11543 4737 6716 90 63.1 MiB 0.07 0.00 1.44876 -82.7694 -1.44876 1.44876 0.34 0.000487581 0.000453293 0.0278211 0.0258836 -1 -1 -1 -1 38 1462 37 6.99608e+06 132441 678818. 2348.85 1.07 0.136751 0.119606 26626 170182 -1 1129 17 624 624 44907 12336 1.24188 1.24188 -80.687 -1.24188 0 0 902133. 3121.57 0.03 0.04 0.14 -1 -1 0.03 0.0169488 0.0148993 44 2 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml adder_032bits.v common 3.01 vpr 63.09 MiB -1 -1 0.10 17544 1 0.03 -1 -1 30048 -1 -1 9 65 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64608 65 33 230 231 1 162 107 17 17 289 -1 unnamed_device 23.7 MiB 0.05 873 16299 6945 9215 139 63.1 MiB 0.10 0.00 1.85309 -97.7499 -1.85309 1.85309 0.34 0.000588436 0.000549662 0.0383991 0.0358314 -1 -1 -1 -1 40 1590 25 6.99608e+06 132441 706193. 2443.58 1.10 0.154029 0.135738 26914 176310 -1 1430 16 781 781 64746 16342 1.32403 1.32403 -95.1334 -1.32403 0 0 926341. 3205.33 0.04 0.05 0.14 -1 -1 0.04 0.0186641 0.0164658 50 2 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml adder_048bits.v common 3.65 vpr 63.71 MiB -1 -1 0.17 17844 1 0.03 -1 -1 30352 -1 -1 14 97 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65236 97 49 342 343 1 243 160 17 17 289 -1 unnamed_device 24.0 MiB 0.08 1811 29672 12269 17337 66 63.7 MiB 0.18 0.00 2.38942 -170.114 -2.38942 2.38942 0.33 0.000881923 0.00082713 0.0624841 0.0585536 -1 -1 -1 -1 44 2886 50 6.99608e+06 206020 787024. 2723.27 1.45 0.277812 0.249067 27778 195446 -1 2550 19 1048 1048 107084 28330 1.70033 1.70033 -166.464 -1.70033 0 0 997811. 3452.63 0.04 0.08 0.16 -1 -1 0.04 0.032219 0.0288443 74 2 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml adder_064bits.v common 4.33 vpr 64.00 MiB -1 -1 0.22 18124 1 0.04 -1 -1 30668 -1 -1 19 129 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65536 129 65 454 455 1 324 213 17 17 289 -1 unnamed_device 24.8 MiB 0.09 2249 45933 16327 26970 2636 64.0 MiB 0.27 0.01 2.92575 -237.867 -2.92575 2.92575 0.33 0.00120023 0.00112835 0.0902407 0.0848321 -1 -1 -1 -1 48 3564 45 6.99608e+06 279598 865456. 2994.66 1.93 0.385981 0.349472 28354 207349 -1 3147 13 1131 1131 98551 21708 1.67588 1.67588 -208.648 -1.67588 0 0 1.05005e+06 3633.38 0.04 0.09 0.17 -1 -1 0.04 0.0333912 0.0303126 98 2 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_004bits.v common 1.87 vpr 61.76 MiB -1 -1 0.13 17292 2 0.06 -1 -1 31964 -1 -1 1 9 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63244 9 5 28 33 1 16 15 17 17 289 -1 unnamed_device 23.0 MiB 0.01 54 141 47 92 2 61.8 MiB 0.00 0.00 0.883748 -10.0813 -0.883748 0.883748 0.33 8.5414e-05 7.7314e-05 0.000966256 0.000875122 -1 -1 -1 -1 20 116 6 6.79088e+06 13472 414966. 1435.87 0.29 0.0100954 0.00839297 22510 95286 -1 96 7 35 35 1420 501 0.883748 0.883748 -9.8435 -0.883748 0 0 503264. 1741.40 0.02 0.01 0.08 -1 -1 0.02 0.00269658 0.00243975 8 6 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_005bits.v common 1.90 vpr 61.89 MiB -1 -1 0.14 17340 2 0.07 -1 -1 31884 -1 -1 2 11 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63376 11 6 34 40 1 23 19 17 17 289 -1 unnamed_device 23.2 MiB 0.01 78 394 86 293 15 61.9 MiB 0.01 0.00 1.02368 -13.4328 -1.02368 1.02368 0.36 0.000106267 9.6689e-05 0.00206803 0.0018958 -1 -1 -1 -1 22 194 10 6.79088e+06 26944 443629. 1535.05 0.32 0.0137002 0.0115006 22798 101617 -1 190 9 83 96 4150 1453 1.02368 1.02368 -14.6764 -1.02368 0 0 531479. 1839.03 0.03 0.01 0.09 -1 -1 0.03 0.00336983 0.00298904 10 7 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_006bits.v common 1.81 vpr 61.99 MiB -1 -1 0.15 17184 3 0.06 -1 -1 31848 -1 -1 2 13 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63476 13 7 41 48 1 30 22 17 17 289 -1 unnamed_device 23.3 MiB 0.01 103 562 132 416 14 62.0 MiB 0.01 0.00 1.14898 -15.8855 -1.14898 1.14898 0.33 5.793e-05 5.1492e-05 0.00140278 0.00125839 -1 -1 -1 -1 22 254 12 6.79088e+06 26944 443629. 1535.05 0.33 0.0182156 0.0151027 22798 101617 -1 234 12 97 105 6113 2065 1.14898 1.14898 -17.5434 -1.14898 0 0 531479. 1839.03 0.02 0.01 0.09 -1 -1 0.02 0.00432033 0.00378435 11 9 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_007bits.v common 2.04 vpr 62.02 MiB -1 -1 0.15 17292 3 0.05 -1 -1 31872 -1 -1 2 15 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63512 15 8 47 55 1 35 25 17 17 289 -1 unnamed_device 23.6 MiB 0.04 109 1285 395 736 154 62.0 MiB 0.01 0.00 1.27433 -19.2894 -1.27433 1.27433 0.34 0.000142197 0.0001303 0.00559248 0.00513681 -1 -1 -1 -1 26 347 17 6.79088e+06 26944 503264. 1741.40 0.37 0.0227498 0.0192919 23662 119890 -1 248 14 147 157 5953 2292 1.27433 1.27433 -20.5245 -1.27433 0 0 618332. 2139.56 0.03 0.01 0.10 -1 -1 0.03 0.00522063 0.00452381 13 10 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_008bits.v common 2.16 vpr 61.95 MiB -1 -1 0.16 17260 3 0.06 -1 -1 31924 -1 -1 4 17 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63432 17 9 56 65 1 42 30 17 17 289 -1 unnamed_device 23.5 MiB 0.06 297 1272 281 862 129 61.9 MiB 0.02 0.00 1.56413 -26.212 -1.56413 1.56413 0.34 0.000175567 0.00016209 0.00553938 0.00510909 -1 -1 -1 -1 26 505 11 6.79088e+06 53888 503264. 1741.40 0.36 0.0254124 0.0215936 23662 119890 -1 454 9 113 140 9091 2260 1.31353 1.31353 -26.0895 -1.31353 0 0 618332. 2139.56 0.03 0.01 0.10 -1 -1 0.03 0.00473594 0.00420527 17 14 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_009bits.v common 2.16 vpr 61.99 MiB -1 -1 0.15 17304 4 0.06 -1 -1 31992 -1 -1 3 19 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63476 19 10 60 70 1 46 32 17 17 289 -1 unnamed_device 23.5 MiB 0.07 157 2582 733 1373 476 62.0 MiB 0.02 0.00 1.65028 -26.9205 -1.65028 1.65028 0.34 0.000185515 0.000170984 0.0102122 0.00942314 -1 -1 -1 -1 28 440 24 6.79088e+06 40416 531479. 1839.03 0.40 0.0336774 0.0287458 23950 126010 -1 341 14 189 208 10515 3869 1.68943 1.68943 -27.6328 -1.68943 0 0 648988. 2245.63 0.03 0.02 0.11 -1 -1 0.03 0.00634766 0.00548015 17 13 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_010bits.v common 2.09 vpr 62.10 MiB -1 -1 0.16 17224 4 0.06 -1 -1 31688 -1 -1 4 21 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63592 21 11 69 80 1 54 36 17 17 289 -1 unnamed_device 23.6 MiB 0.06 276 1275 269 996 10 62.1 MiB 0.01 0.00 1.56413 -30.7636 -1.56413 1.56413 0.33 0.000211308 0.000195146 0.00522765 0.00483659 -1 -1 -1 -1 22 697 22 6.79088e+06 53888 443629. 1535.05 0.40 0.0360258 0.0302982 22798 101617 -1 574 14 232 281 20802 5741 1.51379 1.51379 -32.6549 -1.51379 0 0 531479. 1839.03 0.02 0.02 0.09 -1 -1 0.02 0.00716795 0.00620991 21 17 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_011bits.v common 1.98 vpr 62.01 MiB -1 -1 0.17 17236 5 0.06 -1 -1 31940 -1 -1 4 23 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63496 23 12 76 88 1 60 39 17 17 289 -1 unnamed_device 23.5 MiB 0.06 263 1359 262 1083 14 62.0 MiB 0.02 0.00 1.90432 -34.8738 -1.90432 1.90432 0.33 0.000227626 0.0002106 0.00540807 0.00501505 -1 -1 -1 -1 26 598 16 6.79088e+06 53888 503264. 1741.40 0.38 0.0309708 0.026345 23662 119890 -1 529 13 222 264 13917 4200 1.85054 1.85054 -36.679 -1.85054 0 0 618332. 2139.56 0.03 0.02 0.10 -1 -1 0.03 0.00719778 0.00628971 23 19 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_012bits.v common 2.14 vpr 62.08 MiB -1 -1 0.16 17296 5 0.06 -1 -1 32124 -1 -1 4 25 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63568 25 13 83 96 1 65 42 17 17 289 -1 unnamed_device 23.5 MiB 0.10 302 2634 595 2020 19 62.1 MiB 0.02 0.00 1.85398 -39.4801 -1.85398 1.85398 0.33 0.000241404 0.000222109 0.00947024 0.00873055 -1 -1 -1 -1 26 756 25 6.79088e+06 53888 503264. 1741.40 0.42 0.0400931 0.0343115 23662 119890 -1 611 16 260 323 16466 4828 1.76444 1.76444 -40.3833 -1.76444 0 0 618332. 2139.56 0.03 0.02 0.10 -1 -1 0.03 0.00875305 0.00755852 24 21 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_013bits.v common 2.20 vpr 62.27 MiB -1 -1 0.16 17516 5 0.06 -1 -1 31696 -1 -1 5 27 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63764 27 14 91 105 1 70 46 17 17 289 -1 unnamed_device 23.7 MiB 0.08 305 1686 354 1296 36 62.3 MiB 0.02 0.00 2.15497 -44.1132 -2.15497 2.15497 0.33 0.00032784 0.000303874 0.00737664 0.00683614 -1 -1 -1 -1 30 642 13 6.79088e+06 67360 556674. 1926.21 0.41 0.0366048 0.0314193 24526 138013 -1 572 14 257 360 19230 5544 1.89323 1.89323 -42.6809 -1.89323 0 0 706193. 2443.58 0.03 0.04 0.11 -1 -1 0.03 0.0153646 0.0131766 28 24 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_014bits.v common 2.32 vpr 62.30 MiB -1 -1 0.17 17720 6 0.06 -1 -1 32036 -1 -1 5 29 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63792 29 15 95 110 1 77 49 17 17 289 -1 unnamed_device 23.7 MiB 0.07 324 3342 734 2532 76 62.3 MiB 0.03 0.00 2.42352 -48.7848 -2.42352 2.42352 0.34 0.000283292 0.000262432 0.0115124 0.0106785 -1 -1 -1 -1 26 904 32 6.79088e+06 67360 503264. 1741.40 0.48 0.0553618 0.0473417 23662 119890 -1 757 13 322 384 23522 6789 2.15502 2.15502 -49.648 -2.15502 0 0 618332. 2139.56 0.03 0.02 0.10 -1 -1 0.03 0.00885209 0.00771765 29 23 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_015bits.v common 2.30 vpr 62.27 MiB -1 -1 0.17 17660 6 0.06 -1 -1 32064 -1 -1 5 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63764 31 16 104 120 1 81 52 17 17 289 -1 unnamed_device 23.5 MiB 0.08 317 3641 1047 1889 705 62.3 MiB 0.03 0.00 2.28032 -49.0709 -2.28032 2.28032 0.33 0.000311764 0.00028965 0.0128153 0.0118974 -1 -1 -1 -1 26 896 44 6.79088e+06 67360 503264. 1741.40 0.47 0.0611187 0.0522955 23662 119890 -1 675 11 298 344 27538 10777 2.15502 2.15502 -50.3725 -2.15502 0 0 618332. 2139.56 0.03 0.02 0.10 -1 -1 0.03 0.00864617 0.00757546 31 27 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_016bits.v common 2.48 vpr 62.32 MiB -1 -1 0.18 17592 7 0.06 -1 -1 32008 -1 -1 6 33 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63820 33 17 112 129 1 84 56 17 17 289 -1 unnamed_device 23.6 MiB 0.08 457 2945 706 2143 96 62.3 MiB 0.03 0.00 2.65628 -60.2407 -2.65628 2.65628 0.33 0.000333352 0.000308992 0.0102584 0.00951554 -1 -1 -1 -1 26 985 18 6.79088e+06 80832 503264. 1741.40 0.46 0.0482989 0.0416039 23662 119890 -1 884 27 360 465 59842 33846 2.35534 2.35534 -59.3742 -2.35534 0 0 618332. 2139.56 0.03 0.05 0.10 -1 -1 0.03 0.0169438 0.0145148 33 30 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_018bits.v common 2.73 vpr 62.16 MiB -1 -1 0.17 17536 7 0.06 -1 -1 31940 -1 -1 8 37 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63652 37 19 127 146 1 96 64 17 17 289 -1 unnamed_device 23.3 MiB 0.17 372 3620 797 2457 366 62.2 MiB 0.03 0.00 2.98184 -67.3807 -2.98184 2.98184 0.33 0.000368639 0.000342637 0.0117319 0.0108909 -1 -1 -1 -1 30 826 19 6.79088e+06 107776 556674. 1926.21 0.44 0.0543666 0.0470508 24526 138013 -1 708 9 322 399 17487 5742 2.85654 2.85654 -65.312 -2.85654 0 0 706193. 2443.58 0.03 0.02 0.11 -1 -1 0.03 0.00897272 0.00794271 39 35 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_020bits.v common 2.51 vpr 62.41 MiB -1 -1 0.18 17712 8 0.09 -1 -1 31984 -1 -1 9 41 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63912 41 21 139 160 1 106 71 17 17 289 -1 unnamed_device 23.3 MiB 0.12 468 7517 1635 5720 162 62.4 MiB 0.05 0.00 2.82083 -73.4935 -2.82083 2.82083 0.33 0.000396816 0.000367611 0.0218575 0.0202429 -1 -1 -1 -1 28 1210 23 6.79088e+06 121248 531479. 1839.03 0.51 0.0709664 0.0619985 23950 126010 -1 993 14 403 544 32469 9290 2.64519 2.64519 -75.7719 -2.64519 0 0 648988. 2245.63 0.03 0.03 0.10 -1 -1 0.03 0.0126456 0.0111096 41 37 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_022bits.v common 2.55 vpr 62.49 MiB -1 -1 0.18 17636 9 0.07 -1 -1 31924 -1 -1 9 45 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63988 45 23 153 176 1 119 77 17 17 289 -1 unnamed_device 23.3 MiB 0.15 477 7086 2063 3975 1048 62.5 MiB 0.05 0.00 3.57268 -91.263 -3.57268 3.57268 0.36 0.000445506 0.0004138 0.0204716 0.0190194 -1 -1 -1 -1 32 1120 12 6.79088e+06 121248 586450. 2029.24 0.47 0.0666694 0.0586499 24814 144142 -1 908 9 364 474 24629 7210 3.27175 3.27175 -87.1614 -3.27175 0 0 744469. 2576.02 0.03 0.03 0.12 -1 -1 0.03 0.0105039 0.00938562 45 41 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_024bits.v common 2.58 vpr 62.59 MiB -1 -1 0.17 17684 10 0.08 -1 -1 31972 -1 -1 10 49 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64088 49 25 166 191 1 129 84 17 17 289 -1 unnamed_device 23.3 MiB 0.19 888 10149 2418 6579 1152 62.6 MiB 0.06 0.00 3.52584 -103.921 -3.52584 3.52584 0.33 0.000474217 0.000440445 0.028013 0.0260292 -1 -1 -1 -1 26 1697 15 6.79088e+06 134720 503264. 1741.40 0.43 0.0796154 0.0704286 23662 119890 -1 1585 14 501 640 47109 11368 3.40054 3.40054 -105.083 -3.40054 0 0 618332. 2139.56 0.03 0.04 0.10 -1 -1 0.03 0.014678 0.0129495 49 44 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_028bits.v common 2.81 vpr 62.74 MiB -1 -1 0.20 17628 11 0.08 -1 -1 32024 -1 -1 12 57 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64244 57 29 198 227 1 154 98 17 17 289 -1 unnamed_device 23.3 MiB 0.23 831 11348 3274 6773 1301 62.7 MiB 0.07 0.00 4.16358 -130.313 -4.16358 4.16358 0.33 0.000571622 0.000532297 0.0308967 0.0287436 -1 -1 -1 -1 26 1812 27 6.79088e+06 161664 503264. 1741.40 0.54 0.104091 0.0917454 23662 119890 -1 1543 14 611 793 48973 13212 3.94874 3.94874 -129.41 -3.94874 0 0 618332. 2139.56 0.03 0.04 0.10 -1 -1 0.03 0.0176699 0.0155753 57 56 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_032bits.v common 2.86 vpr 62.93 MiB -1 -1 0.20 17752 13 0.07 -1 -1 32144 -1 -1 11 65 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64436 65 33 224 257 1 172 109 17 17 289 -1 unnamed_device 23.4 MiB 0.21 818 8689 1747 6820 122 62.9 MiB 0.06 0.00 4.75448 -151.053 -4.75448 4.75448 0.33 0.000651059 0.000607364 0.0238685 0.0222369 -1 -1 -1 -1 30 1902 27 6.79088e+06 148192 556674. 1926.21 0.57 0.106315 0.0936834 24526 138013 -1 1542 15 621 853 49087 13080 4.45354 4.45354 -150.197 -4.45354 0 0 706193. 2443.58 0.03 0.05 0.11 -1 -1 0.03 0.0208553 0.018485 67 62 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_048bits.v common 3.47 vpr 63.47 MiB -1 -1 0.26 18060 19 0.10 -1 -1 32316 -1 -1 20 97 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64996 97 49 340 389 1 268 166 17 17 289 -1 unnamed_device 23.8 MiB 0.35 1595 32542 9530 19534 3478 63.5 MiB 0.17 0.00 6.87725 -295.573 -6.87725 6.87725 0.33 0.000987348 0.000922056 0.0729955 0.0681292 -1 -1 -1 -1 32 3045 22 6.79088e+06 269440 586450. 2029.24 0.63 0.194659 0.175474 24814 144142 -1 2743 18 968 1302 86378 21246 6.58745 6.58745 -293.066 -6.58745 0 0 744469. 2576.02 0.03 0.07 0.12 -1 -1 0.03 0.0363793 0.0325585 103 98 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_064bits.v common 4.24 vpr 64.23 MiB -1 -1 0.16 18356 26 0.11 -1 -1 32464 -1 -1 24 129 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65776 129 65 453 518 1 344 218 17 17 289 -1 unnamed_device 24.5 MiB 0.57 1971 49998 15091 29566 5341 64.2 MiB 0.25 0.00 10.4784 -507.086 -10.4784 10.4784 0.33 0.00132893 0.00124528 0.106245 0.0993901 -1 -1 -1 -1 40 3524 26 6.79088e+06 323328 706193. 2443.58 1.34 0.392274 0.354177 26254 175826 -1 3188 13 1107 1495 97622 26410 9.85193 9.85193 -491.088 -9.85193 0 0 926341. 3205.33 0.04 0.11 0.14 -1 -1 0.04 0.0540559 0.0490496 131 131 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml adder_004bits.v common 1.82 vpr 62.44 MiB -1 -1 0.10 17380 1 0.02 -1 -1 30064 -1 -1 2 9 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63936 9 5 34 35 1 20 16 17 17 289 -1 unnamed_device 23.6 MiB 0.04 79 296 89 204 3 62.4 MiB 0.01 0.00 0.789073 -10.6008 -0.789073 0.789073 0.34 8.7674e-05 7.9525e-05 0.00159518 0.00144518 -1 -1 -1 -1 20 151 10 6.87369e+06 27947.7 414966. 1435.87 0.28 0.00519648 0.00462685 23170 95770 -1 130 9 79 79 4463 1413 0.789073 0.789073 -11.1729 -0.789073 0 0 503264. 1741.40 0.02 0.01 0.08 -1 -1 0.02 0.00359292 0.00318991 10 2 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml adder_005bits.v common 1.97 vpr 62.37 MiB -1 -1 0.08 17400 1 0.02 -1 -1 29904 -1 -1 3 11 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63864 11 6 41 42 1 27 20 17 17 289 -1 unnamed_device 23.6 MiB 0.04 163 695 168 481 46 62.4 MiB 0.01 0.00 0.811073 -14.7125 -0.811073 0.811073 0.40 9.2581e-05 8.1117e-05 0.00258582 0.00229127 -1 -1 -1 -1 20 310 13 6.87369e+06 41921.5 414966. 1435.87 0.31 0.00683924 0.00597313 23170 95770 -1 289 11 141 141 13137 3115 1.05067 1.05067 -17.0701 -1.05067 0 0 503264. 1741.40 0.02 0.01 0.08 -1 -1 0.02 0.00365303 0.00321754 13 2 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml adder_006bits.v common 2.34 vpr 62.30 MiB -1 -1 0.13 17340 1 0.03 -1 -1 29940 -1 -1 4 13 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63796 13 7 48 49 1 33 24 17 17 289 -1 unnamed_device 23.8 MiB 0.06 100 806 191 526 89 62.3 MiB 0.01 0.00 0.833073 -15.3512 -0.833073 0.833073 0.34 0.000122088 0.000111989 0.00334155 0.00306422 -1 -1 -1 -1 36 229 22 6.87369e+06 55895.4 648988. 2245.63 0.63 0.0342161 0.0282667 26050 158493 -1 180 17 218 218 8477 3065 0.958373 0.958373 -15.1722 -0.958373 0 0 828058. 2865.25 0.05 0.03 0.11 -1 -1 0.05 0.00917581 0.00770806 15 2 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml adder_007bits.v common 2.03 vpr 62.57 MiB -1 -1 0.14 17352 1 0.02 -1 -1 29992 -1 -1 3 15 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64072 15 8 55 56 1 39 26 17 17 289 -1 unnamed_device 24.2 MiB 0.05 134 1128 368 603 157 62.6 MiB 0.01 0.00 1.2044 -18.5156 -1.2044 1.2044 0.35 0.000154596 0.000139466 0.00453151 0.00408993 -1 -1 -1 -1 26 307 17 6.87369e+06 41921.5 503264. 1741.40 0.35 0.021363 0.0179662 24322 120374 -1 267 14 146 146 6496 2236 0.989373 0.989373 -20.3361 -0.989373 0 0 618332. 2139.56 0.03 0.01 0.10 -1 -1 0.03 0.00517942 0.0045165 16 2 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml adder_008bits.v common 1.99 vpr 62.28 MiB -1 -1 0.08 17312 1 0.02 -1 -1 29984 -1 -1 3 17 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63776 17 9 62 63 1 42 29 17 17 289 -1 unnamed_device 23.8 MiB 0.05 146 1877 632 931 314 62.3 MiB 0.02 0.00 1.2154 -21.3035 -1.2154 1.2154 0.34 0.000157735 0.000145122 0.00722208 0.00664584 -1 -1 -1 -1 26 297 13 6.87369e+06 41921.5 503264. 1741.40 0.37 0.0248125 0.0212051 24322 120374 -1 273 13 150 150 7334 2479 1.00037 1.00037 -22.2134 -1.00037 0 0 618332. 2139.56 0.03 0.01 0.10 -1 -1 0.03 0.00528613 0.0045942 19 2 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml adder_009bits.v common 2.16 vpr 62.50 MiB -1 -1 0.14 17120 1 0.02 -1 -1 30024 -1 -1 3 19 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63996 19 10 69 70 1 45 32 17 17 289 -1 unnamed_device 24.1 MiB 0.07 160 2332 796 1082 454 62.5 MiB 0.02 0.00 1.2264 -24.1787 -1.2264 1.2264 0.34 0.000175241 0.000161634 0.008706 0.00803815 -1 -1 -1 -1 32 327 12 6.87369e+06 41921.5 586450. 2029.24 0.41 0.0280777 0.0241535 25474 144626 -1 286 11 164 164 7398 2391 1.01137 1.01137 -24.7636 -1.01137 0 0 744469. 2576.02 0.04 0.01 0.12 -1 -1 0.04 0.00504681 0.00448936 20 2 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml adder_010bits.v common 2.07 vpr 62.51 MiB -1 -1 0.15 17260 1 0.02 -1 -1 30120 -1 -1 4 21 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64008 21 11 76 77 1 48 36 17 17 289 -1 unnamed_device 24.0 MiB 0.07 175 2101 728 1079 294 62.5 MiB 0.02 0.00 1.2374 -27.2124 -1.2374 1.2374 0.34 0.000193984 0.000179478 0.00761103 0.00704442 -1 -1 -1 -1 30 382 13 6.87369e+06 55895.4 556674. 1926.21 0.41 0.0291491 0.0249416 25186 138497 -1 293 13 196 196 9565 2925 1.01137 1.01137 -26.4753 -1.01137 0 0 706193. 2443.58 0.03 0.01 0.08 -1 -1 0.03 0.00399551 0.00355068 22 2 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml adder_011bits.v common 2.24 vpr 62.55 MiB -1 -1 0.15 17412 1 0.02 -1 -1 30040 -1 -1 5 23 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64052 23 12 83 84 1 53 40 17 17 289 -1 unnamed_device 24.0 MiB 0.05 194 2488 794 1203 491 62.6 MiB 0.02 0.00 1.2484 -30.0694 -1.2484 1.2484 0.33 0.000210963 0.000194687 0.00835745 0.00773003 -1 -1 -1 -1 32 434 17 6.87369e+06 69869.2 586450. 2029.24 0.45 0.0313966 0.026865 25474 144626 -1 373 20 274 274 18397 5227 1.13667 1.13667 -31.3415 -1.13667 0 0 744469. 2576.02 0.03 0.04 0.12 -1 -1 0.03 0.0135594 0.0114399 24 2 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml adder_012bits.v common 2.22 vpr 62.56 MiB -1 -1 0.16 17376 1 0.02 -1 -1 30204 -1 -1 5 25 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64060 25 13 90 91 1 60 43 17 17 289 -1 unnamed_device 24.0 MiB 0.06 241 3493 1152 1593 748 62.6 MiB 0.03 0.00 1.2594 -33.5756 -1.2594 1.2594 0.34 0.00022384 0.000206819 0.0111138 0.0102745 -1 -1 -1 -1 32 501 21 6.87369e+06 69869.2 586450. 2029.24 0.43 0.0379716 0.0326576 25474 144626 -1 425 8 199 199 11182 3603 0.989373 0.989373 -33.3362 -0.989373 0 0 744469. 2576.02 0.03 0.02 0.12 -1 -1 0.03 0.00518953 0.00458893 26 2 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml adder_013bits.v common 2.80 vpr 62.49 MiB -1 -1 0.15 17308 1 0.02 -1 -1 30232 -1 -1 5 27 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63988 27 14 97 98 1 67 46 17 17 289 -1 unnamed_device 23.9 MiB 0.06 240 2998 1051 1663 284 62.5 MiB 0.03 0.00 1.2773 -35.5756 -1.2773 1.2773 0.33 0.000246381 0.00022827 0.00947207 0.00876673 -1 -1 -1 -1 30 618 21 6.87369e+06 69869.2 556674. 1926.21 1.12 0.0733815 0.0616699 25186 138497 -1 480 17 350 350 21752 6218 1.04437 1.04437 -34.6874 -1.04437 0 0 706193. 2443.58 0.03 0.02 0.09 -1 -1 0.03 0.00875841 0.00753696 28 2 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml adder_014bits.v common 2.19 vpr 62.53 MiB -1 -1 0.16 17388 1 0.02 -1 -1 30104 -1 -1 7 29 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64032 29 15 104 105 1 74 51 17 17 289 -1 unnamed_device 23.9 MiB 0.07 310 4093 1402 1938 753 62.5 MiB 0.03 0.00 1.2814 -39.7439 -1.2814 1.2814 0.33 0.000252751 0.00023371 0.0117669 0.0108889 -1 -1 -1 -1 28 763 21 6.87369e+06 97816.9 531479. 1839.03 0.43 0.041926 0.0362437 24610 126494 -1 614 12 343 343 23714 6541 1.12567 1.12567 -40.5186 -1.12567 0 0 648988. 2245.63 0.03 0.02 0.11 -1 -1 0.03 0.00730899 0.00637495 31 2 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml adder_015bits.v common 2.29 vpr 62.38 MiB -1 -1 0.15 17576 1 0.02 -1 -1 30264 -1 -1 6 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63880 31 16 111 112 1 80 53 17 17 289 -1 unnamed_device 23.7 MiB 0.08 337 6389 2578 2834 977 62.4 MiB 0.05 0.00 1.65963 -43.635 -1.65963 1.65963 0.34 0.000271225 0.000250996 0.0184151 0.0170486 -1 -1 -1 -1 32 726 25 6.87369e+06 83843 586450. 2029.24 0.47 0.0547587 0.0475343 25474 144626 -1 583 15 400 400 26645 7674 1.12567 1.12567 -42.064 -1.12567 0 0 744469. 2576.02 0.03 0.03 0.12 -1 -1 0.03 0.00894667 0.007769 32 2 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml adder_016bits.v common 2.23 vpr 62.55 MiB -1 -1 0.16 17600 1 0.02 -1 -1 30052 -1 -1 6 33 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64056 33 17 118 119 1 83 56 17 17 289 -1 unnamed_device 23.9 MiB 0.08 354 5727 2338 3295 94 62.6 MiB 0.04 0.00 1.66373 -46.576 -1.66373 1.66373 0.33 0.00029115 0.000269841 0.0164547 0.0152586 -1 -1 -1 -1 30 765 19 6.87369e+06 83843 556674. 1926.21 0.43 0.0498673 0.043428 25186 138497 -1 646 22 430 430 29960 8573 1.22267 1.22267 -46.6259 -1.22267 0 0 706193. 2443.58 0.03 0.03 0.11 -1 -1 0.03 0.0125804 0.0108044 35 2 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml adder_018bits.v common 2.21 vpr 62.46 MiB -1 -1 0.15 17420 1 0.02 -1 -1 30192 -1 -1 7 37 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63956 37 19 132 133 1 89 63 17 17 289 -1 unnamed_device 23.7 MiB 0.08 390 6188 2490 3601 97 62.5 MiB 0.04 0.00 1.68573 -53.5906 -1.68573 1.68573 0.33 0.000329317 0.000306042 0.0173699 0.0161432 -1 -1 -1 -1 30 851 16 6.87369e+06 97816.9 556674. 1926.21 0.44 0.0537216 0.0467985 25186 138497 -1 693 11 381 381 25789 7299 1.13037 1.13037 -51.5244 -1.13037 0 0 706193. 2443.58 0.03 0.03 0.11 -1 -1 0.03 0.0086009 0.00751161 38 2 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml adder_020bits.v common 2.36 vpr 62.71 MiB -1 -1 0.15 17564 1 0.02 -1 -1 30288 -1 -1 8 41 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64220 41 21 146 147 1 101 70 17 17 289 -1 unnamed_device 23.7 MiB 0.08 447 8134 3300 4657 177 62.7 MiB 0.06 0.00 1.70773 -60.3017 -1.70773 1.70773 0.33 0.00036247 0.000336699 0.0215112 0.0200033 -1 -1 -1 -1 32 937 23 6.87369e+06 111791 586450. 2029.24 0.50 0.0651527 0.0569837 25474 144626 -1 774 21 527 527 36101 10508 1.18067 1.18067 -56.9294 -1.18067 0 0 744469. 2576.02 0.03 0.04 0.12 -1 -1 0.03 0.0145839 0.0125579 42 2 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml adder_022bits.v common 2.78 vpr 62.66 MiB -1 -1 0.17 17644 1 0.03 -1 -1 30472 -1 -1 10 45 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64168 45 23 160 161 1 115 78 17 17 289 -1 unnamed_device 23.6 MiB 0.11 503 9208 3768 5283 157 62.7 MiB 0.06 0.00 1.72973 -67.8771 -1.72973 1.72973 0.33 0.000386869 0.00035906 0.02257 0.0209781 -1 -1 -1 -1 36 1109 22 6.87369e+06 139738 648988. 2245.63 0.82 0.0992719 0.0860563 26050 158493 -1 898 22 643 643 58388 16256 1.24467 1.24467 -62.8028 -1.24467 0 0 828058. 2865.25 0.03 0.05 0.13 -1 -1 0.03 0.0165817 0.0143669 47 2 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml adder_024bits.v common 2.34 vpr 62.91 MiB -1 -1 0.17 17604 1 0.02 -1 -1 30380 -1 -1 9 49 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64424 49 25 174 175 1 124 83 17 17 289 -1 unnamed_device 23.7 MiB 0.09 607 6023 1283 4464 276 62.9 MiB 0.05 0.00 2.11206 -76.1943 -2.11206 2.11206 0.33 0.000426528 0.000396958 0.0153869 0.0143251 -1 -1 -1 -1 32 1299 16 6.87369e+06 125765 586450. 2029.24 0.48 0.0620614 0.0543264 25474 144626 -1 1097 14 609 609 45524 12761 1.34167 1.34167 -75.6214 -1.34167 0 0 744469. 2576.02 0.03 0.04 0.12 -1 -1 0.03 0.0127044 0.0111413 51 2 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml adder_028bits.v common 2.41 vpr 62.80 MiB -1 -1 0.17 17660 1 0.03 -1 -1 30076 -1 -1 11 57 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64304 57 29 202 203 1 142 97 17 17 289 -1 unnamed_device 23.5 MiB 0.09 789 12307 2769 8813 725 62.8 MiB 0.08 0.00 2.15606 -94.5222 -2.15606 2.15606 0.33 0.000492644 0.000458135 0.0286183 0.0266446 -1 -1 -1 -1 32 1559 17 6.87369e+06 153712 586450. 2029.24 0.53 0.0833133 0.0738776 25474 144626 -1 1393 18 688 688 59523 16512 1.49997 1.49997 -95.1329 -1.49997 0 0 744469. 2576.02 0.03 0.05 0.12 -1 -1 0.03 0.0173005 0.0151701 58 2 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml adder_032bits.v common 2.57 vpr 63.14 MiB -1 -1 0.17 17576 1 0.03 -1 -1 30072 -1 -1 12 65 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64652 65 33 230 231 1 165 110 17 17 289 -1 unnamed_device 23.6 MiB 0.11 981 17205 4139 12245 821 63.1 MiB 0.11 0.00 2.56039 -112.802 -2.56039 2.56039 0.34 0.0005709 0.000533122 0.0389788 0.0363756 -1 -1 -1 -1 32 1799 22 6.87369e+06 167686 586450. 2029.24 0.56 0.106634 0.0949936 25474 144626 -1 1617 15 720 720 63562 16203 1.47797 1.47797 -105.078 -1.47797 0 0 744469. 2576.02 0.03 0.05 0.12 -1 -1 0.03 0.0173981 0.0153283 67 2 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml adder_048bits.v common 2.89 vpr 63.28 MiB -1 -1 0.15 17828 1 0.03 -1 -1 30264 -1 -1 18 97 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64796 97 49 342 343 1 247 164 17 17 289 -1 unnamed_device 24.0 MiB 0.12 1584 31076 9475 18689 2912 63.3 MiB 0.19 0.00 3.45705 -193.743 -3.45705 3.45705 0.34 0.0008684 0.000814632 0.0625391 0.0585774 -1 -1 -1 -1 32 3068 37 6.87369e+06 251529 586450. 2029.24 0.78 0.189406 0.170897 25474 144626 -1 2611 15 1093 1093 100501 26292 1.79097 1.79097 -171.802 -1.79097 0 0 744469. 2576.02 0.03 0.07 0.12 -1 -1 0.03 0.0264197 0.0236566 99 2 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml adder_064bits.v common 3.73 vpr 64.25 MiB -1 -1 0.22 18156 1 0.04 -1 -1 30548 -1 -1 24 129 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65796 129 65 454 455 1 329 218 17 17 289 -1 unnamed_device 24.5 MiB 0.14 1992 52618 19565 29996 3057 64.3 MiB 0.34 0.01 4.35372 -280.144 -4.35372 4.35372 0.36 0.00122296 0.00115029 0.100997 0.0950032 -1 -1 -1 -1 34 3707 21 6.87369e+06 335372 618332. 2139.56 1.28 0.350781 0.318364 25762 151098 -1 3199 18 1360 1360 119854 30025 1.75637 1.75637 -212.671 -1.75637 0 0 787024. 2723.27 0.03 0.10 0.12 -1 -1 0.03 0.04213 0.0380291 131 2 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml adder_004bits.v common 1.95 vpr 62.20 MiB -1 -1 0.14 17356 1 0.02 -1 -1 29912 -1 -1 2 9 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63688 9 5 34 35 1 20 16 17 17 289 -1 unnamed_device 23.6 MiB 0.05 64 316 84 203 29 62.2 MiB 0.01 0.00 0.789073 -10.2315 -0.789073 0.789073 0.37 6.7432e-05 5.9105e-05 0.0014023 0.00123038 -1 -1 -1 -1 20 131 13 6.89349e+06 28187.7 414966. 1435.87 0.30 0.005288 0.00462994 23170 95770 -1 112 9 43 43 1879 665 0.79102 0.79102 -9.88956 -0.79102 0 0 503264. 1741.40 0.02 0.01 0.08 -1 -1 0.02 0.00293029 0.00260954 10 2 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml adder_005bits.v common 1.92 vpr 62.25 MiB -1 -1 0.16 17372 1 0.02 -1 -1 29916 -1 -1 3 11 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63744 11 6 41 42 1 27 20 17 17 289 -1 unnamed_device 23.5 MiB 0.03 158 587 141 409 37 62.2 MiB 0.01 0.00 0.834592 -14.4431 -0.834592 0.834592 0.34 0.000109323 9.9479e-05 0.00278401 0.00252793 -1 -1 -1 -1 22 303 8 6.89349e+06 42281.5 443629. 1535.05 0.32 0.0144953 0.0122181 23458 102101 -1 278 9 87 87 6583 1789 0.914373 0.914373 -16.0104 -0.914373 0 0 531479. 1839.03 0.02 0.01 0.09 -1 -1 0.02 0.00331916 0.00294637 13 2 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml adder_006bits.v common 2.05 vpr 62.27 MiB -1 -1 0.15 17272 1 0.02 -1 -1 30048 -1 -1 4 13 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63760 13 7 48 49 1 33 24 17 17 289 -1 unnamed_device 23.6 MiB 0.05 133 1044 310 591 143 62.3 MiB 0.01 0.00 0.833073 -15.9272 -0.833073 0.833073 0.34 0.000124785 0.000114174 0.00422947 0.00386489 -1 -1 -1 -1 26 290 13 6.89349e+06 56375.4 503264. 1741.40 0.36 0.0182724 0.0154763 24322 120374 -1 221 12 125 125 5631 2000 0.94932 0.94932 -16.2556 -0.94932 0 0 618332. 2139.56 0.03 0.01 0.10 -1 -1 0.03 0.0041284 0.00360823 15 2 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml adder_007bits.v common 2.07 vpr 62.25 MiB -1 -1 0.09 17396 1 0.03 -1 -1 30132 -1 -1 3 15 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63740 15 8 55 56 1 39 26 17 17 289 -1 unnamed_device 23.8 MiB 0.04 133 1204 333 631 240 62.2 MiB 0.01 0.00 1.2044 -18.4031 -1.2044 1.2044 0.34 0.000139573 0.000128145 0.0049121 0.00451093 -1 -1 -1 -1 32 295 12 6.89349e+06 42281.5 586450. 2029.24 0.41 0.0205912 0.0174698 25474 144626 -1 203 14 129 129 5391 1760 0.853073 0.853073 -17.6358 -0.853073 0 0 744469. 2576.02 0.03 0.01 0.12 -1 -1 0.03 0.00488954 0.00422668 16 2 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml adder_008bits.v common 1.99 vpr 62.19 MiB -1 -1 0.15 17216 1 0.02 -1 -1 29988 -1 -1 3 17 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63680 17 9 62 63 1 42 29 17 17 289 -1 unnamed_device 23.7 MiB 0.05 147 1877 621 864 392 62.2 MiB 0.02 0.00 1.2154 -21.3086 -1.2154 1.2154 0.33 0.000157194 0.000144466 0.00719049 0.006617 -1 -1 -1 -1 26 326 10 6.89349e+06 42281.5 503264. 1741.40 0.36 0.0239307 0.0204765 24322 120374 -1 297 13 172 172 9130 2854 1.11467 1.11467 -23.1377 -1.11467 0 0 618332. 2139.56 0.03 0.01 0.08 -1 -1 0.03 0.00521984 0.00452385 19 2 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml adder_009bits.v common 2.15 vpr 62.36 MiB -1 -1 0.15 17412 1 0.02 -1 -1 30144 -1 -1 3 19 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63856 19 10 69 70 1 45 32 17 17 289 -1 unnamed_device 23.9 MiB 0.04 160 2382 879 1128 375 62.4 MiB 0.02 0.00 1.2264 -24.2382 -1.2264 1.2264 0.35 0.000196203 0.000178208 0.0083255 0.00754874 -1 -1 -1 -1 26 391 28 6.89349e+06 42281.5 503264. 1741.40 0.41 0.0303822 0.0257506 24322 120374 -1 301 12 172 172 9169 2958 0.88802 0.88802 -24.0325 -0.88802 0 0 618332. 2139.56 0.03 0.01 0.10 -1 -1 0.03 0.0054245 0.00471594 20 2 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml adder_010bits.v common 2.13 vpr 62.29 MiB -1 -1 0.16 17316 1 0.02 -1 -1 30208 -1 -1 4 21 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63788 21 11 76 77 1 48 36 17 17 289 -1 unnamed_device 23.8 MiB 0.05 178 2101 697 1026 378 62.3 MiB 0.03 0.00 1.2374 -27.3972 -1.2374 1.2374 0.34 0.000272143 0.000242871 0.014502 0.0134048 -1 -1 -1 -1 26 398 15 6.89349e+06 56375.4 503264. 1741.40 0.41 0.0366146 0.031747 24322 120374 -1 357 12 211 211 13104 3962 1.00232 1.00232 -27.9123 -1.00232 0 0 618332. 2139.56 0.03 0.02 0.10 -1 -1 0.03 0.00586481 0.00508309 22 2 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml adder_011bits.v common 2.14 vpr 62.36 MiB -1 -1 0.15 17312 1 0.02 -1 -1 30020 -1 -1 5 23 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63856 23 12 83 84 1 53 40 17 17 289 -1 unnamed_device 23.9 MiB 0.05 194 2488 804 1234 450 62.4 MiB 0.02 0.00 1.2484 -29.9141 -1.2484 1.2484 0.34 0.000209881 0.00019386 0.00831107 0.00768353 -1 -1 -1 -1 32 419 16 6.89349e+06 70469.2 586450. 2029.24 0.44 0.0369654 0.0314569 25474 144626 -1 365 14 187 187 12612 3522 1.15867 1.15867 -31.3059 -1.15867 0 0 744469. 2576.02 0.03 0.02 0.12 -1 -1 0.03 0.00694411 0.00599348 24 2 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml adder_012bits.v common 2.17 vpr 62.26 MiB -1 -1 0.16 17436 1 0.02 -1 -1 30088 -1 -1 5 25 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63756 25 13 90 91 1 60 43 17 17 289 -1 unnamed_device 23.7 MiB 0.05 217 3493 1104 1725 664 62.3 MiB 0.05 0.00 1.2594 -32.5677 -1.2594 1.2594 0.34 0.000304479 0.000281407 0.0209988 0.0194009 -1 -1 -1 -1 32 482 20 6.89349e+06 70469.2 586450. 2029.24 0.43 0.0482192 0.0420835 25474 144626 -1 389 12 280 280 15448 4965 1.02237 1.02237 -32.661 -1.02237 0 0 744469. 2576.02 0.03 0.02 0.12 -1 -1 0.03 0.00656711 0.00568522 26 2 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml adder_013bits.v common 2.48 vpr 62.37 MiB -1 -1 0.16 17368 1 0.02 -1 -1 30088 -1 -1 5 27 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63868 27 14 97 98 1 67 46 17 17 289 -1 unnamed_device 23.8 MiB 0.05 241 2998 936 1427 635 62.4 MiB 0.03 0.00 1.2704 -35.731 -1.2704 1.2704 0.34 0.000238318 0.000220139 0.00954251 0.00882072 -1 -1 -1 -1 36 554 23 6.89349e+06 70469.2 648988. 2245.63 0.68 0.0569241 0.0482567 26050 158493 -1 470 11 304 304 20930 6434 1.17597 1.17597 -35.5601 -1.17597 0 0 828058. 2865.25 0.03 0.02 0.15 -1 -1 0.03 0.00655121 0.00571957 28 2 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml adder_014bits.v common 2.30 vpr 62.49 MiB -1 -1 0.15 17252 1 0.03 -1 -1 30068 -1 -1 7 29 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63988 29 15 104 105 1 74 51 17 17 289 -1 unnamed_device 23.8 MiB 0.06 311 4093 1430 1919 744 62.5 MiB 0.03 0.00 1.2814 -39.6 -1.2814 1.2814 0.34 0.00025249 0.000233658 0.0117448 0.0108621 -1 -1 -1 -1 32 651 22 6.89349e+06 98656.9 586450. 2029.24 0.45 0.0440558 0.0379748 25474 144626 -1 546 15 298 298 20497 5584 0.96032 0.96032 -37.5765 -0.96032 0 0 744469. 2576.02 0.03 0.02 0.13 -1 -1 0.03 0.00837419 0.00725538 31 2 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml adder_015bits.v common 2.23 vpr 62.42 MiB -1 -1 0.16 17588 1 0.02 -1 -1 30232 -1 -1 6 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63916 31 16 111 112 1 80 53 17 17 289 -1 unnamed_device 23.7 MiB 0.07 342 6191 2383 2979 829 62.4 MiB 0.04 0.00 1.65273 -42.5434 -1.65273 1.65273 0.35 0.000272263 0.000252147 0.0177761 0.0164574 -1 -1 -1 -1 28 782 16 6.89349e+06 84563 531479. 1839.03 0.47 0.050838 0.0446254 24610 126494 -1 632 16 412 412 30562 8836 1.09932 1.09932 -43.4614 -1.09932 0 0 648988. 2245.63 0.03 0.03 0.11 -1 -1 0.03 0.00917276 0.00791503 32 2 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml adder_016bits.v common 2.23 vpr 62.59 MiB -1 -1 0.16 17496 1 0.02 -1 -1 30196 -1 -1 6 33 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64092 33 17 118 119 1 83 56 17 17 289 -1 unnamed_device 23.9 MiB 0.07 355 5727 2349 2359 1019 62.6 MiB 0.04 0.00 1.66373 -46.554 -1.66373 1.66373 0.34 0.00029317 0.000271463 0.0164277 0.0152439 -1 -1 -1 -1 30 761 18 6.89349e+06 84563 556674. 1926.21 0.43 0.0452337 0.0395422 25186 138497 -1 615 14 322 322 20560 5635 1.13667 1.13667 -43.9673 -1.13667 0 0 706193. 2443.58 0.03 0.02 0.11 -1 -1 0.03 0.00900274 0.00782068 35 2 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml adder_018bits.v common 2.26 vpr 62.61 MiB -1 -1 0.15 17668 1 0.02 -1 -1 30096 -1 -1 7 37 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64116 37 19 132 133 1 89 63 17 17 289 -1 unnamed_device 24.0 MiB 0.07 391 6563 2630 3842 91 62.6 MiB 0.05 0.00 1.68573 -53.2796 -1.68573 1.68573 0.33 0.000328745 0.0003059 0.0180114 0.01674 -1 -1 -1 -1 30 836 17 6.89349e+06 98656.9 556674. 1926.21 0.44 0.0548421 0.0477938 25186 138497 -1 695 15 451 451 29891 8374 1.03337 1.03337 -49.3183 -1.03337 0 0 706193. 2443.58 0.03 0.03 0.13 -1 -1 0.03 0.0118554 0.0102459 38 2 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml adder_020bits.v common 2.36 vpr 62.61 MiB -1 -1 0.15 17628 1 0.02 -1 -1 30352 -1 -1 8 41 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64108 41 21 146 147 1 101 70 17 17 289 -1 unnamed_device 23.6 MiB 0.06 444 7702 3109 4434 159 62.6 MiB 0.05 0.00 1.70773 -59.9521 -1.70773 1.70773 0.33 0.000367369 0.000341624 0.0204269 0.0189835 -1 -1 -1 -1 32 990 21 6.89349e+06 112751 586450. 2029.24 0.51 0.0631649 0.0551747 25474 144626 -1 819 18 512 512 38144 10646 1.11467 1.11467 -55.3744 -1.11467 0 0 744469. 2576.02 0.06 0.04 0.12 -1 -1 0.06 0.0153282 0.0133693 42 2 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml adder_022bits.v common 2.91 vpr 62.58 MiB -1 -1 0.17 17744 1 0.02 -1 -1 30460 -1 -1 10 45 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64084 45 23 160 161 1 115 78 17 17 289 -1 unnamed_device 23.5 MiB 0.10 525 9208 3753 5295 160 62.6 MiB 0.06 0.00 1.72973 -67.5033 -1.72973 1.72973 0.34 0.000392949 0.000365341 0.0227959 0.0211971 -1 -1 -1 -1 38 1007 50 6.89349e+06 140938 678818. 2348.85 0.90 0.1159 0.10007 26626 170182 -1 870 15 498 498 29786 8882 1.34722 1.34722 -61.6964 -1.34722 0 0 902133. 3121.57 0.04 0.03 0.15 -1 -1 0.04 0.0128133 0.0111561 47 2 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml adder_024bits.v common 2.37 vpr 62.61 MiB -1 -1 0.16 17696 1 0.02 -1 -1 30324 -1 -1 9 49 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64116 49 25 174 175 1 124 83 17 17 289 -1 unnamed_device 23.5 MiB 0.08 661 9623 2236 7262 125 62.6 MiB 0.07 0.00 2.11206 -77.8242 -2.11206 2.11206 0.33 0.000423349 0.000394636 0.0238414 0.0221996 -1 -1 -1 -1 32 1386 20 6.89349e+06 126845 586450. 2029.24 0.50 0.0733721 0.0645323 25474 144626 -1 1142 15 563 563 48813 12563 1.46697 1.46697 -78.8793 -1.46697 0 0 744469. 2576.02 0.03 0.04 0.12 -1 -1 0.03 0.0131862 0.0115318 51 2 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml adder_028bits.v common 2.40 vpr 63.05 MiB -1 -1 0.14 17632 1 0.02 -1 -1 30148 -1 -1 11 57 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64564 57 29 202 203 1 142 97 17 17 289 -1 unnamed_device 23.6 MiB 0.08 791 11419 2578 8125 716 63.1 MiB 0.07 0.00 2.15606 -94.8463 -2.15606 2.15606 0.33 0.000485905 0.00045224 0.0262913 0.0244792 -1 -1 -1 -1 32 1495 15 6.89349e+06 155032 586450. 2029.24 0.50 0.0789967 0.0700395 25474 144626 -1 1370 17 655 655 52543 14035 1.33262 1.33262 -89.2547 -1.33262 0 0 744469. 2576.02 0.03 0.04 0.12 -1 -1 0.03 0.0163034 0.0142892 58 2 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml adder_032bits.v common 2.53 vpr 63.12 MiB -1 -1 0.17 17808 1 0.03 -1 -1 30108 -1 -1 12 65 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64632 65 33 230 231 1 165 110 17 17 289 -1 unnamed_device 23.6 MiB 0.09 986 17205 3974 12341 890 63.1 MiB 0.11 0.00 2.56039 -113.021 -2.56039 2.56039 0.33 0.000575876 0.000537719 0.0387672 0.0362165 -1 -1 -1 -1 30 1859 34 6.89349e+06 169126 556674. 1926.21 0.57 0.116327 0.103243 25186 138497 -1 1589 16 746 746 58837 14814 1.31532 1.31532 -101.149 -1.31532 0 0 706193. 2443.58 0.03 0.05 0.11 -1 -1 0.03 0.0180394 0.0158572 67 2 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml adder_048bits.v common 2.95 vpr 63.42 MiB -1 -1 0.17 17756 1 0.03 -1 -1 30288 -1 -1 18 97 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64940 97 49 342 343 1 247 164 17 17 289 -1 unnamed_device 23.9 MiB 0.11 1569 31076 8349 20038 2689 63.4 MiB 0.19 0.00 3.45705 -193.838 -3.45705 3.45705 0.33 0.000873253 0.000818313 0.0625323 0.0585782 -1 -1 -1 -1 32 3055 34 6.89349e+06 253689 586450. 2029.24 0.75 0.184089 0.166063 25474 144626 -1 2514 15 1003 1003 86721 22065 1.69397 1.69397 -165.636 -1.69397 0 0 744469. 2576.02 0.03 0.07 0.12 -1 -1 0.03 0.0259565 0.0232087 99 2 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml adder_064bits.v common 3.51 vpr 63.59 MiB -1 -1 0.17 17944 1 0.03 -1 -1 30596 -1 -1 24 129 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65112 129 65 454 455 1 329 218 17 17 289 -1 unnamed_device 24.4 MiB 0.15 2051 53273 20114 30300 2859 63.6 MiB 0.35 0.01 4.35372 -281.486 -4.35372 4.35372 0.33 0.00119747 0.00112577 0.101104 0.0950117 -1 -1 -1 -1 34 3564 19 6.89349e+06 338252 618332. 2139.56 1.07 0.340154 0.308577 25762 151098 -1 3156 13 1279 1279 97169 24263 1.63107 1.63107 -202.647 -1.63107 0 0 787024. 2723.27 0.03 0.08 0.12 -1 -1 0.03 0.0325631 0.0294317 131 2 -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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time num_le num_luts num_add_blocks max_add_chain_length num_sub_blocks max_sub_chain_length +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_004bits.v common 1.21 vpr 63.07 MiB -1 -1 0.08 17216 2 0.04 -1 -1 31888 -1 -1 2 9 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 64584 9 5 28 33 1 17 16 17 17 289 -1 unnamed_device 24.4 MiB 0.00 206 58 316 70 231 15 63.1 MiB 0.00 0.00 1.16527 1.11131 -10.1426 -1.11131 1.11131 0.22 7.9062e-05 7.3069e-05 0.000978869 0.000858061 -1 -1 -1 -1 20 133 6 6.55708e+06 24110 394039. 1363.46 0.14 0.00272539 0.00244507 19870 87366 -1 140 6 54 66 3199 1154 0.991107 0.991107 -10.7779 -0.991107 0 0 477104. 1650.88 0.02 0.00 0.04 -1 -1 0.02 0.00168949 0.00155092 13 6 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_005bits.v common 1.26 vpr 63.08 MiB -1 -1 0.07 17456 2 0.04 -1 -1 31896 -1 -1 2 11 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 64592 11 6 34 40 1 20 19 17 17 289 -1 unnamed_device 24.8 MiB 0.01 235 165 169 43 125 1 63.1 MiB 0.00 0.00 1.15051 1.15051 -14.6176 -1.15051 1.15051 0.23 4.9826e-05 4.3461e-05 0.000576171 0.000516811 -1 -1 -1 -1 20 270 9 6.55708e+06 24110 394039. 1363.46 0.15 0.00298509 0.00268579 19870 87366 -1 254 5 41 49 3983 1060 1.15051 1.15051 -15.5478 -1.15051 0 0 477104. 1650.88 0.02 0.00 0.04 -1 -1 0.02 0.00178452 0.0016474 16 7 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_006bits.v common 1.28 vpr 63.05 MiB -1 -1 0.07 17212 3 0.04 -1 -1 31752 -1 -1 3 13 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 64560 13 7 41 48 1 27 23 17 17 289 -1 unnamed_device 24.4 MiB 0.01 288 154 503 122 377 4 63.0 MiB 0.00 0.00 1.59011 1.34971 -17.0626 -1.34971 1.34971 0.23 5.8081e-05 5.1278e-05 0.001237 0.00110407 -1 -1 -1 -1 20 256 9 6.55708e+06 36165 394039. 1363.46 0.15 0.00391025 0.00350799 19870 87366 -1 243 6 70 92 4668 1412 1.22951 1.22951 -17.2303 -1.22951 0 0 477104. 1650.88 0.02 0.01 0.04 -1 -1 0.02 0.00227019 0.00206149 19 9 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_007bits.v common 1.31 vpr 62.96 MiB -1 -1 0.08 17216 3 0.04 -1 -1 31932 -1 -1 4 15 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 64472 15 8 47 55 1 35 27 17 17 289 -1 unnamed_device 24.8 MiB 0.01 442 155 907 221 612 74 63.0 MiB 0.01 0.00 1.71231 1.23151 -18.0927 -1.23151 1.23151 0.22 6.8894e-05 6.1471e-05 0.0018756 0.00167021 -1 -1 -1 -1 22 378 12 6.55708e+06 48220 420624. 1455.45 0.18 0.010518 0.00892074 20158 92377 -1 337 10 122 167 8236 2616 1.23151 1.23151 -20.8181 -1.23151 0 0 500653. 1732.36 0.02 0.01 0.05 -1 -1 0.02 0.00276206 0.00248152 23 10 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_008bits.v common 1.63 vpr 63.03 MiB -1 -1 0.08 17588 3 0.04 -1 -1 31864 -1 -1 6 17 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 64544 17 9 56 65 1 37 32 17 17 289 -1 unnamed_device 24.3 MiB 0.01 481 161 1132 232 876 24 63.0 MiB 0.01 0.00 1.59011 1.34971 -21.5902 -1.34971 1.34971 0.27 8.0064e-05 7.1661e-05 0.00228018 0.00204205 -1 -1 -1 -1 20 272 12 6.55708e+06 72330 394039. 1363.46 0.40 0.0122381 0.01043 19870 87366 -1 284 12 131 162 7562 2867 1.34971 1.34971 -22.2403 -1.34971 0 0 477104. 1650.88 0.02 0.01 0.04 -1 -1 0.02 0.00331893 0.00293692 26 14 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_009bits.v common 1.75 vpr 63.50 MiB -1 -1 0.08 17588 4 0.04 -1 -1 31948 -1 -1 6 19 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65028 19 10 60 70 1 46 35 17 17 289 -1 unnamed_device 24.8 MiB 0.01 653 226 1802 440 1080 282 63.5 MiB 0.01 0.00 2.19111 1.83817 -26.7688 -1.83817 1.83817 0.23 8.5661e-05 7.6544e-05 0.00313154 0.00280441 -1 -1 -1 -1 26 408 9 6.55708e+06 72330 477104. 1650.88 0.59 0.0215133 0.0180047 21022 109990 -1 393 12 175 252 11265 3487 1.79897 1.79897 -26.967 -1.79897 0 0 585099. 2024.56 0.02 0.01 0.06 -1 -1 0.02 0.00346704 0.00308223 29 13 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_010bits.v common 1.75 vpr 63.50 MiB -1 -1 0.08 17212 4 0.04 -1 -1 32004 -1 -1 7 21 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65024 21 11 69 80 1 45 39 17 17 289 -1 unnamed_device 24.9 MiB 0.01 529 261 897 182 697 18 63.5 MiB 0.01 0.00 2.07857 1.95837 -30.8495 -1.95837 1.95837 0.23 9.6795e-05 8.6472e-05 0.00179586 0.00163169 -1 -1 -1 -1 24 511 10 6.55708e+06 84385 448715. 1552.65 0.60 0.0302311 0.0254077 20734 103517 -1 466 9 123 172 11308 3061 1.83817 1.83817 -31.9733 -1.83817 0 0 554710. 1919.41 0.02 0.01 0.05 -1 -1 0.02 0.00346504 0.0031259 33 17 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_011bits.v common 1.67 vpr 63.26 MiB -1 -1 0.08 17600 5 0.04 -1 -1 32008 -1 -1 7 23 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 64776 23 12 76 88 1 52 42 17 17 289 -1 unnamed_device 25.0 MiB 0.01 771 207 3930 1133 1983 814 63.3 MiB 0.01 0.00 2.7665 2.15756 -32.1287 -2.15756 2.15756 0.22 0.000103351 9.2568e-05 0.00623842 0.00560991 -1 -1 -1 -1 26 473 11 6.55708e+06 84385 477104. 1650.88 0.50 0.0314563 0.0266482 21022 109990 -1 432 10 170 219 11782 3614 1.91716 1.91716 -32.3688 -1.91716 0 0 585099. 2024.56 0.02 0.01 0.06 -1 -1 0.02 0.00374793 0.00337898 36 19 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_012bits.v common 1.79 vpr 63.64 MiB -1 -1 0.08 17216 5 0.04 -1 -1 31832 -1 -1 8 25 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65172 25 13 83 96 1 61 46 17 17 289 -1 unnamed_device 24.8 MiB 0.01 904 221 1850 356 1231 263 63.6 MiB 0.01 0.00 3.1879 2.1433 -36.3224 -2.1433 2.1433 0.22 0.000113375 0.000102402 0.00306364 0.0027673 -1 -1 -1 -1 30 501 11 6.55708e+06 96440 526063. 1820.29 0.60 0.0373232 0.0313535 21886 126133 -1 359 12 213 299 9554 3461 2.0231 2.0231 -33.1408 -2.0231 0 0 666494. 2306.21 0.02 0.01 0.07 -1 -1 0.02 0.00428155 0.00383391 39 21 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_013bits.v common 1.42 vpr 62.89 MiB -1 -1 0.09 17984 5 0.05 -1 -1 32040 -1 -1 10 27 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 64396 27 14 91 105 1 72 51 17 17 289 -1 unnamed_device 24.4 MiB 0.01 838 348 2213 475 1505 233 62.9 MiB 0.01 0.00 2.93506 2.31696 -40.7652 -2.31696 2.31696 0.22 0.000126183 0.000114202 0.00358244 0.00324098 -1 -1 -1 -1 26 746 16 6.55708e+06 120550 477104. 1650.88 0.21 0.0192314 0.0165318 21022 109990 -1 623 11 208 325 14496 4355 2.1851 2.1851 -42.6532 -2.1851 0 0 585099. 2024.56 0.02 0.01 0.06 -1 -1 0.02 0.00488328 0.00438588 44 24 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_014bits.v common 1.89 vpr 63.12 MiB -1 -1 0.09 17596 6 0.05 -1 -1 31452 -1 -1 10 29 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 64640 29 15 95 110 1 74 54 17 17 289 -1 unnamed_device 24.2 MiB 0.02 840 494 1992 357 1549 86 63.1 MiB 0.01 0.00 3.04382 2.92362 -51.8434 -2.92362 2.92362 0.22 0.00013344 0.000121346 0.0032091 0.0029238 -1 -1 -1 -1 30 838 14 6.55708e+06 120550 526063. 1820.29 0.67 0.0390571 0.0329705 21886 126133 -1 758 10 229 373 18230 5006 2.76422 2.76422 -51.4947 -2.76422 0 0 666494. 2306.21 0.02 0.01 0.07 -1 -1 0.02 0.004325 0.00388466 46 23 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_015bits.v common 1.69 vpr 62.89 MiB -1 -1 0.09 17396 6 0.05 -1 -1 32048 -1 -1 10 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 64396 31 16 104 120 1 74 57 17 17 289 -1 unnamed_device 24.2 MiB 0.01 941 335 4635 1193 2485 957 62.9 MiB 0.02 0.00 2.87676 2.63636 -51.3629 -2.63636 2.63636 0.23 0.000147029 0.000133637 0.0069038 0.00628263 -1 -1 -1 -1 26 734 12 6.55708e+06 120550 477104. 1650.88 0.48 0.0402772 0.0344133 21022 109990 -1 632 11 267 356 20796 6731 2.63636 2.63636 -51.9456 -2.63636 0 0 585099. 2024.56 0.02 0.01 0.06 -1 -1 0.02 0.00551217 0.00494734 50 27 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_016bits.v common 1.37 vpr 62.72 MiB -1 -1 0.09 17600 7 0.05 -1 -1 31796 -1 -1 10 33 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 64228 33 17 112 129 1 80 60 17 17 289 -1 unnamed_device 24.1 MiB 0.02 916 393 2751 484 2197 70 62.7 MiB 0.01 0.00 3.08137 2.84722 -55.8943 -2.84722 2.84722 0.23 0.000153737 0.000139913 0.00434086 0.00396577 -1 -1 -1 -1 22 827 11 6.55708e+06 120550 420624. 1455.45 0.20 0.0220409 0.0190779 20158 92377 -1 736 10 230 311 16768 5148 2.75456 2.75456 -59.488 -2.75456 0 0 500653. 1732.36 0.02 0.01 0.05 -1 -1 0.02 0.00502704 0.00452521 54 30 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_018bits.v common 1.93 vpr 63.90 MiB -1 -1 0.09 17592 7 0.05 -1 -1 32116 -1 -1 13 37 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65432 37 19 127 146 1 95 69 17 17 289 -1 unnamed_device 24.8 MiB 0.02 1059 482 6555 1850 3443 1262 63.9 MiB 0.02 0.00 3.04582 2.80542 -63.7105 -2.80542 2.80542 0.22 0.000169604 0.000153899 0.0087697 0.00797272 -1 -1 -1 -1 30 1039 14 6.55708e+06 156715 526063. 1820.29 0.68 0.0419468 0.0361873 21886 126133 -1 800 9 267 408 15759 4770 2.47236 2.47236 -60.7748 -2.47236 0 0 666494. 2306.21 0.02 0.01 0.06 -1 -1 0.02 0.00604123 0.00539192 63 35 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_020bits.v common 1.47 vpr 63.06 MiB -1 -1 0.08 17600 8 0.05 -1 -1 32096 -1 -1 14 41 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 64572 41 21 139 160 1 106 76 17 17 289 -1 unnamed_device 24.1 MiB 0.02 1429 658 5676 1327 3947 402 63.1 MiB 0.02 0.00 3.2211 3.08613 -77.565 -3.08613 3.08613 0.24 0.000189407 0.000172319 0.00739107 0.00673116 -1 -1 -1 -1 26 1251 14 6.55708e+06 168770 477104. 1650.88 0.24 0.0294767 0.0257743 21022 109990 -1 1145 12 324 447 27951 7208 3.03216 3.03216 -79.6098 -3.03216 0 0 585099. 2024.56 0.02 0.01 0.06 -1 -1 0.02 0.00654646 0.00591075 67 37 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_022bits.v common 2.17 vpr 63.80 MiB -1 -1 0.08 17588 9 0.05 -1 -1 31900 -1 -1 15 45 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65328 45 23 153 176 1 107 83 17 17 289 -1 unnamed_device 24.8 MiB 0.02 1416 456 10163 2618 5720 1825 63.8 MiB 0.04 0.00 4.17308 3.86645 -84.2581 -3.86645 3.86645 0.22 0.000202671 0.000183892 0.0159514 0.0146405 -1 -1 -1 -1 28 1275 49 6.55708e+06 180825 500653. 1732.36 0.90 0.0844012 0.0736509 21310 115450 -1 934 13 398 597 29685 9964 3.49108 3.49108 -83.5456 -3.49108 0 0 612192. 2118.31 0.02 0.02 0.06 -1 -1 0.02 0.00778562 0.00700103 73 41 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_024bits.v common 1.53 vpr 63.84 MiB -1 -1 0.09 17600 10 0.07 -1 -1 32116 -1 -1 15 49 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65368 49 25 166 191 1 117 89 17 17 289 -1 unnamed_device 24.8 MiB 0.02 1324 622 9989 3281 5614 1094 63.8 MiB 0.03 0.00 4.86274 4.50214 -102.635 -4.50214 4.50214 0.22 0.000219308 0.000199911 0.0145069 0.0133229 -1 -1 -1 -1 26 1316 13 6.55708e+06 180825 477104. 1650.88 0.25 0.0398474 0.0353994 21022 109990 -1 1132 10 385 534 31434 9087 4.26174 4.26174 -104.467 -4.26174 0 0 585099. 2024.56 0.02 0.02 0.06 -1 -1 0.02 0.00671496 0.00611543 78 44 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_028bits.v common 2.03 vpr 63.82 MiB -1 -1 0.10 17980 11 0.06 -1 -1 32132 -1 -1 19 57 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65352 57 29 198 227 1 147 105 17 17 289 -1 unnamed_device 24.2 MiB 0.03 1865 897 17148 5241 9470 2437 63.8 MiB 0.05 0.00 5.5625 4.78174 -135.819 -4.78174 4.78174 0.23 0.000309161 0.000282212 0.0222296 0.020281 -1 -1 -1 -1 30 1478 13 6.55708e+06 229045 526063. 1820.29 0.73 0.0732923 0.0644039 21886 126133 -1 1381 11 414 566 31943 8321 4.56888 4.56888 -136.747 -4.56888 0 0 666494. 2306.21 0.03 0.02 0.06 -1 -1 0.03 0.00870588 0.00791114 93 56 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_032bits.v common 2.08 vpr 64.13 MiB -1 -1 0.10 17984 13 0.06 -1 -1 32136 -1 -1 20 65 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65672 65 33 224 257 1 164 118 17 17 289 -1 unnamed_device 24.8 MiB 0.03 2133 854 18036 4497 11205 2334 64.1 MiB 0.05 0.00 5.63431 5.39391 -154.533 -5.39391 5.39391 0.22 0.000289186 0.000264153 0.0195316 0.0178613 -1 -1 -1 -1 26 1787 31 6.55708e+06 241100 477104. 1650.88 0.76 0.105328 0.0921709 21022 109990 -1 1574 16 579 808 44794 13734 5.29574 5.29574 -160.248 -5.29574 0 0 585099. 2024.56 0.02 0.02 0.06 -1 -1 0.02 0.0113832 0.0102065 107 62 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_048bits.v common 2.43 vpr 65.33 MiB -1 -1 0.11 17984 19 0.07 -1 -1 32452 -1 -1 35 97 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66896 97 49 340 389 1 260 181 17 17 289 -1 unnamed_device 25.6 MiB 0.05 3161 1513 25731 6373 16876 2482 65.3 MiB 0.07 0.00 8.66304 7.82925 -302.074 -7.82925 7.82925 0.22 0.000446882 0.0004115 0.0244123 0.0224224 -1 -1 -1 -1 28 3205 37 6.55708e+06 421925 500653. 1732.36 0.98 0.141672 0.125872 21310 115450 -1 2662 22 887 1263 95212 33089 7.49619 7.49619 -303.373 -7.49619 0 0 612192. 2118.31 0.02 0.04 0.06 -1 -1 0.02 0.0209549 0.0189331 165 98 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_064bits.v common 1.87 vpr 65.39 MiB -1 -1 0.13 18368 26 0.09 -1 -1 32528 -1 -1 41 129 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66964 129 65 453 518 1 334 235 17 17 289 -1 unnamed_device 25.6 MiB 0.05 4103 1668 39331 9780 26838 2713 65.4 MiB 0.10 0.00 12.3513 11.4335 -501.015 -11.4335 11.4335 0.22 0.000599957 0.000554309 0.0352785 0.0325073 -1 -1 -1 -1 30 3050 20 6.55708e+06 494255 526063. 1820.29 0.33 0.110151 0.099848 21886 126133 -1 2684 10 776 1028 53642 15366 11.0729 11.0729 -490.306 -11.0729 0 0 666494. 2306.21 0.03 0.04 0.07 -1 -1 0.03 0.0206695 0.0190116 210 131 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_004bits.v common 0.28 abc 29.74 MiB -1 -1 0.08 17292 1 0.02 -1 -1 30452 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 25344 9 5 30 31 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_005bits.v common 0.26 abc 29.74 MiB -1 -1 0.07 17300 1 0.02 -1 -1 30452 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 25444 11 6 36 37 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_006bits.v common 0.30 abc 29.75 MiB -1 -1 0.08 17300 1 0.02 -1 -1 30460 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 24636 13 7 42 43 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_007bits.v common 0.29 abc 29.81 MiB -1 -1 0.08 17300 1 0.02 -1 -1 30524 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 25480 15 8 49 50 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_008bits.v common 10.64 abc 29.76 MiB -1 -1 0.08 17148 1 0.02 -1 -1 30472 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 25480 17 9 55 56 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_009bits.v common 0.28 abc 29.69 MiB -1 -1 0.08 17156 1 0.02 -1 -1 30400 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 25480 19 10 61 62 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_010bits.v common 0.28 abc 29.56 MiB -1 -1 0.06 17296 1 0.02 -1 -1 30272 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 25484 21 11 67 68 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_011bits.v common 0.28 abc 29.83 MiB -1 -1 0.07 17296 1 0.02 -1 -1 30548 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 25484 23 12 74 75 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_012bits.v common 0.29 abc 29.75 MiB -1 -1 0.08 17300 1 0.02 -1 -1 30468 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 24860 25 13 80 81 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_013bits.v common 0.31 abc 29.76 MiB -1 -1 0.11 17256 1 0.02 -1 -1 30472 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 25096 27 14 86 87 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_014bits.v common 0.30 abc 29.76 MiB -1 -1 0.08 16948 1 0.02 -1 -1 30472 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 25484 29 15 92 93 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_015bits.v common 0.30 abc 29.75 MiB -1 -1 0.08 17208 1 0.02 -1 -1 30464 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 25248 31 16 99 100 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_016bits.v common 0.31 abc 29.73 MiB -1 -1 0.09 17540 1 0.02 -1 -1 30440 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 25336 33 17 105 106 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_018bits.v common 0.33 abc 29.90 MiB -1 -1 0.09 17300 1 0.02 -1 -1 30620 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 25108 37 19 117 118 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_020bits.v common 0.30 abc 29.87 MiB -1 -1 0.09 17536 1 0.02 -1 -1 30584 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 25480 41 21 130 131 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_022bits.v common 0.30 abc 29.95 MiB -1 -1 0.08 17136 1 0.02 -1 -1 30672 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 25100 45 23 142 143 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_024bits.v common 0.30 abc 29.95 MiB -1 -1 0.09 17300 1 0.02 -1 -1 30668 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 25432 49 25 155 156 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_028bits.v common 0.31 abc 29.82 MiB -1 -1 0.10 17684 1 0.02 -1 -1 30540 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 25480 57 29 180 181 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_032bits.v common 0.32 abc 29.70 MiB -1 -1 0.10 17684 1 0.02 -1 -1 30412 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 25864 65 33 205 206 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_048bits.v common 0.34 abc 29.71 MiB -1 -1 0.11 17672 1 0.03 -1 -1 30428 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 25480 97 49 305 306 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_064bits.v common 0.35 abc 29.98 MiB -1 -1 0.11 18452 1 0.03 -1 -1 30704 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 25480 129 65 405 406 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_004bits.v common 0.30 abc 29.77 MiB -1 -1 0.08 17292 1 0.02 -1 -1 30484 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 25148 9 5 30 31 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_005bits.v common 0.27 abc 29.72 MiB -1 -1 0.08 17296 1 0.02 -1 -1 30432 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 24720 11 6 36 37 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_006bits.v common 0.34 abc 29.74 MiB -1 -1 0.13 17300 1 0.02 -1 -1 30456 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 24384 13 7 42 43 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_007bits.v common 0.30 abc 29.75 MiB -1 -1 0.08 17676 1 0.02 -1 -1 30460 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 24624 15 8 49 50 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_008bits.v common 10.63 abc 29.17 MiB -1 -1 0.08 17296 1 0.02 -1 -1 29872 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 24712 17 9 55 56 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_009bits.v common 0.27 abc 29.11 MiB -1 -1 0.07 17156 1 0.02 -1 -1 29804 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 25104 19 10 61 62 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_010bits.v common 0.29 abc 29.55 MiB -1 -1 0.08 17540 1 0.02 -1 -1 30260 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 25104 21 11 67 68 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_011bits.v common 0.27 abc 29.81 MiB -1 -1 0.08 17300 1 0.02 -1 -1 30524 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 24716 23 12 74 75 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_012bits.v common 0.27 abc 29.19 MiB -1 -1 0.07 17296 1 0.02 -1 -1 29892 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 25104 25 13 80 81 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_013bits.v common 0.30 abc 29.74 MiB -1 -1 0.08 17672 1 0.02 -1 -1 30452 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 25104 27 14 86 87 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_014bits.v common 0.29 abc 29.73 MiB -1 -1 0.07 17288 1 0.02 -1 -1 30444 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 25100 29 15 92 93 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_015bits.v common 9.32 abc 29.75 MiB -1 -1 0.08 17300 1 0.02 -1 -1 30464 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 25100 31 16 99 100 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_016bits.v common 10.36 abc 29.76 MiB -1 -1 0.08 17296 1 0.02 -1 -1 30472 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 25100 33 17 105 106 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_018bits.v common 8.29 abc 29.88 MiB -1 -1 0.08 16880 1 0.02 -1 -1 30592 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 25100 37 19 117 118 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_020bits.v common 7.28 abc 29.87 MiB -1 -1 0.10 17688 1 0.02 -1 -1 30584 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 25100 41 21 130 131 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_022bits.v common 5.27 abc 29.92 MiB -1 -1 0.08 17684 1 0.02 -1 -1 30636 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 25100 45 23 142 143 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_024bits.v common 6.31 abc 29.94 MiB -1 -1 0.11 17296 1 0.02 -1 -1 30660 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 24632 49 25 155 156 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_028bits.v common 4.40 abc 29.85 MiB -1 -1 0.08 17680 1 0.02 -1 -1 30564 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 25100 57 29 180 181 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_032bits.v common 1.48 abc 29.79 MiB -1 -1 0.08 17680 1 0.03 -1 -1 30504 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 25100 65 33 205 206 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_048bits.v common 2.52 abc 29.88 MiB -1 -1 0.09 17684 1 0.03 -1 -1 30600 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 25096 97 49 305 306 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_064bits.v common 3.57 abc 29.95 MiB -1 -1 0.10 18068 1 0.03 -1 -1 30668 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 25100 129 65 405 406 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_004bits.v common 1.26 vpr 63.81 MiB -1 -1 0.08 17672 1 0.02 -1 -1 30424 -1 -1 3 9 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65340 9 5 34 35 1 20 17 17 17 289 -1 unnamed_device 25.2 MiB 0.01 238 83 479 97 369 13 63.8 MiB 0.00 0.00 1.07911 0.792048 -9.44301 -0.792048 0.792048 0.23 4.1383e-05 3.5744e-05 0.00119592 0.00104463 -1 -1 -1 -1 20 178 7 6.64007e+06 37674 394039. 1363.46 0.15 0.00330351 0.00295369 20530 87850 -1 166 9 50 50 2813 862 0.890248 0.890248 -11.0134 -0.890248 0 0 477104. 1650.88 0.02 0.01 0.05 -1 -1 0.02 0.00197542 0.00179352 14 2 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_005bits.v common 1.27 vpr 63.45 MiB -1 -1 0.07 17284 1 0.02 -1 -1 30456 -1 -1 4 11 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 64976 11 6 41 42 1 26 21 17 17 289 -1 unnamed_device 25.2 MiB 0.01 284 83 525 102 399 24 63.5 MiB 0.00 0.00 1.03642 0.803048 -11.7481 -0.803048 0.803048 0.23 4.9915e-05 4.3541e-05 0.00119267 0.00105305 -1 -1 -1 -1 20 207 16 6.64007e+06 50232 394039. 1363.46 0.15 0.00416514 0.00365116 20530 87850 -1 179 12 74 74 3381 1262 0.901248 0.901248 -13.0068 -0.901248 0 0 477104. 1650.88 0.02 0.01 0.06 -1 -1 0.02 0.0030862 0.00274485 17 2 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_006bits.v common 1.46 vpr 63.47 MiB -1 -1 0.10 17288 1 0.02 -1 -1 30456 -1 -1 5 13 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 64996 13 7 48 49 1 32 25 17 17 289 -1 unnamed_device 25.2 MiB 0.01 316 197 709 147 526 36 63.5 MiB 0.01 0.00 1.02974 0.825048 -16.3149 -0.825048 0.825048 0.24 5.757e-05 5.0851e-05 0.00154628 0.00138152 -1 -1 -1 -1 20 360 11 6.64007e+06 62790 394039. 1363.46 0.33 0.00741843 0.00641283 20530 87850 -1 333 9 104 104 7584 2093 1.06545 1.06545 -19.3327 -1.06545 0 0 477104. 1650.88 0.02 0.01 0.05 -1 -1 0.02 0.00229516 0.00206885 20 2 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_007bits.v common 1.72 vpr 63.50 MiB -1 -1 0.08 17288 1 0.03 -1 -1 30444 -1 -1 4 15 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65020 15 8 55 56 1 38 27 17 17 289 -1 unnamed_device 25.2 MiB 0.01 380 241 747 123 590 34 63.5 MiB 0.01 0.00 1.30556 1.20253 -19.2264 -1.20253 1.20253 0.23 6.589e-05 5.8596e-05 0.00155102 0.00138614 -1 -1 -1 -1 26 408 8 6.64007e+06 50232 477104. 1650.88 0.57 0.019026 0.0157054 21682 110474 -1 377 11 93 93 6647 1593 0.943248 0.943248 -20.6462 -0.943248 0 0 585099. 2024.56 0.02 0.01 0.06 -1 -1 0.02 0.00274722 0.00246422 22 2 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_008bits.v common 1.67 vpr 63.86 MiB -1 -1 0.07 17288 1 0.02 -1 -1 30368 -1 -1 5 17 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65396 17 9 62 63 1 41 31 17 17 289 -1 unnamed_device 25.2 MiB 0.01 448 158 991 170 809 12 63.9 MiB 0.01 0.00 1.2443 1.19636 -19.9652 -1.19636 1.19636 0.23 7.3426e-05 6.5481e-05 0.00188453 0.00169911 -1 -1 -1 -1 26 294 8 6.64007e+06 62790 477104. 1650.88 0.51 0.0189528 0.0158979 21682 110474 -1 286 9 116 116 6005 2126 0.943248 0.943248 -20.7144 -0.943248 0 0 585099. 2024.56 0.02 0.01 0.06 -1 -1 0.02 0.00283558 0.00256151 25 2 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_009bits.v common 1.48 vpr 63.48 MiB -1 -1 0.08 17288 1 0.02 -1 -1 30472 -1 -1 5 19 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65008 19 10 69 70 1 44 34 17 17 289 -1 unnamed_device 25.2 MiB 0.01 540 167 1189 226 945 18 63.5 MiB 0.01 0.00 1.31656 1.20736 -22.026 -1.20736 1.20736 0.23 8.6108e-05 7.6919e-05 0.0023041 0.00208871 -1 -1 -1 -1 20 342 13 6.64007e+06 62790 394039. 1363.46 0.33 0.00978918 0.0084969 20530 87850 -1 302 9 109 109 4692 1639 1.07445 1.07445 -24.2422 -1.07445 0 0 477104. 1650.88 0.02 0.01 0.05 -1 -1 0.02 0.00314492 0.00284337 28 2 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_010bits.v common 1.38 vpr 62.97 MiB -1 -1 0.08 17284 1 0.02 -1 -1 30528 -1 -1 6 21 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 64480 21 11 76 77 1 49 38 17 17 289 -1 unnamed_device 24.5 MiB 0.02 588 250 1424 247 1152 25 63.0 MiB 0.01 0.00 1.53496 1.21836 -25.7297 -1.21836 1.21836 0.24 9.3886e-05 8.4894e-05 0.00269714 0.00244855 -1 -1 -1 -1 26 451 15 6.64007e+06 75348 477104. 1650.88 0.22 0.0156218 0.0133683 21682 110474 -1 439 12 142 142 8932 2498 0.976248 0.976248 -27.5487 -0.976248 0 0 585099. 2024.56 0.02 0.01 0.06 -1 -1 0.02 0.00423404 0.00375273 31 2 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_011bits.v common 1.59 vpr 63.63 MiB -1 -1 0.09 17288 1 0.02 -1 -1 30448 -1 -1 7 23 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65156 23 12 83 84 1 55 42 17 17 289 -1 unnamed_device 24.8 MiB 0.01 694 363 2058 437 1445 176 63.6 MiB 0.01 0.00 1.45876 1.22936 -31.2131 -1.22936 1.22936 0.23 9.8803e-05 8.8687e-05 0.00322156 0.00291014 -1 -1 -1 -1 20 638 10 6.64007e+06 87906 394039. 1363.46 0.42 0.0137408 0.0118043 20530 87850 -1 598 12 201 201 13848 3537 0.987248 0.987248 -32.0351 -0.987248 0 0 477104. 1650.88 0.02 0.01 0.05 -1 -1 0.02 0.00375482 0.00333808 35 2 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_012bits.v common 1.63 vpr 63.63 MiB -1 -1 0.08 17672 1 0.02 -1 -1 30452 -1 -1 8 25 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65160 25 13 90 91 1 61 46 17 17 289 -1 unnamed_device 24.9 MiB 0.01 705 317 2014 346 1603 65 63.6 MiB 0.01 0.00 1.31656 1.24036 -30.9039 -1.24036 1.24036 0.23 0.000104565 9.4799e-05 0.00302151 0.0027464 -1 -1 -1 -1 22 629 14 6.64007e+06 100464 420624. 1455.45 0.49 0.0243249 0.0206114 20818 92861 -1 571 11 246 246 13610 4133 1.09645 1.09645 -34.3431 -1.09645 0 0 500653. 1732.36 0.02 0.01 0.05 -1 -1 0.02 0.0038428 0.00342744 38 2 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_013bits.v common 1.74 vpr 64.02 MiB -1 -1 0.11 17284 1 0.02 -1 -1 30468 -1 -1 9 27 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65552 27 14 97 98 1 67 50 17 17 289 -1 unnamed_device 25.2 MiB 0.01 776 319 2442 536 1861 45 64.0 MiB 0.01 0.00 1.36056 1.25136 -33.5834 -1.25136 1.25136 0.24 0.000111963 0.000101325 0.00345788 0.00313083 -1 -1 -1 -1 26 619 14 6.64007e+06 113022 477104. 1650.88 0.52 0.024544 0.0208915 21682 110474 -1 536 11 194 194 12865 3664 0.976248 0.976248 -34.5053 -0.976248 0 0 585099. 2024.56 0.02 0.01 0.06 -1 -1 0.02 0.00387396 0.00347062 41 2 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_014bits.v common 1.85 vpr 63.66 MiB -1 -1 0.07 17284 1 0.02 -1 -1 30460 -1 -1 9 29 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65188 29 15 104 105 1 73 53 17 17 289 -1 unnamed_device 24.9 MiB 0.01 943 346 2825 562 2243 20 63.7 MiB 0.01 0.00 1.49176 1.26236 -35.9631 -1.26236 1.26236 0.23 0.000119374 0.000107263 0.00388458 0.00352004 -1 -1 -1 -1 32 650 14 6.64007e+06 113022 554710. 1919.41 0.68 0.0362657 0.0306325 22834 132086 -1 601 14 260 260 16740 4779 0.923248 0.923248 -35.7196 -0.923248 0 0 701300. 2426.64 0.03 0.01 0.07 -1 -1 0.03 0.00481042 0.00427476 44 2 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_015bits.v common 1.77 vpr 63.59 MiB -1 -1 0.08 17032 1 0.02 -1 -1 30592 -1 -1 9 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65112 31 16 111 112 1 79 56 17 17 289 -1 unnamed_device 24.7 MiB 0.01 885 425 2624 463 2138 23 63.6 MiB 0.01 0.00 1.81907 1.62267 -41.2599 -1.62267 1.62267 0.27 0.000126365 0.000114358 0.0036587 0.00332959 -1 -1 -1 -1 26 824 14 6.64007e+06 113022 477104. 1650.88 0.56 0.0367738 0.0311986 21682 110474 -1 686 12 288 288 21074 5653 1.13845 1.13845 -42.187 -1.13845 0 0 585099. 2024.56 0.02 0.01 0.06 -1 -1 0.02 0.00463604 0.00415964 46 2 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_016bits.v common 1.63 vpr 63.80 MiB -1 -1 0.08 17288 1 0.02 -1 -1 30608 -1 -1 9 33 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65336 33 17 118 119 1 82 59 17 17 289 -1 unnamed_device 24.9 MiB 0.02 1007 336 2909 510 2379 20 63.8 MiB 0.01 0.00 2.11447 1.63367 -41.8152 -1.63367 1.63367 0.23 0.000134938 0.000122447 0.00404431 0.00367801 -1 -1 -1 -1 26 643 9 6.64007e+06 113022 477104. 1650.88 0.45 0.0344379 0.0292381 21682 110474 -1 628 11 262 262 16953 5824 1.14945 1.14945 -43.39 -1.14945 0 0 585099. 2024.56 0.02 0.01 0.06 -1 -1 0.02 0.00604138 0.00543869 49 2 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_018bits.v common 1.43 vpr 64.22 MiB -1 -1 0.09 17288 1 0.02 -1 -1 30616 -1 -1 11 37 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65764 37 19 132 133 1 90 67 17 17 289 -1 unnamed_device 25.2 MiB 0.02 1092 631 6867 1848 4270 749 64.2 MiB 0.02 0.00 2.09247 1.65567 -54.3354 -1.65567 1.65567 0.23 0.000150516 0.000136788 0.00833076 0.00757099 -1 -1 -1 -1 30 954 13 6.64007e+06 138138 526063. 1820.29 0.25 0.0260082 0.0225915 22546 126617 -1 872 10 249 249 16176 4074 0.943248 0.943248 -49.4729 -0.943248 0 0 666494. 2306.21 0.03 0.01 0.07 -1 -1 0.03 0.00490753 0.00440461 55 2 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_020bits.v common 1.73 vpr 64.02 MiB -1 -1 0.08 17672 1 0.02 -1 -1 30008 -1 -1 13 41 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65560 41 21 146 147 1 102 75 17 17 289 -1 unnamed_device 24.9 MiB 0.01 1366 587 5289 1117 3980 192 64.0 MiB 0.02 0.00 2.26537 1.67767 -57.9414 -1.67767 1.67767 0.23 0.00016969 0.00015493 0.0063347 0.00577518 -1 -1 -1 -1 26 1002 14 6.64007e+06 163254 477104. 1650.88 0.57 0.0471084 0.0403237 21682 110474 -1 921 14 319 319 22239 6031 1.07325 1.07325 -54.9156 -1.07325 0 0 585099. 2024.56 0.02 0.01 0.06 -1 -1 0.02 0.00606186 0.00539542 62 2 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_022bits.v common 1.93 vpr 64.08 MiB -1 -1 0.08 17668 1 0.02 -1 -1 30372 -1 -1 14 45 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65616 45 23 160 161 1 114 82 17 17 289 -1 unnamed_device 25.2 MiB 0.02 1511 689 9160 2319 6031 810 64.1 MiB 0.04 0.00 2.04927 1.69967 -64.4248 -1.69967 1.69967 0.24 0.000419429 0.000390405 0.0166561 0.0154299 -1 -1 -1 -1 26 1229 18 6.64007e+06 175812 477104. 1650.88 0.69 0.0630154 0.0552989 21682 110474 -1 1067 12 353 353 25032 6571 1.06425 1.06425 -60.7054 -1.06425 0 0 585099. 2024.56 0.02 0.02 0.06 -1 -1 0.02 0.00732666 0.00664302 68 2 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_024bits.v common 2.04 vpr 64.16 MiB -1 -1 0.07 18056 1 0.02 -1 -1 30280 -1 -1 14 49 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65704 49 25 174 175 1 123 88 17 17 289 -1 unnamed_device 25.2 MiB 0.02 1533 741 8668 2003 6116 549 64.2 MiB 0.03 0.00 2.57476 2.07098 -72.0156 -2.07098 2.07098 0.25 0.000193021 0.000175805 0.010399 0.00949855 -1 -1 -1 -1 32 1140 10 6.64007e+06 175812 554710. 1919.41 0.75 0.0474016 0.0413394 22834 132086 -1 1085 11 316 316 21511 5658 1.08425 1.08425 -64.8593 -1.08425 0 0 701300. 2426.64 0.03 0.02 0.08 -1 -1 0.03 0.00775127 0.00697508 73 2 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_028bits.v common 1.96 vpr 64.29 MiB -1 -1 0.09 17464 1 0.02 -1 -1 30488 -1 -1 18 57 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65828 57 29 202 203 1 143 104 17 17 289 -1 unnamed_device 25.1 MiB 0.02 1840 829 11816 2855 8450 511 64.3 MiB 0.04 0.00 2.53961 2.11498 -86.5248 -2.11498 2.11498 0.24 0.000227555 0.000207967 0.0135972 0.0124764 -1 -1 -1 -1 26 1605 40 6.64007e+06 226044 477104. 1650.88 0.66 0.078404 0.0685372 21682 110474 -1 1388 15 519 519 39851 10566 1.30145 1.30145 -82.4792 -1.30145 0 0 585099. 2024.56 0.02 0.02 0.06 -1 -1 0.02 0.00847999 0.00758602 86 2 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_032bits.v common 2.25 vpr 64.41 MiB -1 -1 0.09 18056 1 0.02 -1 -1 30212 -1 -1 19 65 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65952 65 33 230 231 1 164 117 17 17 289 -1 unnamed_device 25.2 MiB 0.02 2275 1115 20995 6789 12723 1483 64.4 MiB 0.06 0.00 2.92192 2.50829 -107.042 -2.50829 2.50829 0.23 0.000269838 0.000239541 0.0200461 0.0182978 -1 -1 -1 -1 32 1796 15 6.64007e+06 238602 554710. 1919.41 0.92 0.107473 0.0944051 22834 132086 -1 1645 15 498 498 43978 10303 1.19105 1.19105 -92.1495 -1.19105 0 0 701300. 2426.64 0.03 0.02 0.07 -1 -1 0.03 0.0090664 0.00813003 97 2 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_048bits.v common 1.71 vpr 64.97 MiB -1 -1 0.09 17672 1 0.03 -1 -1 30496 -1 -1 29 97 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66532 97 49 342 343 1 246 175 17 17 289 -1 unnamed_device 25.2 MiB 0.03 2965 1459 32938 9485 20921 2532 65.0 MiB 0.10 0.00 3.61231 3.38291 -175.44 -3.38291 3.38291 0.23 0.000385243 0.000353671 0.0275764 0.0253627 -1 -1 -1 -1 30 2412 19 6.64007e+06 364182 526063. 1820.29 0.32 0.0742998 0.0669359 22546 126617 -1 2173 14 773 773 59114 15483 1.40705 1.40705 -136.475 -1.40705 0 0 666494. 2306.21 0.03 0.03 0.07 -1 -1 0.03 0.0130146 0.0118962 145 2 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_064bits.v common 1.91 vpr 65.57 MiB -1 -1 0.12 18056 1 0.03 -1 -1 30712 -1 -1 39 129 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 67140 129 65 454 455 1 328 233 17 17 289 -1 unnamed_device 26.0 MiB 0.04 4074 2039 55365 18789 32218 4358 65.6 MiB 0.18 0.00 4.33373 4.25753 -263.369 -4.25753 4.25753 0.23 0.000546765 0.000505774 0.0441183 0.0408237 -1 -1 -1 -1 32 3283 17 6.64007e+06 489762 554710. 1919.41 0.39 0.116701 0.106346 22834 132086 -1 2968 14 1086 1086 74911 19841 1.69925 1.69925 -193.576 -1.69925 0 0 701300. 2426.64 0.03 0.04 0.07 -1 -1 0.03 0.0170589 0.0155872 193 2 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_004bits.v common 1.30 vpr 63.25 MiB -1 -1 0.07 17284 1 0.02 -1 -1 30088 -1 -1 3 9 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 64768 9 5 34 35 1 20 17 17 17 289 -1 unnamed_device 24.9 MiB 0.01 238 75 479 108 353 18 63.2 MiB 0.01 0.00 1.07911 0.781048 -9.33185 -0.781048 0.781048 0.25 9.357e-05 8.5036e-05 0.0024399 0.00220103 -1 -1 -1 -1 20 165 10 6.65987e+06 38034 394039. 1363.46 0.18 0.00483371 0.00434458 20530 87850 -1 139 11 76 76 3137 1197 0.781048 0.781048 -10.3022 -0.781048 0 0 477104. 1650.88 0.02 0.01 0.05 -1 -1 0.02 0.0022405 0.00200965 14 2 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_005bits.v common 1.26 vpr 62.95 MiB -1 -1 0.07 17280 1 0.02 -1 -1 30480 -1 -1 4 11 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 64464 11 6 41 42 1 26 21 17 17 289 -1 unnamed_device 24.2 MiB 0.01 284 76 497 85 385 27 63.0 MiB 0.00 0.00 1.03642 0.803048 -11.5739 -0.803048 0.803048 0.23 5.1125e-05 4.4933e-05 0.00124173 0.00111098 -1 -1 -1 -1 20 201 10 6.65987e+06 50712 394039. 1363.46 0.15 0.00386556 0.0034642 20530 87850 -1 181 12 98 98 4502 1632 1.01045 1.01045 -12.8746 -1.01045 0 0 477104. 1650.88 0.02 0.01 0.05 -1 -1 0.02 0.00253061 0.00227035 17 2 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_006bits.v common 1.58 vpr 63.66 MiB -1 -1 0.07 17284 1 0.02 -1 -1 29688 -1 -1 5 13 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65188 13 7 48 49 1 32 25 17 17 289 -1 unnamed_device 24.9 MiB 0.01 316 183 709 148 526 35 63.7 MiB 0.01 0.00 1.02974 0.814048 -15.1984 -0.814048 0.814048 0.23 5.689e-05 5.0305e-05 0.00165434 0.00147903 -1 -1 -1 -1 20 350 16 6.65987e+06 63390 394039. 1363.46 0.44 0.011756 0.00980949 20530 87850 -1 340 17 187 187 13401 3837 1.03245 1.03245 -17.987 -1.03245 0 0 477104. 1650.88 0.02 0.01 0.05 -1 -1 0.02 0.00334724 0.00293122 20 2 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_007bits.v common 1.59 vpr 63.19 MiB -1 -1 0.08 17672 1 0.02 -1 -1 30452 -1 -1 4 15 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 64708 15 8 55 56 1 38 27 17 17 289 -1 unnamed_device 24.7 MiB 0.01 380 234 747 129 578 40 63.2 MiB 0.01 0.00 1.26156 1.17436 -18.6976 -1.17436 1.17436 0.23 7.043e-05 6.3138e-05 0.00157626 0.00141852 -1 -1 -1 -1 20 409 17 6.65987e+06 50712 394039. 1363.46 0.48 0.0115251 0.00969463 20530 87850 -1 399 16 176 176 12920 3525 1.00339 1.00339 -21.1595 -1.00339 0 0 477104. 1650.88 0.02 0.01 0.05 -1 -1 0.02 0.00358569 0.0031662 22 2 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_008bits.v common 1.53 vpr 63.68 MiB -1 -1 0.07 17672 1 0.02 -1 -1 30380 -1 -1 5 17 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65204 17 9 62 63 1 41 31 17 17 289 -1 unnamed_device 24.9 MiB 0.01 448 159 847 154 684 9 63.7 MiB 0.01 0.00 1.2443 1.18536 -20.0261 -1.18536 1.18536 0.23 7.5018e-05 6.6775e-05 0.00195393 0.00177282 -1 -1 -1 -1 20 331 15 6.65987e+06 63390 394039. 1363.46 0.43 0.0112967 0.00955005 20530 87850 -1 327 14 169 169 9032 3063 1.12359 1.12359 -22.8425 -1.12359 0 0 477104. 1650.88 0.02 0.01 0.05 -1 -1 0.02 0.00363438 0.00321042 25 2 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_009bits.v common 1.65 vpr 63.30 MiB -1 -1 0.09 16900 1 0.02 -1 -1 30436 -1 -1 5 19 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 64820 19 10 69 70 1 44 34 17 17 289 -1 unnamed_device 24.5 MiB 0.01 540 151 1244 259 970 15 63.3 MiB 0.01 0.00 1.31656 1.19636 -21.7095 -1.19636 1.19636 0.23 8.204e-05 7.3735e-05 0.00227233 0.0020487 -1 -1 -1 -1 22 360 16 6.65987e+06 63390 420624. 1455.45 0.51 0.0229437 0.0193246 20818 92861 -1 325 15 201 201 10796 3958 1.03639 1.03639 -24.3988 -1.03639 0 0 500653. 1732.36 0.02 0.01 0.05 -1 -1 0.02 0.00394271 0.00345528 28 2 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_010bits.v common 1.37 vpr 63.32 MiB -1 -1 0.08 16892 1 0.02 -1 -1 30556 -1 -1 6 21 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 64840 21 11 76 77 1 49 38 17 17 289 -1 unnamed_device 24.4 MiB 0.01 588 210 1802 360 1418 24 63.3 MiB 0.01 0.00 1.53496 1.20736 -25.1457 -1.20736 1.20736 0.23 9.7396e-05 8.8372e-05 0.00306471 0.00276262 -1 -1 -1 -1 26 411 18 6.65987e+06 76068 477104. 1650.88 0.22 0.015302 0.0129969 21682 110474 -1 370 11 159 159 8428 2816 0.894189 0.894189 -25.5941 -0.894189 0 0 585099. 2024.56 0.02 0.01 0.06 -1 -1 0.02 0.00350927 0.00312858 31 2 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_011bits.v common 1.64 vpr 63.44 MiB -1 -1 0.07 17528 1 0.02 -1 -1 30472 -1 -1 7 23 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 64964 23 12 83 84 1 55 42 17 17 289 -1 unnamed_device 24.5 MiB 0.01 694 363 2058 427 1457 174 63.4 MiB 0.01 0.00 1.45876 1.21836 -31.2829 -1.21836 1.21836 0.28 9.8216e-05 8.8456e-05 0.00325418 0.00294842 -1 -1 -1 -1 20 621 11 6.65987e+06 88746 394039. 1363.46 0.45 0.0162828 0.0139309 20530 87850 -1 596 14 234 234 18112 4915 1.15659 1.15659 -34.2526 -1.15659 0 0 477104. 1650.88 0.02 0.01 0.06 -1 -1 0.02 0.00412277 0.00363109 35 2 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_012bits.v common 1.54 vpr 63.44 MiB -1 -1 0.08 17672 1 0.02 -1 -1 29880 -1 -1 8 25 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 64964 25 13 90 91 1 61 46 17 17 289 -1 unnamed_device 24.9 MiB 0.01 705 327 1850 317 1450 83 63.4 MiB 0.01 0.00 1.31656 1.22936 -31.4295 -1.22936 1.22936 0.23 0.000104692 9.4898e-05 0.00285057 0.00259403 -1 -1 -1 -1 26 585 13 6.65987e+06 101424 477104. 1650.88 0.43 0.0296487 0.0250953 21682 110474 -1 556 16 236 236 12670 3863 1.06939 1.06939 -34.3453 -1.06939 0 0 585099. 2024.56 0.02 0.01 0.06 -1 -1 0.02 0.00461984 0.00409 38 2 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_013bits.v common 1.85 vpr 63.88 MiB -1 -1 0.08 17288 1 0.02 -1 -1 30392 -1 -1 9 27 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65412 27 14 97 98 1 67 50 17 17 289 -1 unnamed_device 25.0 MiB 0.01 776 340 2350 468 1844 38 63.9 MiB 0.01 0.00 1.36056 1.24036 -33.3747 -1.24036 1.24036 0.23 0.000225576 0.000206722 0.00456996 0.00419136 -1 -1 -1 -1 26 667 29 6.65987e+06 114102 477104. 1650.88 0.62 0.0398003 0.0338321 21682 110474 -1 592 33 318 318 57453 37023 1.16759 1.16759 -37.1574 -1.16759 0 0 585099. 2024.56 0.02 0.03 0.06 -1 -1 0.02 0.00798524 0.00687946 41 2 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_014bits.v common 1.45 vpr 63.50 MiB -1 -1 0.08 17668 1 0.02 -1 -1 30324 -1 -1 9 29 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65024 29 15 104 105 1 73 53 17 17 289 -1 unnamed_device 24.9 MiB 0.01 943 326 3617 739 2832 46 63.5 MiB 0.02 0.00 1.49176 1.25136 -35.1959 -1.25136 1.25136 0.23 0.000117876 0.000106205 0.00908273 0.00834518 -1 -1 -1 -1 30 622 13 6.65987e+06 114102 526063. 1820.29 0.26 0.0265602 0.0232305 22546 126617 -1 537 10 180 180 8588 2556 0.911048 0.911048 -34.1663 -0.911048 0 0 666494. 2306.21 0.03 0.01 0.07 -1 -1 0.03 0.00399448 0.00360108 44 2 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_015bits.v common 1.68 vpr 63.89 MiB -1 -1 0.07 17672 1 0.02 -1 -1 30600 -1 -1 9 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65428 31 16 111 112 1 79 56 17 17 289 -1 unnamed_device 24.9 MiB 0.01 885 432 2196 385 1786 25 63.9 MiB 0.01 0.00 1.81907 1.61167 -41.1187 -1.61167 1.61167 0.23 0.000132693 0.000120473 0.00315976 0.00287987 -1 -1 -1 -1 26 834 19 6.65987e+06 114102 477104. 1650.88 0.51 0.0356961 0.0302449 21682 110474 -1 705 14 317 317 23560 6250 1.17145 1.17145 -43.2536 -1.17145 0 0 585099. 2024.56 0.02 0.01 0.06 -1 -1 0.02 0.00504275 0.00448784 46 2 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_016bits.v common 1.79 vpr 63.63 MiB -1 -1 0.07 17672 1 0.02 -1 -1 30592 -1 -1 9 33 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65156 33 17 118 119 1 82 59 17 17 289 -1 unnamed_device 24.5 MiB 0.01 1007 330 2909 508 2376 25 63.6 MiB 0.01 0.00 2.04847 1.62267 -41.4298 -1.62267 1.62267 0.23 0.000134295 0.00012209 0.00403098 0.00367535 -1 -1 -1 -1 26 681 18 6.65987e+06 114102 477104. 1650.88 0.64 0.0412286 0.0350424 21682 110474 -1 647 15 329 329 18779 6422 1.17145 1.17145 -44.3444 -1.17145 0 0 585099. 2024.56 0.02 0.01 0.06 -1 -1 0.02 0.00551528 0.00487629 49 2 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_018bits.v common 1.74 vpr 63.64 MiB -1 -1 0.08 17280 1 0.02 -1 -1 30596 -1 -1 11 37 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65168 37 19 132 133 1 90 67 17 17 289 -1 unnamed_device 24.9 MiB 0.01 1092 639 7003 1923 4240 840 63.6 MiB 0.02 0.00 2.01041 1.64467 -53.6697 -1.64467 1.64467 0.25 0.000150212 0.000136199 0.00844271 0.007677 -1 -1 -1 -1 26 1009 16 6.65987e+06 139458 477104. 1650.88 0.49 0.048146 0.0409187 21682 110474 -1 950 11 341 341 27759 6824 1.07325 1.07325 -52.1893 -1.07325 0 0 585099. 2024.56 0.02 0.02 0.06 -1 -1 0.02 0.00698376 0.00620754 55 2 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_020bits.v common 1.80 vpr 63.86 MiB -1 -1 0.10 17668 1 0.02 -1 -1 30592 -1 -1 13 41 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65396 41 21 146 147 1 102 75 17 17 289 -1 unnamed_device 24.5 MiB 0.01 1366 611 7027 1508 5176 343 63.9 MiB 0.03 0.00 2.18331 1.66667 -58.111 -1.66667 1.66667 0.24 0.000210513 0.000192155 0.0100442 0.00920189 -1 -1 -1 -1 28 1031 18 6.65987e+06 164814 500653. 1732.36 0.56 0.0544942 0.0468751 21970 115934 -1 951 15 335 335 22426 6142 1.04619 1.04619 -54.6103 -1.04619 0 0 612192. 2118.31 0.02 0.01 0.06 -1 -1 0.02 0.00651926 0.00581147 62 2 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_022bits.v common 1.67 vpr 63.94 MiB -1 -1 0.09 17672 1 0.02 -1 -1 30652 -1 -1 14 45 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65476 45 23 160 161 1 114 82 17 17 289 -1 unnamed_device 24.5 MiB 0.01 1511 697 11296 3104 7159 1033 63.9 MiB 0.04 0.00 2.04927 1.68867 -64.2361 -1.68867 1.68867 0.34 0.000188214 0.000171549 0.0152014 0.0139715 -1 -1 -1 -1 30 1131 16 6.65987e+06 177492 526063. 1820.29 0.27 0.03732 0.0329728 22546 126617 -1 1055 14 400 400 26633 7013 1.13925 1.13925 -62.1121 -1.13925 0 0 666494. 2306.21 0.03 0.02 0.07 -1 -1 0.03 0.00667388 0.00597021 68 2 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_024bits.v common 1.87 vpr 64.37 MiB -1 -1 0.08 17524 1 0.02 -1 -1 30472 -1 -1 14 49 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65912 49 25 174 175 1 123 88 17 17 289 -1 unnamed_device 24.9 MiB 0.02 1533 677 6913 1466 5163 284 64.4 MiB 0.02 0.00 2.57476 2.05998 -69.4146 -2.05998 2.05998 0.25 0.000192377 0.000174998 0.00763626 0.00696582 -1 -1 -1 -1 30 1189 15 6.65987e+06 177492 526063. 1820.29 0.64 0.0624134 0.0538212 22546 126617 -1 1060 16 417 417 26988 7388 1.18125 1.18125 -66.1732 -1.18125 0 0 666494. 2306.21 0.02 0.02 0.07 -1 -1 0.02 0.00762415 0.00679059 73 2 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_028bits.v common 2.02 vpr 64.11 MiB -1 -1 0.09 17348 1 0.02 -1 -1 30536 -1 -1 18 57 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65644 57 29 202 203 1 143 104 17 17 289 -1 unnamed_device 24.9 MiB 0.02 1840 854 13768 3297 9746 725 64.1 MiB 0.05 0.00 2.47361 2.10398 -86.4997 -2.10398 2.10398 0.23 0.000223154 0.000204405 0.0189329 0.0174562 -1 -1 -1 -1 28 1546 18 6.65987e+06 228204 500653. 1732.36 0.74 0.0955569 0.084111 21970 115934 -1 1419 17 507 507 42865 11070 1.25239 1.25239 -80.7522 -1.25239 0 0 612192. 2118.31 0.02 0.02 0.06 -1 -1 0.02 0.00874457 0.00781608 86 2 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_032bits.v common 1.71 vpr 64.25 MiB -1 -1 0.08 17668 1 0.02 -1 -1 30348 -1 -1 19 65 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65788 65 33 230 231 1 164 117 17 17 289 -1 unnamed_device 24.9 MiB 0.02 2275 1131 20995 7082 12088 1825 64.2 MiB 0.06 0.00 2.92192 2.49729 -107.815 -2.49729 2.49729 0.23 0.000269954 0.000247525 0.0201729 0.0184865 -1 -1 -1 -1 32 1743 15 6.65987e+06 240882 554710. 1919.41 0.29 0.0503597 0.0448846 22834 132086 -1 1620 14 569 569 45398 11707 1.21819 1.21819 -93.4248 -1.21819 0 0 701300. 2426.64 0.04 0.04 0.12 -1 -1 0.04 0.0141501 0.012611 97 2 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_048bits.v common 1.77 vpr 65.01 MiB -1 -1 0.10 17840 1 0.03 -1 -1 30556 -1 -1 29 97 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66572 97 49 342 343 1 246 175 17 17 289 -1 unnamed_device 24.9 MiB 0.03 2965 1462 32449 8975 21210 2264 65.0 MiB 0.12 0.00 3.61231 3.37191 -174.437 -3.37191 3.37191 0.23 0.000459966 0.000422715 0.0326052 0.0300627 -1 -1 -1 -1 32 2473 14 6.65987e+06 367662 554710. 1919.41 0.34 0.0846952 0.0763662 22834 132086 -1 2267 29 841 841 81945 29869 1.75665 1.75665 -153.182 -1.75665 0 0 701300. 2426.64 0.03 0.05 0.07 -1 -1 0.03 0.0216654 0.0193591 145 2 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_064bits.v common 1.97 vpr 65.41 MiB -1 -1 0.12 18440 1 0.03 -1 -1 30724 -1 -1 39 129 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66976 129 65 454 455 1 328 233 17 17 289 -1 unnamed_device 26.0 MiB 0.03 4074 1915 54649 18722 31811 4116 65.4 MiB 0.18 0.00 4.32293 4.24653 -259.209 -4.24653 4.24653 0.23 0.00053656 0.000495434 0.0438384 0.040529 -1 -1 -1 -1 32 3348 36 6.65987e+06 494442 554710. 1919.41 0.44 0.136419 0.124283 22834 132086 -1 2938 16 1194 1194 86245 23562 1.69925 1.69925 -191.229 -1.69925 0 0 701300. 2426.64 0.03 0.04 0.07 -1 -1 0.03 0.0204713 0.0188238 193 2 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_004bits.v common 1.71 vpr 64.13 MiB -1 -1 0.07 17288 1 0.02 -1 -1 30164 -1 -1 1 9 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65672 9 5 34 35 1 15 15 17 17 289 -1 unnamed_device 25.2 MiB 0.02 186 45 267 64 189 14 64.1 MiB 0.00 0.00 0.942216 0.723895 -9.92048 -0.723895 0.723895 0.24 4.1269e-05 3.5581e-05 0.000857532 0.000748933 -1 -1 -1 -1 26 113 8 6.95648e+06 14475.7 503264. 1741.40 0.48 0.0145841 0.0120035 24322 120374 -1 105 4 30 30 1645 514 0.723895 0.723895 -10.6007 -0.723895 0 0 618332. 2139.56 0.03 0.01 0.08 -1 -1 0.03 0.00235455 0.00212702 7 2 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_005bits.v common 1.49 vpr 64.07 MiB -1 -1 0.07 17292 1 0.02 -1 -1 30244 -1 -1 1 11 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65612 11 6 41 42 1 20 18 17 17 289 -1 unnamed_device 25.2 MiB 0.02 208 70 432 93 307 32 64.1 MiB 0.00 0.00 1.08519 0.701895 -12.2465 -0.701895 0.701895 0.25 4.9405e-05 4.3283e-05 0.00122396 0.00107876 -1 -1 -1 -1 18 161 11 6.95648e+06 14475.7 376052. 1301.22 0.30 0.00523097 0.00453765 22882 88689 -1 141 12 69 69 3460 1174 0.74674 0.74674 -13.0673 -0.74674 0 0 470940. 1629.55 0.02 0.01 0.05 -1 -1 0.02 0.00346806 0.00310217 8 2 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_006bits.v common 1.52 vpr 64.15 MiB -1 -1 0.08 17292 1 0.02 -1 -1 30304 -1 -1 2 13 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65688 13 7 48 49 1 25 22 17 17 289 -1 unnamed_device 25.6 MiB 0.02 291 81 682 180 493 9 64.1 MiB 0.01 0.00 1.08519 0.802432 -14.3707 -0.802432 0.802432 0.24 5.7337e-05 5.0675e-05 0.00163514 0.00145269 -1 -1 -1 -1 20 195 11 6.95648e+06 28951.4 414966. 1435.87 0.33 0.00618855 0.00536814 23170 95770 -1 179 10 70 70 3667 1262 0.74674 0.74674 -15.5357 -0.74674 0 0 503264. 1741.40 0.02 0.01 0.05 -1 -1 0.02 0.00276647 0.00248845 10 2 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_007bits.v common 1.44 vpr 64.15 MiB -1 -1 0.08 17288 1 0.02 -1 -1 30108 -1 -1 2 15 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65692 15 8 55 56 1 32 25 17 17 289 -1 unnamed_device 26.0 MiB 0.02 415 108 1105 286 650 169 64.2 MiB 0.01 0.00 1.32908 0.841632 -16.8874 -0.841632 0.841632 0.24 6.9614e-05 6.1942e-05 0.00236817 0.00210352 -1 -1 -1 -1 26 261 20 6.95648e+06 28951.4 503264. 1741.40 0.23 0.0118783 0.0100431 24322 120374 -1 194 17 182 182 7678 2912 1.17833 1.17833 -17.5037 -1.17833 0 0 618332. 2139.56 0.02 0.01 0.06 -1 -1 0.02 0.00353747 0.00310566 11 2 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_008bits.v common 2.04 vpr 64.20 MiB -1 -1 0.08 17292 1 0.02 -1 -1 30412 -1 -1 2 17 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65740 17 9 62 63 1 37 28 17 17 289 -1 unnamed_device 25.8 MiB 0.02 414 113 1330 462 761 107 64.2 MiB 0.01 0.00 1.08519 0.863632 -19.4655 -0.863632 0.863632 0.24 7.1492e-05 6.3673e-05 0.00271864 0.0024388 -1 -1 -1 -1 36 227 19 6.95648e+06 28951.4 648988. 2245.63 0.80 0.0273823 0.0226313 26050 158493 -1 204 24 240 240 9992 3588 0.960732 0.960732 -19.2807 -0.960732 0 0 828058. 2865.25 0.03 0.01 0.09 -1 -1 0.03 0.00475944 0.00413697 13 2 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_009bits.v common 1.82 vpr 64.22 MiB -1 -1 0.07 17676 1 0.02 -1 -1 30504 -1 -1 4 19 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65760 19 10 69 70 1 44 33 17 17 289 -1 unnamed_device 26.0 MiB 0.01 576 162 1437 270 1089 78 64.2 MiB 0.01 0.00 1.21049 0.942216 -22.8893 -0.942216 0.942216 0.25 8.0589e-05 7.247e-05 0.00288505 0.00260561 -1 -1 -1 -1 28 407 14 6.95648e+06 57902.7 531479. 1839.03 0.62 0.0268499 0.0224668 24610 126494 -1 347 11 183 183 9263 3101 1.12523 1.12523 -26.3721 -1.12523 0 0 648988. 2245.63 0.02 0.01 0.07 -1 -1 0.02 0.00342604 0.00307793 15 2 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_010bits.v common 1.86 vpr 64.23 MiB -1 -1 0.07 17288 1 0.02 -1 -1 30580 -1 -1 4 21 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65776 21 11 76 77 1 49 36 17 17 289 -1 unnamed_device 26.0 MiB 0.01 520 184 2337 519 1327 491 64.2 MiB 0.02 0.00 1.24794 0.885632 -25.2091 -0.885632 0.885632 0.27 0.000211409 0.000196055 0.00901202 0.00834241 -1 -1 -1 -1 26 462 18 6.95648e+06 57902.7 503264. 1741.40 0.63 0.0323948 0.027762 24322 120374 -1 400 8 187 187 10890 3344 1.13623 1.13623 -29.2443 -1.13623 0 0 618332. 2139.56 0.02 0.01 0.06 -1 -1 0.02 0.00323174 0.00292301 17 2 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_011bits.v common 1.83 vpr 64.69 MiB -1 -1 0.08 17292 1 0.02 -1 -1 30460 -1 -1 4 23 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66244 23 12 83 84 1 55 39 17 17 289 -1 unnamed_device 26.0 MiB 0.01 534 277 1359 266 994 99 64.7 MiB 0.01 0.00 1.21049 0.896632 -29.2681 -0.896632 0.896632 0.24 0.000102723 9.3049e-05 0.00248701 0.00226248 -1 -1 -1 -1 26 624 17 6.95648e+06 57902.7 503264. 1741.40 0.62 0.0269366 0.0225295 24322 120374 -1 566 15 301 301 22333 5932 1.14723 1.14723 -34.2934 -1.14723 0 0 618332. 2139.56 0.02 0.02 0.07 -1 -1 0.02 0.00643446 0.005649 18 2 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_012bits.v common 1.96 vpr 64.30 MiB -1 -1 0.08 17276 1 0.02 -1 -1 30472 -1 -1 5 25 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65844 25 13 90 91 1 60 43 17 17 289 -1 unnamed_device 26.0 MiB 0.01 605 254 1693 316 1360 17 64.3 MiB 0.01 0.00 1.21049 0.918632 -30.3075 -0.918632 0.918632 0.24 0.000103531 9.3425e-05 0.00284467 0.00258122 -1 -1 -1 -1 32 569 15 6.95648e+06 72378.4 586450. 2029.24 0.77 0.0325078 0.0272267 25474 144626 -1 506 14 285 285 22039 5984 1.22853 1.22853 -34.5992 -1.22853 0 0 744469. 2576.02 0.03 0.01 0.08 -1 -1 0.03 0.00436826 0.00387944 20 2 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_013bits.v common 1.82 vpr 64.32 MiB -1 -1 0.08 17292 1 0.02 -1 -1 30468 -1 -1 5 27 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65864 27 14 97 98 1 66 46 17 17 289 -1 unnamed_device 26.0 MiB 0.01 744 314 2178 458 1695 25 64.3 MiB 0.01 0.00 1.21049 0.951632 -33.9892 -0.951632 0.951632 0.24 0.000114819 0.000103699 0.00366722 0.0033457 -1 -1 -1 -1 28 729 30 6.95648e+06 72378.4 531479. 1839.03 0.59 0.0449713 0.0380416 24610 126494 -1 631 18 403 403 32027 8373 1.22233 1.22233 -40.2654 -1.22233 0 0 648988. 2245.63 0.02 0.01 0.07 -1 -1 0.02 0.00544327 0.00480754 21 2 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_014bits.v common 2.39 vpr 64.40 MiB -1 -1 0.08 17292 1 0.02 -1 -1 30476 -1 -1 5 29 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65944 29 15 104 105 1 72 49 17 17 289 -1 unnamed_device 26.0 MiB 0.01 715 246 2719 848 1471 400 64.4 MiB 0.01 0.00 1.08519 0.951632 -35.364 -0.951632 0.951632 0.24 0.000119985 0.00010813 0.00428954 0.00389556 -1 -1 -1 -1 44 533 17 6.95648e+06 72378.4 787024. 2723.27 1.08 0.0446344 0.0377658 27778 195446 -1 386 18 374 374 20041 6339 1.17403 1.17403 -35.3751 -1.17403 0 0 997811. 3452.63 0.04 0.02 0.11 -1 -1 0.04 0.00650777 0.0057225 23 2 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_015bits.v common 1.98 vpr 64.38 MiB -1 -1 0.08 17292 1 0.02 -1 -1 30580 -1 -1 5 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65924 31 16 111 112 1 78 52 17 17 289 -1 unnamed_device 26.0 MiB 0.02 947 386 4223 898 3239 86 64.4 MiB 0.02 0.00 1.51236 1.33396 -39.9535 -1.33396 1.33396 0.25 0.000125213 0.000113182 0.00606356 0.00550845 -1 -1 -1 -1 32 807 18 6.95648e+06 72378.4 586450. 2029.24 0.72 0.0494094 0.0418264 25474 144626 -1 659 15 387 387 24365 6245 1.18923 1.18923 -44.8721 -1.18923 0 0 744469. 2576.02 0.03 0.01 0.08 -1 -1 0.03 0.00532077 0.00472633 24 2 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_016bits.v common 1.92 vpr 63.99 MiB -1 -1 0.07 17292 1 0.02 -1 -1 30592 -1 -1 5 33 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65524 33 17 118 119 1 81 55 17 17 289 -1 unnamed_device 25.5 MiB 0.03 897 292 5359 1572 3749 38 64.0 MiB 0.02 0.00 1.42436 1.34496 -41.6298 -1.34496 1.34496 0.24 0.000146972 0.000133743 0.00895157 0.00818407 -1 -1 -1 -1 28 855 20 6.95648e+06 72378.4 531479. 1839.03 0.68 0.0429958 0.0368254 24610 126494 -1 680 15 441 441 27345 8654 1.25523 1.25523 -49.8608 -1.25523 0 0 648988. 2245.63 0.02 0.01 0.07 -1 -1 0.02 0.00570309 0.00508006 25 2 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_018bits.v common 1.59 vpr 64.45 MiB -1 -1 0.08 16972 1 0.02 -1 -1 30596 -1 -1 5 37 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65992 37 19 132 133 1 87 61 17 17 289 -1 unnamed_device 26.0 MiB 0.04 989 557 3661 811 2737 113 64.4 MiB 0.01 0.00 1.38402 1.36696 -53.7585 -1.36696 1.36696 0.24 0.000151196 0.000137918 0.0054351 0.00496446 -1 -1 -1 -1 32 984 16 6.95648e+06 72378.4 586450. 2029.24 0.28 0.0245897 0.0212458 25474 144626 -1 928 14 431 431 37485 8753 1.19403 1.19403 -57.1717 -1.19403 0 0 744469. 2576.02 0.03 0.02 0.08 -1 -1 0.03 0.00601895 0.00536247 28 2 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_020bits.v common 2.18 vpr 64.49 MiB -1 -1 0.09 17292 1 0.02 -1 -1 30612 -1 -1 5 41 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66036 41 21 146 147 1 95 67 17 17 289 -1 unnamed_device 25.6 MiB 0.05 1132 525 3467 777 2624 66 64.5 MiB 0.01 0.00 1.51426 1.38896 -57.0848 -1.38896 1.38896 0.26 0.000165315 0.000150428 0.00501244 0.00458007 -1 -1 -1 -1 32 1043 16 6.95648e+06 72378.4 586450. 2029.24 0.86 0.0505249 0.043321 25474 144626 -1 950 14 459 459 34737 8669 1.26433 1.26433 -61.56 -1.26433 0 0 744469. 2576.02 0.03 0.02 0.08 -1 -1 0.03 0.00639534 0.00570402 31 2 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_022bits.v common 2.13 vpr 64.66 MiB -1 -1 0.08 18056 1 0.02 -1 -1 30392 -1 -1 6 45 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66212 45 23 160 161 1 107 74 17 17 289 -1 unnamed_device 26.0 MiB 0.06 1395 720 9374 2928 5809 637 64.7 MiB 0.03 0.00 1.94326 1.41096 -67.4934 -1.41096 1.41096 0.24 0.000179143 0.000161835 0.0118445 0.0107473 -1 -1 -1 -1 32 1231 22 6.95648e+06 86854.1 586450. 2029.24 0.83 0.0574222 0.0494085 25474 144626 -1 1160 21 653 653 58712 13516 1.14573 1.14573 -69.9279 -1.14573 0 0 744469. 2576.02 0.03 0.02 0.08 -1 -1 0.03 0.00885175 0.00782168 34 2 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_024bits.v common 2.11 vpr 65.07 MiB -1 -1 0.10 17672 1 0.02 -1 -1 30272 -1 -1 8 49 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66628 49 25 174 175 1 119 82 17 17 289 -1 unnamed_device 26.0 MiB 0.02 1602 875 11296 4663 6552 81 65.1 MiB 0.03 0.00 1.65536 1.43296 -76.7183 -1.43296 1.43296 0.24 0.000189893 0.000172131 0.0130603 0.0118943 -1 -1 -1 -1 30 1506 17 6.95648e+06 115805 556674. 1926.21 0.83 0.0582935 0.050607 25186 138497 -1 1370 17 571 571 54770 11916 1.28823 1.28823 -81.6474 -1.28823 0 0 706193. 2443.58 0.03 0.02 0.07 -1 -1 0.03 0.00827919 0.00738448 38 2 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_028bits.v common 2.09 vpr 64.95 MiB -1 -1 0.08 17524 1 0.02 -1 -1 30408 -1 -1 9 57 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66508 57 29 202 203 1 142 95 17 17 289 -1 unnamed_device 25.8 MiB 0.03 1871 751 14351 6043 8202 106 64.9 MiB 0.05 0.00 1.69936 1.47696 -84.2177 -1.47696 1.47696 0.26 0.00025281 0.000232884 0.0189336 0.0173294 -1 -1 -1 -1 36 1780 37 6.95648e+06 130281 648988. 2245.63 0.68 0.0738443 0.0650373 26050 158493 -1 1305 15 703 703 67106 17088 1.38723 1.38723 -87.9196 -1.38723 0 0 828058. 2865.25 0.03 0.02 0.08 -1 -1 0.03 0.00845282 0.00760553 44 2 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_032bits.v common 3.60 vpr 64.95 MiB -1 -1 0.08 17672 1 0.02 -1 -1 30488 -1 -1 9 65 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66512 65 33 230 231 1 162 107 17 17 289 -1 unnamed_device 25.6 MiB 0.04 2158 934 16805 5000 11266 539 65.0 MiB 0.05 0.00 2.38249 1.88129 -98.7696 -1.88129 1.88129 0.24 0.000303935 0.000278354 0.0207064 0.0189746 -1 -1 -1 -1 38 1674 26 6.95648e+06 130281 678818. 2348.85 2.21 0.140338 0.12286 26626 170182 -1 1466 19 712 712 60228 14581 1.42923 1.42923 -101.586 -1.42923 0 0 902133. 3121.57 0.03 0.03 0.09 -1 -1 0.03 0.0124642 0.0111288 50 2 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_048bits.v common 5.32 vpr 65.69 MiB -1 -1 0.09 18056 1 0.03 -1 -1 30676 -1 -1 14 97 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 67268 97 49 342 343 1 243 160 17 17 289 -1 unnamed_device 26.0 MiB 0.05 3293 1259 31408 11237 18751 1420 65.7 MiB 0.12 0.00 3.01593 2.41762 -155.703 -2.41762 2.41762 0.24 0.000535888 0.000504263 0.0416623 0.0386032 -1 -1 -1 -1 44 2684 47 6.95648e+06 202660 787024. 2723.27 3.76 0.245906 0.220222 27778 195446 -1 1982 16 1061 1061 74106 21007 1.49803 1.49803 -146.918 -1.49803 0 0 997811. 3452.63 0.04 0.04 0.11 -1 -1 0.04 0.0198303 0.0181925 74 2 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_064bits.v common 6.94 vpr 66.18 MiB -1 -1 0.11 18060 1 0.03 -1 -1 31072 -1 -1 19 129 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 67772 129 65 454 455 1 324 213 17 17 289 -1 unnamed_device 26.7 MiB 0.07 3762 2182 38948 14587 22700 1661 66.2 MiB 0.13 0.00 3.20455 2.95395 -240.326 -2.95395 2.95395 0.26 0.000547665 0.000501165 0.0444461 0.0412839 -1 -1 -1 -1 50 3474 25 6.95648e+06 275038 902133. 3121.57 5.29 0.304726 0.275791 28642 213929 -1 3073 18 1288 1288 126497 27318 1.73803 1.73803 -210.594 -1.73803 0 0 1.08113e+06 3740.92 0.04 0.05 0.12 -1 -1 0.04 0.0218877 0.0200306 98 2 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_004bits.v common 1.76 vpr 63.88 MiB -1 -1 0.07 17288 1 0.02 -1 -1 30452 -1 -1 1 9 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65408 9 5 34 35 1 15 15 17 17 289 -1 unnamed_device 25.2 MiB 0.01 186 45 267 64 194 9 63.9 MiB 0.01 0.00 0.942216 0.583992 -8.95387 -0.583992 0.583992 0.27 9.642e-05 8.6132e-05 0.00173469 0.00157219 -1 -1 -1 -1 26 120 11 6.99608e+06 14715.7 503264. 1741.40 0.55 0.0162204 0.0134467 24322 120374 -1 101 6 38 38 2806 921 0.62144 0.62144 -9.63407 -0.62144 0 0 618332. 2139.56 0.02 0.00 0.06 -1 -1 0.02 0.00190368 0.00176174 7 2 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_005bits.v common 1.53 vpr 63.97 MiB -1 -1 0.09 17280 1 0.02 -1 -1 30452 -1 -1 1 11 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65508 11 6 41 42 1 19 18 17 17 289 -1 unnamed_device 25.2 MiB 0.01 206 60 386 72 298 16 64.0 MiB 0.00 0.00 1.08519 0.688132 -11.7579 -0.688132 0.688132 0.24 4.9355e-05 4.3273e-05 0.00110663 0.000977756 -1 -1 -1 -1 20 177 10 6.99608e+06 14715.7 414966. 1435.87 0.36 0.0132997 0.0108769 23170 95770 -1 128 8 54 54 2540 835 0.688132 0.688132 -12.43 -0.688132 0 0 503264. 1741.40 0.02 0.01 0.05 -1 -1 0.02 0.00224508 0.00204327 8 2 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_006bits.v common 1.74 vpr 64.00 MiB -1 -1 0.08 17672 1 0.02 -1 -1 30444 -1 -1 2 13 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65540 13 7 48 49 1 25 22 17 17 289 -1 unnamed_device 25.2 MiB 0.01 291 91 802 202 586 14 64.0 MiB 0.01 0.00 1.08519 0.791432 -14.38 -0.791432 0.791432 0.24 5.7432e-05 5.0618e-05 0.00186067 0.0016455 -1 -1 -1 -1 24 211 13 6.99608e+06 29431.4 470940. 1629.55 0.58 0.0141922 0.0118181 24034 113901 -1 186 9 62 62 4604 1471 0.74674 0.74674 -15.8342 -0.74674 0 0 586450. 2029.24 0.02 0.01 0.06 -1 -1 0.02 0.00248933 0.00225819 10 2 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_007bits.v common 1.41 vpr 63.98 MiB -1 -1 0.07 17148 1 0.02 -1 -1 30384 -1 -1 2 15 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65520 15 8 55 56 1 31 25 17 17 289 -1 unnamed_device 25.2 MiB 0.01 413 101 1141 323 690 128 64.0 MiB 0.01 0.00 1.32908 0.813432 -17.1707 -0.813432 0.813432 0.24 6.8128e-05 6.0125e-05 0.00245567 0.00217768 -1 -1 -1 -1 26 236 14 6.99608e+06 29431.4 503264. 1741.40 0.24 0.0112923 0.00955798 24322 120374 -1 213 10 123 123 5123 1883 1.05303 1.05303 -17.8815 -1.05303 0 0 618332. 2139.56 0.02 0.01 0.07 -1 -1 0.02 0.00287929 0.00258091 11 2 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_008bits.v common 2.02 vpr 63.92 MiB -1 -1 0.08 17292 1 0.02 -1 -1 30296 -1 -1 2 17 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65456 17 9 62 63 1 36 28 17 17 289 -1 unnamed_device 25.2 MiB 0.01 412 114 1036 306 641 89 63.9 MiB 0.01 0.00 1.08519 0.835432 -18.9954 -0.835432 0.835432 0.24 7.2216e-05 6.4252e-05 0.00218686 0.00196004 -1 -1 -1 -1 34 284 21 6.99608e+06 29431.4 618332. 2139.56 0.78 0.0217316 0.0180549 25762 151098 -1 205 20 201 201 7279 2639 1.07503 1.07503 -18.5674 -1.07503 0 0 787024. 2723.27 0.03 0.01 0.08 -1 -1 0.03 0.0047822 0.0041629 13 2 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_009bits.v common 1.68 vpr 64.01 MiB -1 -1 0.08 17176 1 0.02 -1 -1 30448 -1 -1 4 19 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65544 19 10 69 70 1 43 33 17 17 289 -1 unnamed_device 25.6 MiB 0.01 574 154 1021 173 815 33 64.0 MiB 0.01 0.00 1.21049 0.846432 -22.178 -0.846432 0.846432 0.24 8.0462e-05 7.2111e-05 0.0020042 0.00180492 -1 -1 -1 -1 26 362 13 6.99608e+06 58862.7 503264. 1741.40 0.45 0.0218403 0.0182256 24322 120374 -1 330 13 193 193 10182 3468 0.949732 0.949732 -24.4664 -0.949732 0 0 618332. 2139.56 0.03 0.01 0.07 -1 -1 0.03 0.00473314 0.00420055 15 2 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_010bits.v common 1.97 vpr 63.70 MiB -1 -1 0.10 17292 1 0.02 -1 -1 29980 -1 -1 4 21 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65232 21 11 76 77 1 48 36 17 17 289 -1 unnamed_device 24.9 MiB 0.01 544 162 2809 951 1377 481 63.7 MiB 0.01 0.00 1.28156 0.868432 -24.3114 -0.868432 0.868432 0.24 8.8769e-05 7.9646e-05 0.00476361 0.00427393 -1 -1 -1 -1 28 474 31 6.99608e+06 58862.7 531479. 1839.03 0.72 0.0313156 0.026165 24610 126494 -1 395 21 314 314 24439 8382 1.18933 1.18933 -28.8206 -1.18933 0 0 648988. 2245.63 0.02 0.01 0.07 -1 -1 0.02 0.00500055 0.00434835 17 2 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_011bits.v common 1.83 vpr 64.16 MiB -1 -1 0.07 17288 1 0.02 -1 -1 30468 -1 -1 4 23 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65700 23 12 83 84 1 54 39 17 17 289 -1 unnamed_device 25.2 MiB 0.02 532 273 1689 330 1171 188 64.2 MiB 0.01 0.00 1.21049 0.879432 -28.131 -0.879432 0.879432 0.25 9.8313e-05 8.8651e-05 0.00296163 0.00268092 -1 -1 -1 -1 26 623 18 6.99608e+06 58862.7 503264. 1741.40 0.58 0.0264777 0.0222433 24322 120374 -1 544 11 270 270 18431 5072 1.06403 1.06403 -32.3971 -1.06403 0 0 618332. 2139.56 0.03 0.01 0.06 -1 -1 0.03 0.00372252 0.00333072 18 2 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_012bits.v common 1.49 vpr 63.78 MiB -1 -1 0.09 17532 1 0.02 -1 -1 29624 -1 -1 5 25 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65308 25 13 90 91 1 60 43 17 17 289 -1 unnamed_device 25.2 MiB 0.01 605 273 1918 408 1463 47 63.8 MiB 0.01 0.00 1.21049 0.901432 -30.2851 -0.901432 0.901432 0.24 0.000122347 0.00010992 0.00370936 0.00334849 -1 -1 -1 -1 30 586 14 6.99608e+06 73578.4 556674. 1926.21 0.26 0.0184953 0.0158493 25186 138497 -1 510 14 299 299 21856 6077 0.960732 0.960732 -33.5462 -0.960732 0 0 706193. 2443.58 0.03 0.01 0.07 -1 -1 0.03 0.00446628 0.00395407 20 2 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_013bits.v common 1.54 vpr 64.18 MiB -1 -1 0.08 17532 1 0.02 -1 -1 29884 -1 -1 5 27 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65724 27 14 97 98 1 66 46 17 17 289 -1 unnamed_device 25.2 MiB 0.01 744 364 2014 346 1605 63 64.2 MiB 0.01 0.00 1.21049 0.912432 -34.6536 -0.912432 0.912432 0.25 0.000108566 9.8528e-05 0.00327897 0.00298316 -1 -1 -1 -1 30 765 14 6.99608e+06 73578.4 556674. 1926.21 0.30 0.0179499 0.0154263 25186 138497 -1 657 19 383 383 37818 8969 0.982732 0.982732 -38.8617 -0.982732 0 0 706193. 2443.58 0.03 0.02 0.07 -1 -1 0.03 0.00548102 0.00480409 21 2 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_014bits.v common 2.12 vpr 64.19 MiB -1 -1 0.08 17288 1 0.02 -1 -1 29860 -1 -1 5 29 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65732 29 15 104 105 1 72 49 17 17 289 -1 unnamed_device 25.2 MiB 0.01 715 308 2897 867 1495 535 64.2 MiB 0.01 0.00 1.08519 0.934432 -37.2603 -0.934432 0.934432 0.33 0.000116353 0.000104472 0.00436136 0.00394087 -1 -1 -1 -1 32 659 19 6.99608e+06 73578.4 586450. 2029.24 0.80 0.0405173 0.0342335 25474 144626 -1 503 15 316 316 16770 4951 1.16303 1.16303 -40.3804 -1.16303 0 0 744469. 2576.02 0.03 0.01 0.08 -1 -1 0.03 0.0051829 0.00463108 23 2 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_015bits.v common 1.80 vpr 64.21 MiB -1 -1 0.09 17292 1 0.02 -1 -1 30580 -1 -1 5 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65752 31 16 111 112 1 78 52 17 17 289 -1 unnamed_device 25.6 MiB 0.02 947 388 3253 747 2424 82 64.2 MiB 0.01 0.00 1.42821 1.30576 -39.7527 -1.30576 1.30576 0.25 0.000129015 0.00011721 0.00479255 0.00434749 -1 -1 -1 -1 28 808 13 6.99608e+06 73578.4 531479. 1839.03 0.56 0.0401269 0.0342676 24610 126494 -1 760 16 423 423 35677 9110 1.21603 1.21603 -47.1369 -1.21603 0 0 648988. 2245.63 0.02 0.02 0.07 -1 -1 0.02 0.00554708 0.00489858 24 2 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_016bits.v common 1.56 vpr 64.61 MiB -1 -1 0.08 17208 1 0.02 -1 -1 30504 -1 -1 5 33 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66164 33 17 118 119 1 81 55 17 17 289 -1 unnamed_device 25.6 MiB 0.02 897 288 5359 1501 3812 46 64.6 MiB 0.02 0.00 1.30576 1.30576 -40.7923 -1.30576 1.30576 0.25 0.000132561 0.000119799 0.00752722 0.00683641 -1 -1 -1 -1 30 796 21 6.99608e+06 73578.4 556674. 1926.21 0.29 0.0264633 0.0229296 25186 138497 -1 638 17 446 446 28249 8724 1.18303 1.18303 -46.7155 -1.18303 0 0 706193. 2443.58 0.03 0.02 0.08 -1 -1 0.03 0.00605321 0.00534917 25 2 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_018bits.v common 1.61 vpr 64.26 MiB -1 -1 0.08 17288 1 0.02 -1 -1 30600 -1 -1 5 37 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65804 37 19 132 133 1 87 61 17 17 289 -1 unnamed_device 25.8 MiB 0.02 989 450 4021 893 3044 84 64.3 MiB 0.03 0.00 1.32776 1.32776 -49.3309 -1.32776 1.32776 0.26 0.000194239 0.000178028 0.0126807 0.0117646 -1 -1 -1 -1 32 953 19 6.99608e+06 73578.4 586450. 2029.24 0.31 0.034915 0.0307218 25474 144626 -1 817 18 437 437 34491 8677 1.20503 1.20503 -54.2468 -1.20503 0 0 744469. 2576.02 0.03 0.02 0.08 -1 -1 0.03 0.00691724 0.00608941 28 2 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_020bits.v common 1.98 vpr 64.36 MiB -1 -1 0.09 17672 1 0.02 -1 -1 30592 -1 -1 5 41 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65900 41 21 146 147 1 94 67 17 17 289 -1 unnamed_device 25.6 MiB 0.02 1130 644 6459 1750 4153 556 64.4 MiB 0.02 0.00 1.37991 1.36076 -60.916 -1.36076 1.36076 0.24 0.000186114 0.000159098 0.00851737 0.00776238 -1 -1 -1 -1 28 1184 20 6.99608e+06 73578.4 531479. 1839.03 0.70 0.0567692 0.0484959 24610 126494 -1 1093 14 462 462 43065 9987 1.23803 1.23803 -65.8346 -1.23803 0 0 648988. 2245.63 0.02 0.02 0.07 -1 -1 0.02 0.00635108 0.00565899 31 2 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_022bits.v common 1.62 vpr 63.93 MiB -1 -1 0.11 17148 1 0.02 -1 -1 30656 -1 -1 6 45 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65460 45 23 160 161 1 108 74 17 17 289 -1 unnamed_device 24.9 MiB 0.03 1397 728 9374 2538 6055 781 63.9 MiB 0.03 0.00 1.83711 1.38276 -66.0973 -1.38276 1.38276 0.24 0.000421305 0.000392051 0.0145023 0.0133388 -1 -1 -1 -1 30 1267 16 6.99608e+06 88294.1 556674. 1926.21 0.31 0.0443588 0.0391372 25186 138497 -1 1146 13 440 440 28479 7142 1.15673 1.15673 -68.519 -1.15673 0 0 706193. 2443.58 0.03 0.02 0.07 -1 -1 0.03 0.00717088 0.00635823 34 2 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_024bits.v common 2.14 vpr 64.93 MiB -1 -1 0.09 17676 1 0.02 -1 -1 30288 -1 -1 8 49 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66484 49 25 174 175 1 118 82 17 17 289 -1 unnamed_device 25.7 MiB 0.02 1600 609 11118 4682 6348 88 64.9 MiB 0.03 0.00 1.65536 1.40476 -68.6076 -1.40476 1.40476 0.24 0.000192685 0.000175179 0.013002 0.0118038 -1 -1 -1 -1 30 1317 28 6.99608e+06 117725 556674. 1926.21 0.88 0.0663127 0.0573583 25186 138497 -1 982 17 599 599 43750 10782 1.16103 1.16103 -67.9571 -1.16103 0 0 706193. 2443.58 0.03 0.02 0.07 -1 -1 0.03 0.00887636 0.00795704 38 2 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_028bits.v common 2.51 vpr 65.07 MiB -1 -1 0.10 17912 1 0.02 -1 -1 30284 -1 -1 9 57 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66628 57 29 202 203 1 141 95 17 17 289 -1 unnamed_device 25.6 MiB 0.02 1869 719 13271 4497 7728 1046 65.1 MiB 0.04 0.00 1.58221 1.43776 -79.3712 -1.43776 1.43776 0.24 0.000217566 0.000198096 0.0173582 0.0159508 -1 -1 -1 -1 34 1601 28 6.99608e+06 132441 618332. 2139.56 1.19 0.099017 0.0862434 25762 151098 -1 1295 17 702 702 53061 13956 1.37433 1.37433 -84.6639 -1.37433 0 0 787024. 2723.27 0.03 0.02 0.08 -1 -1 0.03 0.00914594 0.00817613 44 2 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_032bits.v common 2.77 vpr 65.24 MiB -1 -1 0.08 18056 1 0.02 -1 -1 30492 -1 -1 9 65 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66804 65 33 230 231 1 162 107 17 17 289 -1 unnamed_device 25.6 MiB 0.03 2158 1080 17058 5311 10070 1677 65.2 MiB 0.05 0.00 2.34329 1.84209 -99.1139 -1.84209 1.84209 0.24 0.000250746 0.000228637 0.018226 0.0166736 -1 -1 -1 -1 36 1981 22 6.99608e+06 132441 648988. 2245.63 1.44 0.11215 0.0976804 26050 158493 -1 1764 16 796 796 77458 17982 1.37903 1.37903 -104.657 -1.37903 0 0 828058. 2865.25 0.03 0.03 0.08 -1 -1 0.03 0.00997723 0.00895521 50 2 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_048bits.v common 3.12 vpr 65.53 MiB -1 -1 0.10 17672 1 0.03 -1 -1 30532 -1 -1 14 97 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 67100 97 49 342 343 1 243 160 17 17 289 -1 unnamed_device 25.6 MiB 0.05 3293 1263 31408 11283 18785 1340 65.5 MiB 0.10 0.00 2.89877 2.37842 -153.027 -2.37842 2.37842 0.26 0.000379941 0.000348214 0.0356847 0.033099 -1 -1 -1 -1 50 2197 19 6.99608e+06 206020 902133. 3121.57 1.49 0.152329 0.136311 28642 213929 -1 2047 17 1015 1015 78973 21212 1.47368 1.47368 -147.234 -1.47368 0 0 1.08113e+06 3740.92 0.04 0.03 0.17 -1 -1 0.04 0.0150746 0.0136766 74 2 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_064bits.v common 3.03 vpr 65.97 MiB -1 -1 0.10 18060 1 0.03 -1 -1 30700 -1 -1 19 129 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 67556 129 65 454 455 1 324 213 17 17 289 -1 unnamed_device 26.0 MiB 0.05 3762 2182 38948 13884 22833 2231 66.0 MiB 0.12 0.00 3.16535 2.91475 -237.268 -2.91475 2.91475 0.24 0.000532882 0.000491782 0.0366132 0.0339179 -1 -1 -1 -1 46 3578 33 6.99608e+06 279598 828058. 2865.25 1.39 0.226092 0.205022 28066 200906 -1 3173 24 1362 1362 170597 51692 1.82318 1.82318 -216.988 -1.82318 0 0 1.01997e+06 3529.29 0.03 0.07 0.11 -1 -1 0.03 0.0289523 0.0263375 98 2 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_004bits.v common 1.36 vpr 63.47 MiB -1 -1 0.08 17672 2 0.04 -1 -1 32076 -1 -1 1 9 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 64992 9 5 28 33 1 16 15 17 17 289 -1 unnamed_device 25.2 MiB 0.01 190 69 267 63 197 7 63.5 MiB 0.00 0.00 0.959892 0.808785 -10.8404 -0.808785 0.808785 0.24 4.0591e-05 3.4926e-05 0.000844916 0.000740121 -1 -1 -1 -1 20 125 6 6.79088e+06 13472 414966. 1435.87 0.18 0.00616629 0.00514699 22510 95286 -1 114 5 38 38 1680 588 0.808785 0.808785 -10.5741 -0.808785 0 0 503264. 1741.40 0.02 0.00 0.05 -1 -1 0.02 0.00198176 0.00182255 8 6 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_005bits.v common 1.49 vpr 63.48 MiB -1 -1 0.08 17676 2 0.04 -1 -1 31880 -1 -1 2 11 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65000 11 6 34 40 1 22 19 17 17 289 -1 unnamed_device 25.2 MiB 0.01 237 124 294 77 210 7 63.5 MiB 0.00 0.00 1.08519 0.895372 -14.2654 -0.895372 0.895372 0.25 5.1318e-05 4.36e-05 0.000887019 0.00078346 -1 -1 -1 -1 20 223 7 6.79088e+06 26944 414966. 1435.87 0.32 0.00407653 0.00359076 22510 95286 -1 197 9 74 88 4199 1287 0.847985 0.847985 -14.325 -0.847985 0 0 503264. 1741.40 0.03 0.01 0.05 -1 -1 0.03 0.0043613 0.00391642 10 7 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_006bits.v common 1.49 vpr 63.49 MiB -1 -1 0.08 17288 3 0.04 -1 -1 31772 -1 -1 2 13 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65012 13 7 41 48 1 29 22 17 17 289 -1 unnamed_device 24.9 MiB 0.01 297 103 502 102 394 6 63.5 MiB 0.00 0.00 1.31004 1.18474 -16.2273 -1.18474 1.18474 0.25 5.7959e-05 5.086e-05 0.00129722 0.0011576 -1 -1 -1 -1 20 283 14 6.79088e+06 26944 414966. 1435.87 0.32 0.00607195 0.00526806 22510 95286 -1 218 8 98 101 4560 1562 1.0952 1.0952 -17.4931 -1.0952 0 0 503264. 1741.40 0.02 0.01 0.05 -1 -1 0.02 0.00275122 0.00250367 11 9 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_007bits.v common 1.91 vpr 63.89 MiB -1 -1 0.07 17284 3 0.04 -1 -1 31928 -1 -1 2 15 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65428 15 8 47 55 1 35 25 17 17 289 -1 unnamed_device 25.2 MiB 0.03 389 109 1105 258 733 114 63.9 MiB 0.01 0.00 1.27433 1.27433 -19.2536 -1.27433 1.27433 0.24 6.8729e-05 6.0936e-05 0.0024328 0.00217642 -1 -1 -1 -1 32 295 19 6.79088e+06 26944 586450. 2029.24 0.68 0.0217585 0.018043 24814 144142 -1 212 12 156 171 7381 2715 1.27433 1.27433 -19.107 -1.27433 0 0 744469. 2576.02 0.03 0.01 0.08 -1 -1 0.03 0.0030553 0.00271194 13 10 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_008bits.v common 1.44 vpr 63.89 MiB -1 -1 0.08 17288 3 0.04 -1 -1 31768 -1 -1 4 17 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65420 17 9 56 65 1 41 30 17 17 289 -1 unnamed_device 25.2 MiB 0.04 528 162 904 175 711 18 63.9 MiB 0.01 0.00 2.22292 1.77558 -23.4463 -1.77558 1.77558 0.24 8.5703e-05 7.68e-05 0.00204702 0.0018497 -1 -1 -1 -1 26 384 8 6.79088e+06 53888 503264. 1741.40 0.22 0.0119036 0.0101708 23662 119890 -1 313 8 128 171 7108 2250 1.52498 1.52498 -24.0319 -1.52498 0 0 618332. 2139.56 0.02 0.01 0.06 -1 -1 0.02 0.0031214 0.00284335 16 14 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_009bits.v common 1.84 vpr 63.89 MiB -1 -1 0.08 17144 4 0.05 -1 -1 31972 -1 -1 3 19 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65420 19 10 60 70 1 46 32 17 17 289 -1 unnamed_device 25.2 MiB 0.05 575 149 1332 372 880 80 63.9 MiB 0.01 0.00 2.02618 1.65028 -26.6546 -1.65028 1.65028 0.24 0.000198805 0.000183359 0.00372621 0.00341121 -1 -1 -1 -1 26 487 47 6.79088e+06 40416 503264. 1741.40 0.57 0.0391972 0.0328016 23662 119890 -1 356 12 222 252 10601 3951 1.56413 1.56413 -27.5075 -1.56413 0 0 618332. 2139.56 0.02 0.01 0.06 -1 -1 0.02 0.00371953 0.00332621 17 13 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_010bits.v common 1.93 vpr 63.59 MiB -1 -1 0.07 17284 4 0.04 -1 -1 32008 -1 -1 4 21 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65112 21 11 69 80 1 55 36 17 17 289 -1 unnamed_device 24.9 MiB 0.07 708 319 1334 274 1048 12 63.6 MiB 0.01 0.00 2.17674 1.77558 -33.7347 -1.77558 1.77558 0.24 9.831e-05 8.865e-05 0.00273705 0.00248438 -1 -1 -1 -1 26 585 13 6.79088e+06 53888 503264. 1741.40 0.68 0.0343214 0.0289106 23662 119890 -1 532 19 211 275 14877 3813 1.72868 1.72868 -33.9654 -1.72868 0 0 618332. 2139.56 0.02 0.02 0.07 -1 -1 0.02 0.00698685 0.00606662 21 17 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_011bits.v common 1.44 vpr 63.59 MiB -1 -1 0.09 17288 5 0.04 -1 -1 31996 -1 -1 4 23 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65112 23 12 76 88 1 59 39 17 17 289 -1 unnamed_device 25.1 MiB 0.04 647 309 2349 586 1604 159 63.6 MiB 0.01 0.00 2.04408 1.90432 -35.544 -1.90432 1.90432 0.24 0.000118238 0.000107457 0.00490813 0.00447316 -1 -1 -1 -1 26 651 11 6.79088e+06 53888 503264. 1741.40 0.23 0.0188926 0.0162985 23662 119890 -1 557 13 225 288 14298 4157 1.72868 1.72868 -36.0207 -1.72868 0 0 618332. 2139.56 0.02 0.01 0.06 -1 -1 0.02 0.0045407 0.0040569 23 19 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_012bits.v common 1.82 vpr 63.65 MiB -1 -1 0.08 17516 5 0.05 -1 -1 31860 -1 -1 4 25 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65180 25 13 83 96 1 65 42 17 17 289 -1 unnamed_device 25.2 MiB 0.07 871 230 2202 525 1546 131 63.7 MiB 0.01 0.00 2.31598 1.85398 -36.7003 -1.85398 1.85398 0.25 0.000112926 0.000101939 0.00483927 0.00441732 -1 -1 -1 -1 20 809 29 6.79088e+06 53888 414966. 1435.87 0.54 0.033559 0.0286641 22510 95286 -1 597 14 328 396 18535 6435 2.01504 2.01504 -43.369 -2.01504 0 0 503264. 1741.40 0.02 0.01 0.05 -1 -1 0.02 0.00495567 0.00441734 24 21 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_013bits.v common 1.99 vpr 63.71 MiB -1 -1 0.08 17672 5 0.05 -1 -1 31776 -1 -1 5 27 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65236 27 14 91 105 1 70 46 17 17 289 -1 unnamed_device 24.9 MiB 0.06 882 344 1932 345 1559 28 63.7 MiB 0.01 0.00 2.6855 2.15497 -44.0983 -2.15497 2.15497 0.26 0.00012923 0.000116991 0.00634604 0.00588021 -1 -1 -1 -1 26 843 14 6.79088e+06 67360 503264. 1741.40 0.65 0.046643 0.0397556 23662 119890 -1 678 12 273 372 26621 7251 1.97933 1.97933 -46.0263 -1.97933 0 0 618332. 2139.56 0.02 0.01 0.06 -1 -1 0.02 0.00500649 0.00451197 28 24 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_014bits.v common 1.58 vpr 64.08 MiB -1 -1 0.09 17668 6 0.05 -1 -1 32044 -1 -1 5 29 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65616 29 15 95 110 1 77 49 17 17 289 -1 unnamed_device 25.3 MiB 0.05 1027 432 5478 2270 3186 22 64.1 MiB 0.02 0.00 3.53332 2.40562 -50.8745 -2.40562 2.40562 0.24 0.00012953 0.000116903 0.00875141 0.00792578 -1 -1 -1 -1 26 972 22 6.79088e+06 67360 503264. 1741.40 0.27 0.026757 0.0231561 23662 119890 -1 813 31 380 500 68442 36152 2.34404 2.34404 -53.3106 -2.34404 0 0 618332. 2139.56 0.02 0.04 0.06 -1 -1 0.02 0.00949754 0.00825964 29 23 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_015bits.v common 1.96 vpr 63.75 MiB -1 -1 0.08 17668 6 0.05 -1 -1 32072 -1 -1 6 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65280 31 16 104 120 1 82 53 17 17 289 -1 unnamed_device 25.2 MiB 0.05 1014 332 2825 621 2166 38 63.8 MiB 0.01 0.00 2.52053 2.31609 -50.7794 -2.31609 2.31609 0.24 0.000146686 0.000133027 0.00493021 0.0044852 -1 -1 -1 -1 28 819 17 6.79088e+06 80832 531479. 1839.03 0.68 0.0346292 0.0295211 23950 126010 -1 700 16 321 385 20195 6380 2.14045 2.14045 -51.9148 -2.14045 0 0 648988. 2245.63 0.02 0.02 0.07 -1 -1 0.02 0.00685052 0.00607808 32 27 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_016bits.v common 2.08 vpr 64.12 MiB -1 -1 0.09 17284 7 0.05 -1 -1 31992 -1 -1 6 33 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65664 33 17 112 129 1 84 56 17 17 289 -1 unnamed_device 25.2 MiB 0.05 981 364 5834 2362 3388 84 64.1 MiB 0.02 0.00 3.03218 2.65628 -57.1434 -2.65628 2.65628 0.24 0.000153552 0.000139165 0.00916918 0.00832645 -1 -1 -1 -1 28 825 26 6.79088e+06 80832 531479. 1839.03 0.76 0.0497422 0.0426136 23950 126010 -1 754 12 389 525 31208 9149 2.35534 2.35534 -56.5683 -2.35534 0 0 648988. 2245.63 0.03 0.02 0.08 -1 -1 0.03 0.00611811 0.00546681 33 30 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_018bits.v common 2.04 vpr 63.85 MiB -1 -1 0.09 17676 7 0.05 -1 -1 32128 -1 -1 8 37 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65380 37 19 127 146 1 96 64 17 17 289 -1 unnamed_device 25.2 MiB 0.13 1255 408 5906 1307 4456 143 63.8 MiB 0.02 0.00 3.06794 2.69204 -66.697 -2.69204 2.69204 0.24 0.000169757 0.000154163 0.00883051 0.00803267 -1 -1 -1 -1 26 850 20 6.79088e+06 107776 503264. 1741.40 0.64 0.061747 0.0530635 23662 119890 -1 828 12 334 421 23186 6922 2.56674 2.56674 -68.0786 -2.56674 0 0 618332. 2139.56 0.02 0.01 0.07 -1 -1 0.02 0.00646752 0.00580998 38 35 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_020bits.v common 2.29 vpr 63.94 MiB -1 -1 0.09 18052 8 0.05 -1 -1 31900 -1 -1 9 41 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65472 41 21 139 160 1 108 71 17 17 289 -1 unnamed_device 24.9 MiB 0.06 1178 630 4451 946 3195 310 63.9 MiB 0.02 0.00 3.80452 2.99647 -79.4241 -2.99647 2.99647 0.24 0.000199504 0.000182052 0.00819958 0.00754271 -1 -1 -1 -1 34 1193 25 6.79088e+06 121248 618332. 2139.56 0.97 0.0654025 0.0565595 25102 150614 -1 1046 11 350 457 27043 7039 2.68439 2.68439 -78.9303 -2.68439 0 0 787024. 2723.27 0.03 0.01 0.08 -1 -1 0.03 0.00654397 0.00592552 42 37 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_022bits.v common 2.15 vpr 64.02 MiB -1 -1 0.10 17528 9 0.08 -1 -1 31888 -1 -1 9 45 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65556 45 23 153 176 1 118 77 17 17 289 -1 unnamed_device 24.9 MiB 0.11 1410 509 4641 949 3407 285 64.0 MiB 0.02 0.00 3.62894 3.32208 -86.6758 -3.32208 3.32208 0.25 0.000206959 0.000188772 0.00822889 0.00760191 -1 -1 -1 -1 28 1187 12 6.79088e+06 121248 531479. 1839.03 0.71 0.0623315 0.0544139 23950 126010 -1 1044 12 432 572 31808 9303 3.14645 3.14645 -89.0297 -3.14645 0 0 648988. 2245.63 0.02 0.02 0.06 -1 -1 0.02 0.00724595 0.00656483 45 41 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_024bits.v common 2.47 vpr 64.10 MiB -1 -1 0.10 17668 10 0.05 -1 -1 32108 -1 -1 10 49 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65640 49 25 166 191 1 129 84 17 17 289 -1 unnamed_device 24.9 MiB 0.14 1438 732 6672 1366 5033 273 64.1 MiB 0.03 0.00 3.77644 3.52584 -100.737 -3.52584 3.52584 0.24 0.000258531 0.000234864 0.0107348 0.00981197 -1 -1 -1 -1 30 1449 21 6.79088e+06 134720 556674. 1926.21 1.01 0.0803002 0.0698811 24526 138013 -1 1282 14 482 592 37126 9650 3.311 3.311 -102.297 -3.311 0 0 706193. 2443.58 0.03 0.02 0.07 -1 -1 0.03 0.00930377 0.00838084 48 44 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_028bits.v common 2.33 vpr 64.77 MiB -1 -1 0.10 18056 11 0.06 -1 -1 32128 -1 -1 12 57 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66324 57 29 198 227 1 154 98 17 17 289 -1 unnamed_device 25.3 MiB 0.17 1929 864 14273 4814 7513 1946 64.8 MiB 0.04 0.00 4.41418 4.16358 -131.462 -4.16358 4.16358 0.24 0.000334761 0.000292296 0.0189418 0.0173284 -1 -1 -1 -1 30 1685 14 6.79088e+06 161664 556674. 1926.21 0.85 0.0902499 0.078844 24526 138013 -1 1424 16 536 704 44687 11240 3.73734 3.73734 -125.06 -3.73734 0 0 706193. 2443.58 0.03 0.02 0.07 -1 -1 0.03 0.0107723 0.0097122 57 56 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_032bits.v common 1.87 vpr 64.51 MiB -1 -1 0.09 17660 13 0.06 -1 -1 32132 -1 -1 11 65 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66056 65 33 224 257 1 173 109 17 17 289 -1 unnamed_device 24.9 MiB 0.15 2161 889 19609 6448 11466 1695 64.5 MiB 0.06 0.00 5.29144 4.91554 -155.687 -4.91554 4.91554 0.24 0.000288751 0.000263615 0.0251435 0.0229999 -1 -1 -1 -1 30 1948 14 6.79088e+06 148192 556674. 1926.21 0.33 0.0638136 0.0568969 24526 138013 -1 1598 11 671 898 50938 14191 4.4893 4.4893 -151.306 -4.4893 0 0 706193. 2443.58 0.03 0.02 0.07 -1 -1 0.03 0.00966942 0.00884341 68 62 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_048bits.v common 2.90 vpr 65.67 MiB -1 -1 0.12 18056 19 0.08 -1 -1 32564 -1 -1 19 97 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 67248 97 49 340 389 1 266 165 17 17 289 -1 unnamed_device 25.6 MiB 0.25 3053 1349 31805 8586 20513 2706 65.7 MiB 0.08 0.00 7.2345 7.17824 -291.108 -7.17824 7.17824 0.24 0.000445752 0.000409263 0.0340212 0.0312669 -1 -1 -1 -1 30 2935 26 6.79088e+06 255968 556674. 1926.21 1.17 0.163293 0.145885 24526 138013 -1 2347 17 983 1280 75466 20764 6.76314 6.76314 -281.839 -6.76314 0 0 706193. 2443.58 0.03 0.04 0.07 -1 -1 0.03 0.0192748 0.0176258 102 98 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_064bits.v common 3.38 vpr 65.30 MiB -1 -1 0.13 18444 26 0.09 -1 -1 32720 -1 -1 25 129 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66872 129 65 453 518 1 343 219 17 17 289 -1 unnamed_device 25.9 MiB 0.39 4118 1975 48985 14791 29668 4526 65.3 MiB 0.16 0.00 10.9476 10.5717 -512.006 -10.5717 10.5717 0.27 0.000604211 0.000557155 0.0690468 0.0640997 -1 -1 -1 -1 32 4167 26 6.79088e+06 336800 586450. 2029.24 1.29 0.293841 0.266364 24814 144142 -1 3407 11 1203 1624 102575 26684 9.9346 9.9346 -497.018 -9.9346 0 0 744469. 2576.02 0.03 0.04 0.08 -1 -1 0.03 0.0205197 0.0190707 133 131 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_004bits.v common 1.72 vpr 63.71 MiB -1 -1 0.08 17288 1 0.02 -1 -1 30456 -1 -1 2 9 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65240 9 5 34 35 1 20 16 17 17 289 -1 unnamed_device 25.2 MiB 0.03 212 56 376 68 294 14 63.7 MiB 0.00 0.00 1.23249 0.789073 -10.0558 -0.789073 0.789073 0.24 4.1776e-05 3.6353e-05 0.00100959 0.000882855 -1 -1 -1 -1 22 155 9 6.87369e+06 27947.7 443629. 1535.05 0.54 0.00905167 0.00747639 23458 102101 -1 113 8 44 44 2021 661 0.663773 0.663773 -10.1705 -0.663773 0 0 531479. 1839.03 0.02 0.01 0.05 -1 -1 0.02 0.00193781 0.00176492 10 2 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_005bits.v common 1.79 vpr 63.85 MiB -1 -1 0.08 17676 1 0.02 -1 -1 30368 -1 -1 3 11 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65384 11 6 41 42 1 27 20 17 17 289 -1 unnamed_device 25.6 MiB 0.03 337 201 668 148 451 69 63.9 MiB 0.01 0.00 1.11738 0.811073 -14.6592 -0.811073 0.811073 0.25 5.759e-05 5.0553e-05 0.00200373 0.00176382 -1 -1 -1 -1 30 309 9 6.87369e+06 41921.5 556674. 1926.21 0.54 0.0204044 0.0166664 25186 138497 -1 287 8 80 80 5048 1229 0.936373 0.936373 -16.691 -0.936373 0 0 706193. 2443.58 0.03 0.01 0.07 -1 -1 0.03 0.00219224 0.00198208 13 2 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_006bits.v common 1.63 vpr 63.92 MiB -1 -1 0.08 17288 1 0.02 -1 -1 30476 -1 -1 4 13 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65456 13 7 48 49 1 33 24 17 17 289 -1 unnamed_device 25.3 MiB 0.03 296 154 738 162 543 33 63.9 MiB 0.00 0.00 0.981892 1.03835 -16.7722 -1.03835 1.03835 0.24 5.7593e-05 5.0774e-05 0.00155182 0.0013753 -1 -1 -1 -1 20 381 15 6.87369e+06 55895.4 414966. 1435.87 0.48 0.00782866 0.00668543 23170 95770 -1 331 11 113 113 8617 2387 1.08367 1.08367 -19.4324 -1.08367 0 0 503264. 1741.40 0.02 0.01 0.05 -1 -1 0.02 0.00256891 0.00229214 15 2 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_007bits.v common 2.01 vpr 63.78 MiB -1 -1 0.08 17292 1 0.02 -1 -1 30452 -1 -1 3 15 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65308 15 8 55 56 1 39 26 17 17 289 -1 unnamed_device 25.0 MiB 0.04 404 127 824 169 639 16 63.8 MiB 0.01 0.00 1.27304 1.2044 -18.2318 -1.2044 1.2044 0.25 9.0894e-05 7.8934e-05 0.00274558 0.00249615 -1 -1 -1 -1 30 286 12 6.87369e+06 41921.5 556674. 1926.21 0.76 0.0250763 0.0208659 25186 138497 -1 237 11 140 140 5141 1808 0.989373 0.989373 -19.8349 -0.989373 0 0 706193. 2443.58 0.03 0.01 0.08 -1 -1 0.03 0.00277701 0.00249233 16 2 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_008bits.v common 1.44 vpr 63.88 MiB -1 -1 0.07 17184 1 0.02 -1 -1 30432 -1 -1 3 17 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65416 17 9 62 63 1 42 29 17 17 289 -1 unnamed_device 25.6 MiB 0.04 469 149 997 232 705 60 63.9 MiB 0.01 0.00 1.3407 1.2154 -21.0785 -1.2154 1.2154 0.24 7.2964e-05 6.5122e-05 0.0020257 0.00181191 -1 -1 -1 -1 26 301 14 6.87369e+06 41921.5 503264. 1741.40 0.22 0.0115931 0.00981649 24322 120374 -1 267 14 141 141 5701 2184 0.978373 0.978373 -22.318 -0.978373 0 0 618332. 2139.56 0.02 0.01 0.07 -1 -1 0.02 0.00381328 0.00334326 19 2 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_009bits.v common 1.50 vpr 63.88 MiB -1 -1 0.08 17288 1 0.02 -1 -1 30356 -1 -1 3 19 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65416 19 10 69 70 1 45 32 17 17 289 -1 unnamed_device 25.6 MiB 0.04 599 160 2832 1028 1250 554 63.9 MiB 0.01 0.00 1.68574 1.2264 -24.1659 -1.2264 1.2264 0.24 8.1862e-05 7.2582e-05 0.00499751 0.00445979 -1 -1 -1 -1 32 342 9 6.87369e+06 41921.5 586450. 2029.24 0.27 0.0174207 0.0148924 25474 144626 -1 282 13 175 175 10291 3253 1.01137 1.01137 -24.6383 -1.01137 0 0 744469. 2576.02 0.03 0.01 0.08 -1 -1 0.03 0.00353222 0.00312488 20 2 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_010bits.v common 1.98 vpr 63.95 MiB -1 -1 0.08 17288 1 0.02 -1 -1 30540 -1 -1 4 21 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65484 21 11 76 77 1 48 36 17 17 289 -1 unnamed_device 25.6 MiB 0.04 623 242 2691 801 1272 618 63.9 MiB 0.01 0.00 1.5583 1.2374 -27.5669 -1.2374 1.2374 0.24 8.9243e-05 7.9874e-05 0.00452405 0.00406905 -1 -1 -1 -1 32 469 18 6.87369e+06 55895.4 586450. 2029.24 0.75 0.0254886 0.0214091 25474 144626 -1 417 16 245 245 15919 4276 1.11467 1.11467 -29.6904 -1.11467 0 0 744469. 2576.02 0.03 0.01 0.08 -1 -1 0.03 0.00414876 0.00363803 22 2 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_011bits.v common 1.80 vpr 63.95 MiB -1 -1 0.08 17272 1 0.02 -1 -1 30444 -1 -1 5 23 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65480 23 12 83 84 1 53 40 17 17 289 -1 unnamed_device 25.2 MiB 0.04 816 226 1740 328 1393 19 63.9 MiB 0.01 0.00 1.6243 1.2484 -31.1833 -1.2484 1.2484 0.26 0.000189975 0.000173605 0.00398219 0.00362859 -1 -1 -1 -1 30 420 17 6.87369e+06 69869.2 556674. 1926.21 0.52 0.0273873 0.0231806 25186 138497 -1 374 10 175 175 9634 2666 0.886073 0.886073 -29.465 -0.886073 0 0 706193. 2443.58 0.03 0.01 0.07 -1 -1 0.03 0.00346491 0.00310787 24 2 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_012bits.v common 1.93 vpr 64.02 MiB -1 -1 0.09 17284 1 0.02 -1 -1 30448 -1 -1 5 25 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65552 25 13 90 91 1 60 43 17 17 289 -1 unnamed_device 25.6 MiB 0.04 697 203 1918 378 1524 16 64.0 MiB 0.01 0.00 1.31566 1.2594 -32.0153 -1.2594 1.2594 0.25 0.000103272 9.2986e-05 0.00311303 0.00281427 -1 -1 -1 -1 28 507 20 6.87369e+06 69869.2 531479. 1839.03 0.66 0.0324221 0.0271882 24610 126494 -1 465 16 290 290 16133 5368 1.15867 1.15867 -36.1502 -1.15867 0 0 648988. 2245.63 0.02 0.01 0.07 -1 -1 0.02 0.00457912 0.00402788 26 2 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_013bits.v common 1.57 vpr 64.03 MiB -1 -1 0.13 17532 1 0.03 -1 -1 30440 -1 -1 5 27 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65564 27 14 97 98 1 67 46 17 17 289 -1 unnamed_device 25.6 MiB 0.04 813 341 1686 290 1386 10 64.0 MiB 0.01 0.00 1.32666 1.2704 -36.5095 -1.2704 1.2704 0.24 0.000109773 9.9396e-05 0.00290007 0.00263813 -1 -1 -1 -1 30 655 12 6.87369e+06 69869.2 556674. 1926.21 0.27 0.018653 0.0160027 25186 138497 -1 554 13 288 288 13777 4010 1.18067 1.18067 -39.3299 -1.18067 0 0 706193. 2443.58 0.03 0.01 0.07 -1 -1 0.03 0.00549287 0.00483231 28 2 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_014bits.v common 2.02 vpr 64.45 MiB -1 -1 0.08 17672 1 0.02 -1 -1 30460 -1 -1 7 29 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65992 29 15 104 105 1 74 51 17 17 289 -1 unnamed_device 25.6 MiB 0.05 813 369 2307 425 1796 86 64.4 MiB 0.01 0.00 1.2814 1.2814 -39.6325 -1.2814 1.2814 0.26 0.000117386 0.000106447 0.00385623 0.00350852 -1 -1 -1 -1 30 719 15 6.87369e+06 97816.9 556674. 1926.21 0.74 0.0328918 0.027949 25186 138497 -1 664 16 345 345 22747 5958 1.06637 1.06637 -41.9394 -1.06637 0 0 706193. 2443.58 0.03 0.01 0.07 -1 -1 0.03 0.00503821 0.00443319 31 2 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_015bits.v common 1.87 vpr 64.09 MiB -1 -1 0.07 17292 1 0.02 -1 -1 30596 -1 -1 6 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65628 31 16 111 112 1 80 53 17 17 289 -1 unnamed_device 25.6 MiB 0.06 982 485 5399 1393 3244 762 64.1 MiB 0.03 0.00 2.02863 1.65273 -45.9173 -1.65273 1.65273 0.26 0.000164789 0.000150791 0.0115039 0.0105091 -1 -1 -1 -1 30 862 17 6.87369e+06 83843 556674. 1926.21 0.57 0.0508753 0.0437617 25186 138497 -1 828 15 387 387 32478 7816 1.18967 1.18967 -48.8843 -1.18967 0 0 706193. 2443.58 0.03 0.01 0.07 -1 -1 0.03 0.00535564 0.00471064 32 2 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_016bits.v common 1.54 vpr 64.53 MiB -1 -1 0.08 17676 1 0.02 -1 -1 30332 -1 -1 6 33 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66080 33 17 118 119 1 83 56 17 17 289 -1 unnamed_device 25.6 MiB 0.06 1128 462 6690 1697 4688 305 64.5 MiB 0.02 0.00 2.29023 1.66373 -49.0046 -1.66373 1.66373 0.24 0.000139914 0.000125894 0.00936706 0.00845406 -1 -1 -1 -1 30 869 12 6.87369e+06 83843 556674. 1926.21 0.29 0.0340396 0.0295893 25186 138497 -1 806 15 402 402 29736 7468 1.06437 1.06437 -48.4603 -1.06437 0 0 706193. 2443.58 0.03 0.02 0.07 -1 -1 0.03 0.00592819 0.00525594 35 2 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_018bits.v common 2.13 vpr 64.18 MiB -1 -1 0.07 17292 1 0.02 -1 -1 30440 -1 -1 7 37 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65720 37 19 132 133 1 89 63 17 17 289 -1 unnamed_device 25.6 MiB 0.06 990 533 3188 655 2384 149 64.2 MiB 0.01 0.00 1.74199 1.68573 -55.8065 -1.68573 1.68573 0.24 0.00015175 0.000137814 0.00450851 0.00411922 -1 -1 -1 -1 32 956 12 6.87369e+06 97816.9 586450. 2029.24 0.88 0.0448108 0.0381352 25474 144626 -1 907 16 422 422 33967 8194 1.13037 1.13037 -56.5331 -1.13037 0 0 744469. 2576.02 0.03 0.02 0.08 -1 -1 0.03 0.00619556 0.00545455 38 2 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_020bits.v common 1.89 vpr 63.81 MiB -1 -1 0.08 17676 1 0.02 -1 -1 30580 -1 -1 8 41 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65344 41 21 146 147 1 101 70 17 17 289 -1 unnamed_device 25.2 MiB 0.06 1415 439 3814 728 2915 171 63.8 MiB 0.02 0.00 1.7716 1.70773 -58.9105 -1.70773 1.70773 0.24 0.000165807 0.000151395 0.00509435 0.00466484 -1 -1 -1 -1 30 943 12 6.87369e+06 111791 556674. 1926.21 0.58 0.042865 0.0367532 25186 138497 -1 817 11 419 419 21319 6697 1.26667 1.26667 -61.1999 -1.26667 0 0 706193. 2443.58 0.03 0.01 0.07 -1 -1 0.03 0.00538129 0.0048225 42 2 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_022bits.v common 2.18 vpr 64.32 MiB -1 -1 0.08 17672 1 0.02 -1 -1 30296 -1 -1 10 45 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65864 45 23 160 161 1 115 78 17 17 289 -1 unnamed_device 25.6 MiB 0.08 1570 650 10204 2666 7106 432 64.3 MiB 0.04 0.00 2.07263 1.72973 -70.7265 -1.72973 1.72973 0.24 0.000180482 0.000164557 0.0121811 0.0110423 -1 -1 -1 -1 28 1331 15 6.87369e+06 139738 531479. 1839.03 0.84 0.0675135 0.0586636 24610 126494 -1 1186 15 555 555 41077 10421 1.18067 1.18067 -69.0636 -1.18067 0 0 648988. 2245.63 0.02 0.02 0.07 -1 -1 0.02 0.00682274 0.00605597 47 2 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_024bits.v common 2.13 vpr 64.50 MiB -1 -1 0.10 18060 1 0.02 -1 -1 30260 -1 -1 9 49 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66048 49 25 174 175 1 124 83 17 17 289 -1 unnamed_device 25.6 MiB 0.06 1728 753 10163 2514 7290 359 64.5 MiB 0.03 0.00 2.60897 2.11206 -79.0843 -2.11206 2.11206 0.24 0.000198774 0.00018064 0.0116708 0.0106316 -1 -1 -1 -1 28 1443 22 6.87369e+06 125765 531479. 1839.03 0.83 0.0743601 0.0644676 24610 126494 -1 1279 14 625 625 48859 12537 1.21637 1.21637 -75.9973 -1.21637 0 0 648988. 2245.63 0.02 0.02 0.07 -1 -1 0.02 0.00703586 0.00628228 51 2 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_028bits.v common 1.72 vpr 63.97 MiB -1 -1 0.09 18060 1 0.02 -1 -1 30424 -1 -1 11 57 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65508 57 29 202 203 1 142 97 17 17 289 -1 unnamed_device 24.9 MiB 0.06 1802 821 10309 2515 7055 739 64.0 MiB 0.04 0.00 2.40666 2.15606 -92.7202 -2.15606 2.15606 0.27 0.000228156 0.000208111 0.0115492 0.0105766 -1 -1 -1 -1 32 1566 13 6.87369e+06 153712 586450. 2029.24 0.34 0.0482663 0.0427322 25474 144626 -1 1367 16 629 629 42642 11312 1.38567 1.38567 -90.5462 -1.38567 0 0 744469. 2576.02 0.03 0.02 0.08 -1 -1 0.03 0.00844629 0.00753366 58 2 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_032bits.v common 1.73 vpr 64.96 MiB -1 -1 0.08 18060 1 0.02 -1 -1 30500 -1 -1 12 65 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66524 65 33 230 231 1 165 110 17 17 289 -1 unnamed_device 25.2 MiB 0.07 1930 880 15627 3694 10983 950 65.0 MiB 0.05 0.00 2.65269 2.56039 -107.701 -2.56039 2.56039 0.24 0.000253236 0.00023166 0.0162425 0.0148662 -1 -1 -1 -1 32 1756 16 6.87369e+06 167686 586450. 2029.24 0.33 0.047179 0.0417844 25474 144626 -1 1493 16 685 685 50430 12966 1.32437 1.32437 -97.9203 -1.32437 0 0 744469. 2576.02 0.03 0.03 0.09 -1 -1 0.03 0.0106361 0.00952148 67 2 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_048bits.v common 1.85 vpr 64.89 MiB -1 -1 0.09 17672 1 0.03 -1 -1 30508 -1 -1 18 97 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66448 97 49 342 343 1 247 164 17 17 289 -1 unnamed_device 25.2 MiB 0.07 3166 1519 32420 11737 18188 2495 64.9 MiB 0.10 0.00 3.83296 3.45705 -190.27 -3.45705 3.45705 0.24 0.000392513 0.000360602 0.0298853 0.0274653 -1 -1 -1 -1 32 2673 32 6.87369e+06 251529 586450. 2029.24 0.40 0.093092 0.0839451 25474 144626 -1 2346 12 984 984 82123 21073 1.47437 1.47437 -151.051 -1.47437 0 0 744469. 2576.02 0.03 0.03 0.08 -1 -1 0.03 0.0121083 0.0110706 99 2 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_064bits.v common 3.03 vpr 65.89 MiB -1 -1 0.11 18060 1 0.03 -1 -1 30700 -1 -1 24 129 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 67476 129 65 454 455 1 329 218 17 17 289 -1 unnamed_device 26.4 MiB 0.09 4215 1893 53273 19656 30087 3530 65.9 MiB 0.17 0.00 4.72962 4.35372 -277.877 -4.35372 4.35372 0.24 0.000536461 0.000495991 0.0453219 0.0419007 -1 -1 -1 -1 36 3520 23 6.87369e+06 335372 648988. 2245.63 1.40 0.224535 0.203023 26050 158493 -1 2967 15 1307 1307 101615 26086 1.75637 1.75637 -205.78 -1.75637 0 0 828058. 2865.25 0.03 0.04 0.08 -1 -1 0.03 0.0180671 0.0165087 131 2 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_004bits.v common 1.27 vpr 63.64 MiB -1 -1 0.08 17296 1 0.02 -1 -1 30428 -1 -1 2 9 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65172 9 5 34 35 1 20 16 17 17 289 -1 unnamed_device 24.8 MiB 0.02 212 58 396 77 301 18 63.6 MiB 0.00 0.00 1.23249 0.789073 -10.1079 -0.789073 0.789073 0.24 4.1089e-05 3.5592e-05 0.0010285 0.000897184 -1 -1 -1 -1 20 157 10 6.89349e+06 28187.7 414966. 1435.87 0.16 0.00332141 0.00293392 23170 95770 -1 126 11 47 47 2750 988 0.91632 0.91632 -11.0957 -0.91632 0 0 503264. 1741.40 0.02 0.01 0.05 -1 -1 0.02 0.00207966 0.00187057 10 2 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_005bits.v common 1.95 vpr 63.29 MiB -1 -1 0.07 17676 1 0.02 -1 -1 30456 -1 -1 3 11 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 64808 11 6 41 42 1 27 20 17 17 289 -1 unnamed_device 24.5 MiB 0.02 337 201 668 159 420 89 63.3 MiB 0.01 0.00 1.12358 0.817273 -14.7188 -0.817273 0.817273 0.25 4.9791e-05 4.3821e-05 0.0019764 0.0017713 -1 -1 -1 -1 30 320 35 6.89349e+06 42281.5 556674. 1926.21 0.73 0.0226418 0.0187298 25186 138497 -1 287 8 86 86 6447 1544 0.936373 0.936373 -16.8555 -0.936373 0 0 706193. 2443.58 0.03 0.01 0.07 -1 -1 0.03 0.00218328 0.00194766 13 2 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_006bits.v common 1.69 vpr 63.15 MiB -1 -1 0.06 17676 1 0.02 -1 -1 30428 -1 -1 4 13 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 64664 13 7 48 49 1 33 24 17 17 289 -1 unnamed_device 25.0 MiB 0.03 296 177 636 142 467 27 63.1 MiB 0.00 0.00 0.981892 0.981892 -17.0458 -0.981892 0.981892 0.25 5.9479e-05 5.0802e-05 0.0013981 0.00123754 -1 -1 -1 -1 22 371 12 6.89349e+06 56375.4 443629. 1535.05 0.47 0.0124495 0.0102737 23458 102101 -1 312 10 102 102 6620 1815 1.06362 1.06362 -18.462 -1.06362 0 0 531479. 1839.03 0.02 0.01 0.05 -1 -1 0.02 0.00244682 0.00219573 15 2 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_007bits.v common 1.76 vpr 63.79 MiB -1 -1 0.08 17672 1 0.02 -1 -1 30472 -1 -1 3 15 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65316 15 8 55 56 1 39 26 17 17 289 -1 unnamed_device 25.6 MiB 0.03 404 129 786 171 602 13 63.8 MiB 0.01 0.00 1.27304 1.2044 -18.4111 -1.2044 1.2044 0.24 6.7188e-05 5.9544e-05 0.00170875 0.00152223 -1 -1 -1 -1 24 319 15 6.89349e+06 42281.5 470940. 1629.55 0.52 0.0194585 0.0159981 24034 113901 -1 306 8 149 149 9436 3202 0.989373 0.989373 -21.4638 -0.989373 0 0 586450. 2029.24 0.02 0.01 0.07 -1 -1 0.02 0.00251805 0.00227062 16 2 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_008bits.v common 1.48 vpr 63.77 MiB -1 -1 0.08 17284 1 0.02 -1 -1 30360 -1 -1 3 17 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65304 17 9 62 63 1 42 29 17 17 289 -1 unnamed_device 25.1 MiB 0.03 469 149 997 246 695 56 63.8 MiB 0.01 0.00 1.23249 1.2154 -21.0401 -1.2154 1.2154 0.26 7.6619e-05 6.8311e-05 0.00318806 0.00289838 -1 -1 -1 -1 26 339 10 6.89349e+06 42281.5 503264. 1741.40 0.23 0.0125029 0.0106788 24322 120374 -1 242 13 140 140 5387 2137 0.989373 0.989373 -22.2587 -0.989373 0 0 618332. 2139.56 0.02 0.01 0.06 -1 -1 0.02 0.00322621 0.00286052 19 2 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_009bits.v common 2.08 vpr 63.78 MiB -1 -1 0.11 17284 1 0.02 -1 -1 30136 -1 -1 3 19 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65308 19 10 69 70 1 45 32 17 17 289 -1 unnamed_device 25.2 MiB 0.03 599 160 2832 996 1143 693 63.8 MiB 0.01 0.00 1.65894 1.2264 -24.2203 -1.2264 1.2264 0.24 8.0585e-05 7.2032e-05 0.00504873 0.00451425 -1 -1 -1 -1 32 320 13 6.89349e+06 42281.5 586450. 2029.24 0.72 0.031913 0.0266647 25474 144626 -1 244 13 147 147 6076 2054 0.84402 0.84402 -21.7627 -0.84402 0 0 744469. 2576.02 0.03 0.01 0.09 -1 -1 0.03 0.0037204 0.00328399 20 2 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_010bits.v common 2.08 vpr 63.39 MiB -1 -1 0.12 17292 1 0.02 -1 -1 30352 -1 -1 4 21 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 64912 21 11 76 77 1 48 36 17 17 289 -1 unnamed_device 24.5 MiB 0.03 623 175 2691 919 1290 482 63.4 MiB 0.01 0.00 1.4832 1.2374 -27.1082 -1.2374 1.2374 0.24 8.8467e-05 7.9346e-05 0.00452108 0.00406212 -1 -1 -1 -1 32 382 18 6.89349e+06 56375.4 586450. 2029.24 0.73 0.0326297 0.0272524 25474 144626 -1 292 10 145 145 6986 2360 0.88802 0.88802 -25.1184 -0.88802 0 0 744469. 2576.02 0.03 0.01 0.08 -1 -1 0.03 0.0032407 0.00290434 22 2 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_011bits.v common 1.94 vpr 63.50 MiB -1 -1 0.10 17284 1 0.02 -1 -1 30488 -1 -1 5 23 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65024 23 12 83 84 1 53 40 17 17 289 -1 unnamed_device 24.8 MiB 0.03 816 189 1604 298 1238 68 63.5 MiB 0.01 0.00 1.6243 1.2484 -30.1698 -1.2484 1.2484 0.25 9.8357e-05 8.8621e-05 0.00279691 0.00253145 -1 -1 -1 -1 26 507 22 6.89349e+06 70469.2 503264. 1741.40 0.60 0.0255841 0.0213855 24322 120374 -1 438 15 281 281 16169 5271 1.14287 1.14287 -32.7732 -1.14287 0 0 618332. 2139.56 0.03 0.01 0.07 -1 -1 0.03 0.00442084 0.00391521 24 2 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_012bits.v common 1.99 vpr 64.18 MiB -1 -1 0.11 17292 1 0.02 -1 -1 30488 -1 -1 5 25 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65716 25 13 90 91 1 60 43 17 17 289 -1 unnamed_device 25.2 MiB 0.03 697 206 1918 387 1516 15 64.2 MiB 0.01 0.00 1.31566 1.2594 -32.1458 -1.2594 1.2594 0.24 0.000103974 9.3764e-05 0.00313121 0.00283186 -1 -1 -1 -1 28 544 24 6.89349e+06 70469.2 531479. 1839.03 0.64 0.0307663 0.0257498 24610 126494 -1 448 15 267 267 13804 4654 1.15867 1.15867 -35.9015 -1.15867 0 0 648988. 2245.63 0.02 0.01 0.07 -1 -1 0.02 0.00479109 0.00417829 26 2 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_013bits.v common 1.94 vpr 63.93 MiB -1 -1 0.11 17676 1 0.02 -1 -1 29900 -1 -1 5 27 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65460 27 14 97 98 1 67 46 17 17 289 -1 unnamed_device 25.6 MiB 0.04 813 321 1850 346 1493 11 63.9 MiB 0.01 0.00 1.32666 1.2704 -36.4307 -1.2704 1.2704 0.24 0.000110104 9.961e-05 0.00295105 0.00267871 -1 -1 -1 -1 30 565 14 6.89349e+06 70469.2 556674. 1926.21 0.60 0.0313754 0.0264468 25186 138497 -1 530 12 247 247 12350 3589 1.01137 1.01137 -36.0238 -1.01137 0 0 706193. 2443.58 0.03 0.01 0.07 -1 -1 0.03 0.00411258 0.0036678 28 2 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_014bits.v common 1.93 vpr 63.96 MiB -1 -1 0.10 17288 1 0.02 -1 -1 30552 -1 -1 7 29 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65492 29 15 104 105 1 74 51 17 17 289 -1 unnamed_device 25.2 MiB 0.04 813 384 2495 473 1933 89 64.0 MiB 0.01 0.00 1.2814 1.2814 -40.976 -1.2814 1.2814 0.24 0.000117993 0.000106213 0.00363177 0.00329301 -1 -1 -1 -1 26 810 14 6.89349e+06 98656.9 503264. 1741.40 0.57 0.0258483 0.021987 24322 120374 -1 746 17 370 370 30180 8245 1.06832 1.06832 -43.5975 -1.06832 0 0 618332. 2139.56 0.02 0.01 0.07 -1 -1 0.02 0.00519978 0.00457024 31 2 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_015bits.v common 2.20 vpr 64.34 MiB -1 -1 0.10 17292 1 0.02 -1 -1 30588 -1 -1 6 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65888 31 16 111 112 1 80 53 17 17 289 -1 unnamed_device 25.6 MiB 0.05 982 503 3518 892 2197 429 64.3 MiB 0.02 0.00 2.02863 1.65273 -45.7068 -1.65273 1.65273 0.24 0.000135696 0.000123138 0.00665055 0.00611328 -1 -1 -1 -1 32 883 18 6.89349e+06 84563 586450. 2029.24 0.78 0.0483766 0.0414011 25474 144626 -1 792 14 329 329 23739 6157 1.22267 1.22267 -49.194 -1.22267 0 0 744469. 2576.02 0.03 0.02 0.09 -1 -1 0.03 0.00577121 0.00508213 32 2 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_016bits.v common 1.99 vpr 64.39 MiB -1 -1 0.11 17292 1 0.02 -1 -1 30024 -1 -1 6 33 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65936 33 17 118 119 1 83 56 17 17 289 -1 unnamed_device 25.6 MiB 0.05 1128 419 4229 1016 3090 123 64.4 MiB 0.02 0.00 2.29023 1.66373 -48.1052 -1.66373 1.66373 0.24 0.000164621 0.000150187 0.00610199 0.00553404 -1 -1 -1 -1 28 877 22 6.89349e+06 84563 531479. 1839.03 0.58 0.0431659 0.0366672 24610 126494 -1 727 15 348 348 22785 6153 0.98502 0.98502 -45.8259 -0.98502 0 0 648988. 2245.63 0.02 0.01 0.07 -1 -1 0.02 0.00531759 0.00470243 35 2 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_018bits.v common 1.75 vpr 64.40 MiB -1 -1 0.11 17292 1 0.03 -1 -1 30588 -1 -1 7 37 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65944 37 19 132 133 1 89 63 17 17 289 -1 unnamed_device 25.6 MiB 0.05 990 527 3813 762 2889 162 64.4 MiB 0.02 0.00 1.74199 1.68573 -55.4954 -1.68573 1.68573 0.24 0.000178041 0.000161664 0.00707604 0.00648495 -1 -1 -1 -1 30 934 16 6.89349e+06 98656.9 556674. 1926.21 0.30 0.0327715 0.0284548 25186 138497 -1 844 17 347 347 24553 5924 0.98502 0.98502 -52.8184 -0.98502 0 0 706193. 2443.58 0.03 0.02 0.07 -1 -1 0.03 0.00792233 0.00685172 38 2 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_020bits.v common 2.00 vpr 64.10 MiB -1 -1 0.11 17676 1 0.02 -1 -1 29992 -1 -1 8 41 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65640 41 21 146 147 1 101 70 17 17 289 -1 unnamed_device 25.2 MiB 0.05 1415 379 3958 843 3047 68 64.1 MiB 0.02 0.00 1.7778 1.70773 -57.6396 -1.70773 1.70773 0.24 0.000164211 0.000149579 0.00520346 0.00475169 -1 -1 -1 -1 30 883 21 6.89349e+06 112751 556674. 1926.21 0.59 0.0441693 0.037646 25186 138497 -1 707 16 445 445 24688 7831 1.13037 1.13037 -55.7432 -1.13037 0 0 706193. 2443.58 0.03 0.02 0.08 -1 -1 0.03 0.00739954 0.00651301 42 2 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_022bits.v common 2.21 vpr 64.19 MiB -1 -1 0.12 17148 1 0.02 -1 -1 30296 -1 -1 10 45 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65728 45 23 160 161 1 115 78 17 17 289 -1 unnamed_device 25.2 MiB 0.06 1570 705 9540 2422 6707 411 64.2 MiB 0.03 0.00 1.94928 1.72973 -71.7939 -1.72973 1.72973 0.25 0.000186686 0.000170542 0.0120996 0.011037 -1 -1 -1 -1 32 1241 15 6.89349e+06 140938 586450. 2029.24 0.79 0.0763367 0.0663004 25474 144626 -1 1115 15 480 480 36716 8990 1.28867 1.28867 -71.8206 -1.28867 0 0 744469. 2576.02 0.03 0.02 0.08 -1 -1 0.03 0.0067221 0.00597853 47 2 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_024bits.v common 1.84 vpr 64.27 MiB -1 -1 0.13 18060 1 0.02 -1 -1 30428 -1 -1 9 49 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65812 49 25 174 175 1 124 83 17 17 289 -1 unnamed_device 25.0 MiB 0.05 1728 728 7103 1612 5339 152 64.3 MiB 0.03 0.00 2.48562 2.11206 -79.3567 -2.11206 2.11206 0.24 0.000195811 0.000179353 0.0083201 0.0075881 -1 -1 -1 -1 32 1358 40 6.89349e+06 126845 586450. 2029.24 0.39 0.0473056 0.0409139 25474 144626 -1 1164 15 521 521 41703 10584 1.18337 1.18337 -72.8866 -1.18337 0 0 744469. 2576.02 0.03 0.02 0.08 -1 -1 0.03 0.00721607 0.00641475 51 2 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_028bits.v common 1.77 vpr 64.53 MiB -1 -1 0.12 17532 1 0.03 -1 -1 30508 -1 -1 11 57 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66080 57 29 202 203 1 142 97 17 17 289 -1 unnamed_device 25.4 MiB 0.06 1802 814 11641 2975 7882 784 64.5 MiB 0.04 0.00 2.40666 2.15606 -91.4368 -2.15606 2.15606 0.24 0.000220052 0.000200768 0.0124409 0.0113433 -1 -1 -1 -1 32 1545 15 6.89349e+06 155032 586450. 2029.24 0.29 0.0377863 0.0333776 25474 144626 -1 1324 19 534 534 42118 11208 1.26037 1.26037 -85.4089 -1.26037 0 0 744469. 2576.02 0.03 0.02 0.08 -1 -1 0.03 0.00944336 0.00835962 58 2 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_032bits.v common 2.47 vpr 64.65 MiB -1 -1 0.14 17676 1 0.03 -1 -1 30504 -1 -1 12 65 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66204 65 33 230 231 1 165 110 17 17 289 -1 unnamed_device 25.6 MiB 0.06 1930 880 15627 3739 10944 944 64.7 MiB 0.08 0.00 2.56039 2.56039 -107.805 -2.56039 2.56039 0.24 0.000368579 0.000338259 0.0265098 0.0245221 -1 -1 -1 -1 32 1748 15 6.89349e+06 169126 586450. 2029.24 0.94 0.0917662 0.0811116 25474 144626 -1 1533 14 690 690 51852 13576 1.31337 1.31337 -98.3301 -1.31337 0 0 744469. 2576.02 0.03 0.02 0.08 -1 -1 0.03 0.00873069 0.00781067 67 2 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_048bits.v common 2.00 vpr 64.76 MiB -1 -1 0.12 17672 1 0.03 -1 -1 30692 -1 -1 18 97 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66312 97 49 342 343 1 247 164 17 17 289 -1 unnamed_device 24.9 MiB 0.07 3166 1546 32420 11579 18441 2400 64.8 MiB 0.11 0.00 3.83296 3.45705 -190.966 -3.45705 3.45705 0.24 0.000935119 0.000875924 0.0327955 0.0302908 -1 -1 -1 -1 32 2917 31 6.89349e+06 253689 586450. 2029.24 0.41 0.0903366 0.0815299 25474 144626 -1 2433 16 997 997 83200 20511 1.65467 1.65467 -160.881 -1.65467 0 0 744469. 2576.02 0.03 0.03 0.08 -1 -1 0.03 0.013649 0.012318 99 2 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_064bits.v common 2.35 vpr 65.74 MiB -1 -1 0.12 18060 1 0.03 -1 -1 30136 -1 -1 24 129 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 67316 129 65 454 455 1 329 218 17 17 289 -1 unnamed_device 26.4 MiB 0.07 4215 1897 53273 20437 29644 3192 65.7 MiB 0.17 0.00 4.72962 4.35372 -277.996 -4.35372 4.35372 0.24 0.000538663 0.000498151 0.0466986 0.0432372 -1 -1 -1 -1 32 3892 20 6.89349e+06 338252 586450. 2029.24 0.66 0.134776 0.122282 25474 144626 -1 3201 21 1413 1413 124031 31705 1.75832 1.75832 -211.545 -1.75832 0 0 744469. 2576.02 0.03 0.05 0.08 -1 -1 0.03 0.0230991 0.0209535 131 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 8d0853d10c4..68bca7c32e2 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 ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time num_le num_luts num_add_blocks max_add_chain_length num_sub_blocks max_sub_chain_length - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_001.v common 3.42 vpr 62.79 MiB -1 -1 0.38 18688 14 0.25 -1 -1 32944 -1 -1 39 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64300 32 32 277 309 1 202 103 17 17 289 -1 unnamed_device 23.7 MiB 0.13 1547 9502 2152 6495 855 62.8 MiB 0.09 0.00 8.07544 -169.743 -8.07544 8.07544 0.32 0.000899886 0.000831959 0.0389219 0.0360116 -1 -1 -1 -1 28 3643 25 6.55708e+06 470145 500653. 1732.36 0.98 0.157731 0.138292 21310 115450 -1 3135 20 1428 5029 257339 61759 6.9613 6.9613 -157.642 -6.9613 0 0 612192. 2118.31 0.03 0.10 0.10 -1 -1 0.03 0.0374491 0.0327568 193 183 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_002.v common 3.20 vpr 63.32 MiB -1 -1 0.41 18644 14 0.27 -1 -1 32760 -1 -1 39 30 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64844 30 32 272 304 1 193 101 17 17 289 -1 unnamed_device 23.7 MiB 0.10 1322 7151 1527 4686 938 63.3 MiB 0.08 0.00 8.01406 -160.585 -8.01406 8.01406 0.31 0.000946647 0.000878015 0.0319553 0.0296902 -1 -1 -1 -1 28 3435 28 6.55708e+06 470145 500653. 1732.36 0.76 0.156061 0.136801 21310 115450 -1 2820 19 1177 3615 175609 44433 6.94704 6.94704 -150.651 -6.94704 0 0 612192. 2118.31 0.03 0.08 0.10 -1 -1 0.03 0.0360537 0.0316786 194 184 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_003.v common 3.34 vpr 62.70 MiB -1 -1 0.34 18168 11 0.24 -1 -1 32492 -1 -1 40 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64200 32 32 280 312 1 190 104 17 17 289 -1 unnamed_device 23.7 MiB 0.10 1349 9132 2022 6010 1100 62.7 MiB 0.09 0.00 6.82588 -135.752 -6.82588 6.82588 0.32 0.000906573 0.000836187 0.037231 0.0344479 -1 -1 -1 -1 26 3939 32 6.55708e+06 482200 477104. 1650.88 0.95 0.168247 0.147065 21022 109990 -1 3066 20 1319 4861 248158 60039 6.13352 6.13352 -135.053 -6.13352 0 0 585099. 2024.56 0.03 0.10 0.09 -1 -1 0.03 0.0380961 0.0333989 194 186 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_004.v common 3.31 vpr 63.41 MiB -1 -1 0.36 18248 12 0.31 -1 -1 32832 -1 -1 41 29 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64932 29 32 275 307 1 193 102 17 17 289 -1 unnamed_device 23.8 MiB 0.09 1321 8432 1770 5951 711 63.4 MiB 0.08 0.00 7.97532 -148.743 -7.97532 7.97532 0.32 0.000904317 0.000838587 0.0356923 0.0329942 -1 -1 -1 -1 22 3603 44 6.55708e+06 494255 420624. 1455.45 0.94 0.186163 0.162104 20158 92377 -1 3227 16 1177 3853 213521 52797 7.1599 7.1599 -148.544 -7.1599 0 0 500653. 1732.36 0.02 0.08 0.08 -1 -1 0.02 0.0323126 0.0284639 200 190 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_005.v common 3.37 vpr 62.98 MiB -1 -1 0.38 18384 13 0.27 -1 -1 32848 -1 -1 42 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64488 32 32 302 334 1 214 106 17 17 289 -1 unnamed_device 23.7 MiB 0.12 1672 9856 2131 7054 671 63.0 MiB 0.11 0.00 8.06277 -168.566 -8.06277 8.06277 0.32 0.00100468 0.000929012 0.0474751 0.0438051 -1 -1 -1 -1 32 3848 27 6.55708e+06 506310 554710. 1919.41 0.76 0.185353 0.162891 22174 131602 -1 3263 16 1310 4212 205623 50945 7.27044 7.27044 -162.359 -7.27044 0 0 701300. 2426.64 0.04 0.09 0.11 -1 -1 0.04 0.0385923 0.0343556 217 208 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_006.v common 3.24 vpr 62.84 MiB -1 -1 0.39 18616 13 0.24 -1 -1 32908 -1 -1 41 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64352 32 32 292 324 1 214 105 17 17 289 -1 unnamed_device 23.7 MiB 0.12 1522 10479 2742 6826 911 62.8 MiB 0.11 0.00 8.0037 -160.293 -8.0037 8.0037 0.32 0.000938065 0.000869644 0.0437923 0.0405003 -1 -1 -1 -1 30 3477 18 6.55708e+06 494255 526063. 1820.29 0.74 0.158732 0.139622 21886 126133 -1 2963 16 1237 4638 205817 50427 6.61036 6.61036 -146.138 -6.61036 0 0 666494. 2306.21 0.03 0.09 0.12 -1 -1 0.03 0.0341773 0.0301008 207 198 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_007.v common 2.76 vpr 62.60 MiB -1 -1 0.28 17976 12 0.19 -1 -1 32644 -1 -1 38 27 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64104 27 32 229 261 1 167 97 17 17 289 -1 unnamed_device 23.6 MiB 0.09 1076 6757 1422 4783 552 62.6 MiB 0.06 0.00 7.57737 -131.413 -7.57737 7.57737 0.35 0.000740353 0.000687695 0.0254221 0.0235468 -1 -1 -1 -1 30 2249 15 6.55708e+06 458090 526063. 1820.29 0.51 0.107135 0.0937171 21886 126133 -1 1995 16 754 2397 101760 26051 6.58844 6.58844 -121.637 -6.58844 0 0 666494. 2306.21 0.03 0.06 0.10 -1 -1 0.03 0.0301412 0.0274345 162 150 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_008.v common 3.27 vpr 62.58 MiB -1 -1 0.30 18408 12 0.19 -1 -1 32680 -1 -1 33 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64080 31 32 229 261 1 172 96 17 17 289 -1 unnamed_device 23.3 MiB 0.11 1185 7761 1749 4997 1015 62.6 MiB 0.07 0.00 6.59345 -131.227 -6.59345 6.59345 0.32 0.000740267 0.000683218 0.0287775 0.0266122 -1 -1 -1 -1 26 3514 29 6.55708e+06 397815 477104. 1650.88 0.94 0.134112 0.117297 21022 109990 -1 2674 30 1375 5142 317498 101013 5.83766 5.83766 -127.871 -5.83766 0 0 585099. 2024.56 0.03 0.13 0.09 -1 -1 0.03 0.0413928 0.0359352 148 138 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_009.v common 3.39 vpr 62.46 MiB -1 -1 0.35 18288 12 0.17 -1 -1 32580 -1 -1 35 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63956 31 32 235 267 1 170 98 17 17 289 -1 unnamed_device 23.4 MiB 0.10 1150 5948 1022 4676 250 62.5 MiB 0.06 0.00 6.96335 -140.158 -6.96335 6.96335 0.31 0.000753943 0.000699553 0.0226974 0.0210228 -1 -1 -1 -1 26 3167 48 6.55708e+06 421925 477104. 1650.88 1.10 0.149191 0.129498 21022 109990 -1 2456 16 1013 3172 157031 38959 6.14378 6.14378 -136.577 -6.14378 0 0 585099. 2024.56 0.03 0.07 0.09 -1 -1 0.03 0.0266218 0.0234099 156 144 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_010.v common 3.30 vpr 62.71 MiB -1 -1 0.34 18364 13 0.18 -1 -1 32684 -1 -1 37 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64212 32 32 250 282 1 185 101 17 17 289 -1 unnamed_device 23.5 MiB 0.13 1310 8561 1766 6158 637 62.7 MiB 0.08 0.00 7.32681 -164.785 -7.32681 7.32681 0.32 0.000806421 0.000748231 0.032678 0.0302492 -1 -1 -1 -1 22 3707 41 6.55708e+06 446035 420624. 1455.45 0.96 0.159714 0.139055 20158 92377 -1 3144 22 1536 4703 302925 83797 7.11044 7.11044 -169.479 -7.11044 0 0 500653. 1732.36 0.02 0.12 0.08 -1 -1 0.02 0.0377263 0.0330363 169 156 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_011.v common 3.04 vpr 62.66 MiB -1 -1 0.32 18360 12 0.18 -1 -1 32500 -1 -1 34 30 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64168 30 32 216 248 1 156 96 17 17 289 -1 unnamed_device 23.5 MiB 0.10 1085 13455 3502 7863 2090 62.7 MiB 0.11 0.00 6.98058 -139.107 -6.98058 6.98058 0.32 0.000706583 0.000654372 0.0460849 0.042576 -1 -1 -1 -1 26 2621 28 6.55708e+06 409870 477104. 1650.88 0.68 0.140216 0.123163 21022 109990 -1 2240 20 875 2659 140729 35447 5.89878 5.89878 -131.517 -5.89878 0 0 585099. 2024.56 0.03 0.07 0.09 -1 -1 0.03 0.0296663 0.0260164 143 128 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_012.v common 2.91 vpr 62.74 MiB -1 -1 0.32 18052 12 0.15 -1 -1 32616 -1 -1 34 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64244 32 32 236 268 1 173 98 17 17 289 -1 unnamed_device 23.5 MiB 0.11 1288 8423 1772 6132 519 62.7 MiB 0.08 0.00 6.87747 -151.377 -6.87747 6.87747 0.32 0.00073449 0.000680238 0.0303734 0.028109 -1 -1 -1 -1 28 2973 18 6.55708e+06 409870 500653. 1732.36 0.61 0.116636 0.102105 21310 115450 -1 2529 16 839 2521 133802 32359 6.18098 6.18098 -146.692 -6.18098 0 0 612192. 2118.31 0.03 0.06 0.10 -1 -1 0.03 0.0257764 0.0227065 150 142 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_013.v common 3.54 vpr 62.89 MiB -1 -1 0.36 18592 13 0.25 -1 -1 32832 -1 -1 38 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64396 32 32 283 315 1 206 102 17 17 289 -1 unnamed_device 23.8 MiB 0.12 1426 6052 1096 4598 358 62.9 MiB 0.07 0.00 8.0061 -165.376 -8.0061 8.0061 0.32 0.000916281 0.000850066 0.0267505 0.0247926 -1 -1 -1 -1 26 3620 47 6.55708e+06 458090 477104. 1650.88 1.12 0.183408 0.160275 21022 109990 -1 3079 19 1291 4174 244750 58251 6.88996 6.88996 -156.115 -6.88996 0 0 585099. 2024.56 0.03 0.10 0.09 -1 -1 0.03 0.0370142 0.0325621 198 189 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_014.v common 3.38 vpr 63.03 MiB -1 -1 0.19 18636 14 0.30 -1 -1 32760 -1 -1 40 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64544 32 32 303 335 1 215 104 17 17 289 -1 unnamed_device 23.8 MiB 0.14 1520 7912 1705 5577 630 63.0 MiB 0.09 0.00 8.3696 -177.365 -8.3696 8.3696 0.32 0.000984218 0.000903441 0.0354887 0.0328104 -1 -1 -1 -1 26 4141 36 6.55708e+06 482200 477104. 1650.88 1.02 0.186931 0.163435 21022 109990 -1 3353 18 1405 4498 228483 55374 7.48896 7.48896 -170.624 -7.48896 0 0 585099. 2024.56 0.03 0.09 0.09 -1 -1 0.03 0.0379564 0.0333719 216 209 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_015.v common 2.74 vpr 62.71 MiB -1 -1 0.18 18064 11 0.17 -1 -1 32552 -1 -1 36 29 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64212 29 32 225 257 1 163 97 17 17 289 -1 unnamed_device 23.4 MiB 0.09 1115 7423 1566 5277 580 62.7 MiB 0.07 0.00 7.04921 -139.832 -7.04921 7.04921 0.32 0.000737989 0.00067938 0.0274667 0.0254253 -1 -1 -1 -1 24 2698 17 6.55708e+06 433980 448715. 1552.65 0.72 0.114567 0.100372 20734 103517 -1 2319 15 905 2840 129429 33992 6.07044 6.07044 -132.959 -6.07044 0 0 554710. 1919.41 0.02 0.06 0.09 -1 -1 0.02 0.0244856 0.0215996 152 140 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_016.v common 5.14 vpr 63.51 MiB -1 -1 0.37 18608 12 0.27 -1 -1 32816 -1 -1 42 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65036 32 32 301 333 1 212 106 17 17 289 -1 unnamed_device 23.7 MiB 0.09 1404 10356 2240 7262 854 63.5 MiB 0.11 0.00 7.6034 -157.023 -7.6034 7.6034 0.32 0.000986243 0.000913586 0.0448187 0.0415179 -1 -1 -1 -1 26 4153 50 6.55708e+06 506310 477104. 1650.88 2.40 0.330694 0.286609 21022 109990 -1 3387 63 1446 5629 497568 239020 6.7621 6.7621 -150.957 -6.7621 0 0 585099. 2024.56 0.03 0.32 0.09 -1 -1 0.03 0.102549 0.0883407 213 207 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_017.v common 3.28 vpr 62.71 MiB -1 -1 0.37 18580 14 0.25 -1 -1 32704 -1 -1 37 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64216 32 32 277 309 1 206 101 17 17 289 -1 unnamed_device 23.7 MiB 0.14 1531 7856 1651 5478 727 62.7 MiB 0.09 0.00 7.90798 -165.159 -7.90798 7.90798 0.32 0.000914553 0.000837208 0.035185 0.0325047 -1 -1 -1 -1 30 3460 18 6.55708e+06 446035 526063. 1820.29 0.81 0.143486 0.12563 21886 126133 -1 2989 16 1122 3925 170499 42050 7.0789 7.0789 -153.742 -7.0789 0 0 666494. 2306.21 0.03 0.08 0.10 -1 -1 0.03 0.031931 0.0281751 192 183 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_018.v common 2.66 vpr 63.16 MiB -1 -1 0.20 18268 12 0.16 -1 -1 32356 -1 -1 30 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64676 32 32 227 259 1 155 94 17 17 289 -1 unnamed_device 23.4 MiB 0.11 1103 7549 1640 5016 893 63.2 MiB 0.07 0.00 6.90503 -150.614 -6.90503 6.90503 0.31 0.000751557 0.000696619 0.0292465 0.0270462 -1 -1 -1 -1 28 2694 24 6.55708e+06 361650 500653. 1732.36 0.60 0.122009 0.106579 21310 115450 -1 2278 14 742 2504 129695 31816 6.33838 6.33838 -147.073 -6.33838 0 0 612192. 2118.31 0.03 0.06 0.10 -1 -1 0.03 0.0239144 0.0211348 145 133 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_019.v common 2.62 vpr 62.35 MiB -1 -1 0.28 17800 10 0.10 -1 -1 32260 -1 -1 25 30 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63848 30 32 175 207 1 133 87 17 17 289 -1 unnamed_device 22.8 MiB 0.08 811 4695 871 3644 180 62.4 MiB 0.04 0.00 5.40266 -122.656 -5.40266 5.40266 0.32 0.000568494 0.000526097 0.0157929 0.0146534 -1 -1 -1 -1 26 1955 23 6.55708e+06 301375 477104. 1650.88 0.65 0.0859717 0.0745792 21022 109990 -1 1670 12 586 1597 81013 21398 4.63 4.63 -118.358 -4.63 0 0 585099. 2024.56 0.03 0.04 0.09 -1 -1 0.03 0.0159524 0.0140477 100 87 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_020.v common 2.76 vpr 62.49 MiB -1 -1 0.34 18296 13 0.18 -1 -1 32680 -1 -1 31 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63992 31 32 231 263 1 172 94 17 17 289 -1 unnamed_device 23.2 MiB 0.11 1258 7975 1762 5323 890 62.5 MiB 0.07 0.00 7.44731 -157.607 -7.44731 7.44731 0.32 0.000748428 0.000694005 0.0311018 0.0287773 -1 -1 -1 -1 24 3105 22 6.55708e+06 373705 448715. 1552.65 0.57 0.122904 0.107535 20734 103517 -1 2636 16 909 2629 136306 33723 6.78964 6.78964 -154.613 -6.78964 0 0 554710. 1919.41 0.02 0.04 0.06 -1 -1 0.02 0.0153205 0.0138164 149 140 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_021.v common 3.46 vpr 63.14 MiB -1 -1 0.37 18592 13 0.31 -1 -1 32732 -1 -1 44 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64656 32 32 304 336 1 214 108 17 17 289 -1 unnamed_device 24.0 MiB 0.15 1563 10902 2454 7573 875 63.1 MiB 0.10 0.00 8.54287 -168.338 -8.54287 8.54287 0.32 0.000757053 0.000688421 0.0433442 0.0400117 -1 -1 -1 -1 28 3779 24 6.55708e+06 530420 500653. 1732.36 0.85 0.178107 0.156968 21310 115450 -1 3100 18 1177 3654 174875 43999 7.25256 7.25256 -158.25 -7.25256 0 0 612192. 2118.31 0.03 0.09 0.10 -1 -1 0.03 0.0371453 0.0327124 220 210 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_022.v common 3.50 vpr 63.49 MiB -1 -1 0.39 18632 13 0.26 -1 -1 32404 -1 -1 44 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65012 32 32 288 320 1 214 108 17 17 289 -1 unnamed_device 23.8 MiB 0.14 1588 11673 2814 7710 1149 63.5 MiB 0.11 0.00 7.83754 -170.581 -7.83754 7.83754 0.32 0.000936857 0.000868849 0.0460503 0.042534 -1 -1 -1 -1 32 3772 19 6.55708e+06 530420 554710. 1919.41 0.85 0.160212 0.140901 22174 131602 -1 3384 18 1296 4620 244514 58156 6.78764 6.78764 -159.157 -6.78764 0 0 701300. 2426.64 0.03 0.10 0.12 -1 -1 0.03 0.0372381 0.0328667 200 194 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_023.v common 2.38 vpr 62.29 MiB -1 -1 0.26 17848 9 0.08 -1 -1 32156 -1 -1 30 26 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63788 26 32 152 184 1 110 88 17 17 289 -1 unnamed_device 22.9 MiB 0.06 699 12763 4166 6425 2172 62.3 MiB 0.08 0.00 4.8768 -89.1013 -4.8768 4.8768 0.32 0.000516238 0.000480457 0.0357187 0.0331681 -1 -1 -1 -1 26 1518 13 6.55708e+06 361650 477104. 1650.88 0.45 0.0905651 0.0798395 21022 109990 -1 1379 11 413 1169 60315 15298 4.28566 4.28566 -87.0192 -4.28566 0 0 585099. 2024.56 0.03 0.04 0.11 -1 -1 0.03 0.0140782 0.0124511 94 76 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_024.v common 3.32 vpr 63.50 MiB -1 -1 0.18 18440 13 0.25 -1 -1 32828 -1 -1 42 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65020 32 32 287 319 1 208 106 17 17 289 -1 unnamed_device 23.8 MiB 0.12 1509 10606 2561 6937 1108 63.5 MiB 0.12 0.00 8.39278 -170.222 -8.39278 8.39278 0.32 0.000923794 0.000856858 0.046789 0.0431241 -1 -1 -1 -1 26 3983 22 6.55708e+06 506310 477104. 1650.88 0.94 0.167216 0.146905 21022 109990 -1 3302 18 1502 4741 255372 64248 7.7191 7.7191 -166.982 -7.7191 0 0 585099. 2024.56 0.03 0.10 0.09 -1 -1 0.03 0.0365216 0.0320212 206 193 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_025.v common 2.50 vpr 62.44 MiB -1 -1 0.25 17764 8 0.09 -1 -1 32168 -1 -1 27 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63936 32 32 154 186 1 117 91 17 17 289 -1 unnamed_device 23.0 MiB 0.06 804 12127 3272 7580 1275 62.4 MiB 0.08 0.00 4.197 -96.967 -4.197 4.197 0.31 0.000509299 0.000472577 0.0323362 0.0300116 -1 -1 -1 -1 26 1624 14 6.55708e+06 325485 477104. 1650.88 0.54 0.0861366 0.0759918 21022 109990 -1 1429 12 453 1098 55059 14583 3.85168 3.85168 -96.2848 -3.85168 0 0 585099. 2024.56 0.03 0.04 0.09 -1 -1 0.03 0.0142867 0.0125614 83 60 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_026.v common 2.98 vpr 62.74 MiB -1 -1 0.23 18368 15 0.23 -1 -1 32684 -1 -1 41 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64248 32 32 254 286 1 185 105 17 17 289 -1 unnamed_device 23.5 MiB 0.10 1357 8750 1852 5899 999 62.7 MiB 0.08 0.00 8.78692 -176.106 -8.78692 8.78692 0.32 0.000841685 0.000781697 0.0333692 0.0309533 -1 -1 -1 -1 26 3294 25 6.55708e+06 494255 477104. 1650.88 0.72 0.144213 0.126082 21022 109990 -1 2784 18 1066 3613 168865 42582 7.47729 7.47729 -162.925 -7.47729 0 0 585099. 2024.56 0.03 0.08 0.11 -1 -1 0.03 0.0323117 0.0283185 174 160 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_027.v common 3.24 vpr 63.17 MiB -1 -1 0.34 18288 13 0.22 -1 -1 32700 -1 -1 36 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64684 32 32 260 292 1 184 100 17 17 289 -1 unnamed_device 23.7 MiB 0.12 1236 6828 1429 4776 623 63.2 MiB 0.07 0.00 7.22178 -148.744 -7.22178 7.22178 0.33 0.000850362 0.000789992 0.0285833 0.0264987 -1 -1 -1 -1 26 3414 46 6.55708e+06 433980 477104. 1650.88 0.94 0.175959 0.15368 21022 109990 -1 2784 14 1038 3314 173102 43007 6.51004 6.51004 -147.171 -6.51004 0 0 585099. 2024.56 0.02 0.06 0.06 -1 -1 0.02 0.0262637 0.0232639 178 166 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_028.v common 3.25 vpr 62.85 MiB -1 -1 0.35 18376 13 0.27 -1 -1 32748 -1 -1 39 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64356 32 32 279 311 1 202 103 17 17 289 -1 unnamed_device 23.7 MiB 0.13 1423 8056 1725 6010 321 62.8 MiB 0.08 0.00 7.89081 -163.559 -7.89081 7.89081 0.32 0.000904151 0.000838018 0.0337874 0.0312462 -1 -1 -1 -1 28 3623 24 6.55708e+06 470145 500653. 1732.36 0.82 0.154157 0.13497 21310 115450 -1 2952 21 1195 4024 195422 47755 7.0835 7.0835 -157.6 -7.0835 0 0 612192. 2118.31 0.03 0.09 0.10 -1 -1 0.03 0.0393404 0.0344626 193 185 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_029.v common 2.78 vpr 62.49 MiB -1 -1 0.33 18292 12 0.17 -1 -1 32640 -1 -1 33 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63988 32 32 238 270 1 177 97 17 17 289 -1 unnamed_device 23.2 MiB 0.11 1283 6313 1272 4518 523 62.5 MiB 0.06 0.00 6.94869 -150.095 -6.94869 6.94869 0.32 0.000766333 0.000702292 0.0250366 0.023128 -1 -1 -1 -1 26 3018 21 6.55708e+06 397815 477104. 1650.88 0.60 0.116745 0.101823 21022 109990 -1 2574 16 853 2668 138914 34450 6.13918 6.13918 -145.442 -6.13918 0 0 585099. 2024.56 0.03 0.07 0.09 -1 -1 0.03 0.0266072 0.023439 152 144 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_030.v common 2.76 vpr 62.88 MiB -1 -1 0.32 18160 11 0.15 -1 -1 32620 -1 -1 31 30 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64384 30 32 213 245 1 156 93 17 17 289 -1 unnamed_device 23.3 MiB 0.08 1055 6813 1438 4810 565 62.9 MiB 0.06 0.00 6.26019 -134.121 -6.26019 6.26019 0.31 0.00068437 0.000634858 0.0248044 0.0229674 -1 -1 -1 -1 30 2151 16 6.55708e+06 373705 526063. 1820.29 0.56 0.102637 0.0897125 21886 126133 -1 1944 16 673 2039 82756 21710 5.59726 5.59726 -126.076 -5.59726 0 0 666494. 2306.21 0.03 0.05 0.10 -1 -1 0.03 0.0238631 0.0209819 135 125 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_031.v common 2.76 vpr 62.54 MiB -1 -1 0.27 18100 11 0.19 -1 -1 32736 -1 -1 38 28 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64040 28 32 227 259 1 163 98 17 17 289 -1 unnamed_device 23.3 MiB 0.09 1081 10223 2473 6798 952 62.5 MiB 0.09 0.00 6.57342 -128.258 -6.57342 6.57342 0.32 0.000741994 0.000684816 0.0363059 0.0335193 -1 -1 -1 -1 26 2656 19 6.55708e+06 458090 477104. 1650.88 0.54 0.123119 0.107977 21022 109990 -1 2269 14 849 2638 129086 32720 6.04852 6.04852 -125.768 -6.04852 0 0 585099. 2024.56 0.03 0.06 0.09 -1 -1 0.03 0.0238756 0.0211151 156 145 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_032.v common 3.02 vpr 63.32 MiB -1 -1 0.20 17924 12 0.25 -1 -1 32632 -1 -1 38 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64844 32 32 274 306 1 201 102 17 17 289 -1 unnamed_device 23.5 MiB 0.12 1382 8194 1732 5834 628 63.3 MiB 0.08 0.00 7.69231 -166.04 -7.69231 7.69231 0.35 0.000944117 0.000868224 0.0333096 0.030821 -1 -1 -1 -1 26 3410 24 6.55708e+06 458090 477104. 1650.88 0.72 0.143882 0.12525 21022 109990 -1 2909 17 1202 3496 167059 42450 6.85578 6.85578 -159.649 -6.85578 0 0 585099. 2024.56 0.03 0.08 0.09 -1 -1 0.03 0.0324514 0.028574 185 180 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_033.v common 2.83 vpr 62.81 MiB -1 -1 0.19 18044 12 0.16 -1 -1 32576 -1 -1 36 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64320 31 32 237 269 1 168 99 17 17 289 -1 unnamed_device 23.5 MiB 0.07 1114 7395 1500 5554 341 62.8 MiB 0.07 0.00 7.20861 -144.977 -7.20861 7.20861 0.32 0.000749918 0.000695574 0.0270787 0.0250429 -1 -1 -1 -1 26 2893 30 6.55708e+06 433980 477104. 1650.88 0.70 0.129164 0.112442 21022 109990 -1 2449 20 1102 3305 170318 43536 6.31284 6.31284 -141.494 -6.31284 0 0 585099. 2024.56 0.03 0.08 0.09 -1 -1 0.03 0.0310354 0.0271562 158 146 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_034.v common 2.69 vpr 62.45 MiB -1 -1 0.34 18380 10 0.14 -1 -1 32644 -1 -1 32 29 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63944 29 32 220 252 1 154 93 17 17 289 -1 unnamed_device 23.2 MiB 0.10 1047 4713 857 3500 356 62.4 MiB 0.05 0.00 6.45011 -129.949 -6.45011 6.45011 0.31 0.000718108 0.000665769 0.0188329 0.0174671 -1 -1 -1 -1 26 2448 16 6.55708e+06 385760 477104. 1650.88 0.56 0.100732 0.087901 21022 109990 -1 2149 14 706 2368 115894 29208 5.58138 5.58138 -125.157 -5.58138 0 0 585099. 2024.56 0.03 0.06 0.06 -1 -1 0.03 0.0230322 0.0203345 147 135 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_035.v common 3.39 vpr 63.05 MiB -1 -1 0.40 18768 13 0.31 -1 -1 32728 -1 -1 43 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64560 32 32 315 347 1 217 107 17 17 289 -1 unnamed_device 24.0 MiB 0.15 1538 9468 1856 6925 687 63.0 MiB 0.10 0.00 7.8442 -164.077 -7.8442 7.8442 0.32 0.00100417 0.000928364 0.0416764 0.0384657 -1 -1 -1 -1 26 3906 24 6.55708e+06 518365 477104. 1650.88 0.81 0.173345 0.15164 21022 109990 -1 3305 15 1279 4430 227851 55350 6.8777 6.8777 -158.675 -6.8777 0 0 585099. 2024.56 0.03 0.09 0.09 -1 -1 0.03 0.0364353 0.0323555 231 221 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_036.v common 3.32 vpr 63.32 MiB -1 -1 0.39 18804 14 0.31 -1 -1 33228 -1 -1 44 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64836 32 32 282 314 1 222 108 17 17 289 -1 unnamed_device 23.6 MiB 0.09 1631 9874 2233 6950 691 63.3 MiB 0.10 0.00 8.2454 -177.702 -8.2454 8.2454 0.32 0.000982675 0.000903861 0.041767 0.0387156 -1 -1 -1 -1 30 3585 25 6.55708e+06 530420 526063. 1820.29 0.83 0.165383 0.145325 21886 126133 -1 2986 15 1169 4017 176190 43725 7.15589 7.15589 -164.997 -7.15589 0 0 666494. 2306.21 0.03 0.08 0.10 -1 -1 0.03 0.0320695 0.0283765 201 188 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_037.v common 2.78 vpr 62.50 MiB -1 -1 0.33 18276 12 0.15 -1 -1 32320 -1 -1 35 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64000 31 32 241 273 1 176 98 17 17 289 -1 unnamed_device 23.2 MiB 0.10 1176 7073 1425 5398 250 62.5 MiB 0.07 0.00 7.74192 -156.635 -7.74192 7.74192 0.32 0.000758765 0.000702637 0.0272496 0.0251481 -1 -1 -1 -1 30 2322 17 6.55708e+06 421925 526063. 1820.29 0.50 0.111988 0.0978798 21886 126133 -1 2111 15 827 2525 111524 28428 6.78504 6.78504 -144.859 -6.78504 0 0 666494. 2306.21 0.04 0.07 0.10 -1 -1 0.04 0.026533 0.0236362 159 150 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_038.v common 3.99 vpr 63.53 MiB -1 -1 0.42 18684 12 0.27 -1 -1 32780 -1 -1 42 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65052 31 32 307 339 1 218 105 17 17 289 -1 unnamed_device 23.7 MiB 0.12 1419 7762 1569 5652 541 63.5 MiB 0.08 0.00 7.28025 -148.967 -7.28025 7.28025 0.32 0.000982032 0.000911484 0.0340629 0.0314986 -1 -1 -1 -1 22 4721 49 6.55708e+06 506310 420624. 1455.45 1.56 0.206661 0.179792 20158 92377 -1 3783 23 1921 6554 357016 88581 7.01978 7.01978 -157.251 -7.01978 0 0 500653. 1732.36 0.02 0.08 0.05 -1 -1 0.02 0.0259526 0.0231127 222 216 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_039.v common 3.65 vpr 63.49 MiB -1 -1 0.40 18720 14 0.33 -1 -1 32684 -1 -1 40 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65016 31 32 293 325 1 212 103 17 17 289 -1 unnamed_device 23.7 MiB 0.12 1490 10707 2543 7210 954 63.5 MiB 0.11 0.00 8.22472 -163.274 -8.22472 8.22472 0.32 0.000962421 0.000891849 0.0473765 0.0437746 -1 -1 -1 -1 26 3802 31 6.55708e+06 482200 477104. 1650.88 0.91 0.18991 0.16663 21022 109990 -1 3208 17 1283 4300 228236 54411 7.2383 7.2383 -156.541 -7.2383 0 0 585099. 2024.56 0.03 0.09 0.09 -1 -1 0.03 0.0358316 0.0315391 212 202 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_040.v common 3.57 vpr 62.72 MiB -1 -1 0.42 18820 13 0.26 -1 -1 32712 -1 -1 45 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64224 31 32 276 308 1 208 108 17 17 289 -1 unnamed_device 23.6 MiB 0.13 1520 8332 1703 5917 712 62.7 MiB 0.09 0.00 7.94503 -161.931 -7.94503 7.94503 0.32 0.000907456 0.000836347 0.0336936 0.031227 -1 -1 -1 -1 26 4333 40 6.55708e+06 542475 477104. 1650.88 1.02 0.173665 0.151349 21022 109990 -1 3482 17 1358 4203 231179 55264 7.22664 7.22664 -160.684 -7.22664 0 0 585099. 2024.56 0.03 0.09 0.09 -1 -1 0.03 0.0333933 0.0294144 200 185 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_041.v common 3.27 vpr 62.66 MiB -1 -1 0.39 18500 13 0.25 -1 -1 32904 -1 -1 37 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64160 31 32 269 301 1 187 100 17 17 289 -1 unnamed_device 23.6 MiB 0.12 1368 6596 1290 4863 443 62.7 MiB 0.07 0.00 7.49321 -147.911 -7.49321 7.49321 0.32 0.000877954 0.000814043 0.0285454 0.0264212 -1 -1 -1 -1 20 4011 36 6.55708e+06 446035 394039. 1363.46 0.64 0.0928277 0.0822614 19870 87366 -1 3774 42 1470 5602 673854 269857 6.5635 6.5635 -146.713 -6.5635 0 0 477104. 1650.88 0.02 0.27 0.08 -1 -1 0.02 0.0621905 0.0540273 186 178 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_042.v common 2.76 vpr 62.70 MiB -1 -1 0.32 18392 12 0.19 -1 -1 32744 -1 -1 35 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64204 32 32 264 296 1 184 99 17 17 289 -1 unnamed_device 23.5 MiB 0.12 1260 8079 1687 5923 469 62.7 MiB 0.08 0.00 7.05937 -147.674 -7.05937 7.05937 0.31 0.000841239 0.000778312 0.0329972 0.0304944 -1 -1 -1 -1 30 2686 16 6.55708e+06 421925 526063. 1820.29 0.53 0.129132 0.113126 21886 126133 -1 2369 16 835 2903 124037 31171 5.95024 5.95024 -137.57 -5.95024 0 0 666494. 2306.21 0.02 0.04 0.07 -1 -1 0.02 0.017409 0.0157321 179 170 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_043.v common 4.30 vpr 63.76 MiB -1 -1 0.45 19308 14 0.39 -1 -1 32772 -1 -1 45 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65288 32 32 324 356 1 237 109 17 17 289 -1 unnamed_device 24.0 MiB 0.15 1730 8429 1700 5837 892 63.8 MiB 0.09 0.00 8.45055 -180.473 -8.45055 8.45055 0.32 0.00104857 0.000970525 0.0381495 0.0352672 -1 -1 -1 -1 26 4823 30 6.55708e+06 542475 477104. 1650.88 1.47 0.189214 0.165292 21022 109990 -1 3883 21 1840 6692 351771 85080 7.21136 7.21136 -168.669 -7.21136 0 0 585099. 2024.56 0.03 0.14 0.09 -1 -1 0.03 0.0485863 0.0426573 241 230 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_044.v common 2.93 vpr 62.72 MiB -1 -1 0.30 17896 11 0.19 -1 -1 32360 -1 -1 38 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64228 31 32 249 281 1 176 101 17 17 289 -1 unnamed_device 23.6 MiB 0.11 1224 11146 2806 7190 1150 62.7 MiB 0.10 0.00 6.67349 -140.784 -6.67349 6.67349 0.32 0.000809058 0.000751074 0.0415832 0.0384845 -1 -1 -1 -1 26 3255 30 6.55708e+06 458090 477104. 1650.88 0.64 0.148789 0.129962 21022 109990 -1 2554 18 1072 3465 164802 41276 6.02298 6.02298 -135.82 -6.02298 0 0 585099. 2024.56 0.03 0.08 0.10 -1 -1 0.03 0.0309815 0.0271194 173 158 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_045.v common 3.70 vpr 62.80 MiB -1 -1 0.21 18648 13 0.25 -1 -1 33096 -1 -1 41 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64304 31 32 284 316 1 196 104 17 17 289 -1 unnamed_device 23.7 MiB 0.14 1353 8400 1833 5671 896 62.8 MiB 0.08 0.00 8.00359 -155.245 -8.00359 8.00359 0.31 0.000908757 0.000841742 0.0358726 0.0331558 -1 -1 -1 -1 24 3710 27 6.55708e+06 494255 448715. 1552.65 1.43 0.161372 0.140867 20734 103517 -1 3127 19 1328 4863 261396 62929 7.33356 7.33356 -160.506 -7.33356 0 0 554710. 1919.41 0.02 0.10 0.09 -1 -1 0.02 0.0370573 0.032434 201 193 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_046.v common 3.51 vpr 62.97 MiB -1 -1 0.36 18516 12 0.23 -1 -1 32672 -1 -1 40 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64484 32 32 303 335 1 212 104 17 17 289 -1 unnamed_device 23.8 MiB 0.13 1559 7424 1464 5587 373 63.0 MiB 0.08 0.00 6.85312 -152.686 -6.85312 6.85312 0.32 0.000961384 0.000889927 0.0341386 0.0315623 -1 -1 -1 -1 28 4158 28 6.55708e+06 482200 500653. 1732.36 1.10 0.167896 0.14574 21310 115450 -1 3410 20 1603 5993 308576 73677 6.30118 6.30118 -147.734 -6.30118 0 0 612192. 2118.31 0.03 0.11 0.10 -1 -1 0.03 0.04091 0.0358022 217 209 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_047.v common 3.20 vpr 63.23 MiB -1 -1 0.35 18316 13 0.27 -1 -1 32784 -1 -1 34 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64748 32 32 272 304 1 187 98 17 17 289 -1 unnamed_device 23.6 MiB 0.13 1280 7748 1671 5489 588 63.2 MiB 0.08 0.00 7.63209 -154.882 -7.63209 7.63209 0.36 0.00090211 0.000836187 0.0351912 0.0325766 -1 -1 -1 -1 26 3437 27 6.55708e+06 409870 477104. 1650.88 0.75 0.155252 0.135635 21022 109990 -1 2857 16 1182 3668 180373 44601 7.03004 7.03004 -157.27 -7.03004 0 0 585099. 2024.56 0.03 0.08 0.09 -1 -1 0.03 0.0317053 0.0278992 188 178 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_048.v common 3.17 vpr 63.41 MiB -1 -1 0.36 18616 13 0.23 -1 -1 33228 -1 -1 41 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64928 32 32 271 303 1 198 105 17 17 289 -1 unnamed_device 23.8 MiB 0.12 1188 12208 3113 7738 1357 63.4 MiB 0.11 0.00 7.52995 -155.23 -7.52995 7.52995 0.32 0.000875002 0.000810912 0.0468745 0.0433827 -1 -1 -1 -1 28 3299 28 6.55708e+06 494255 500653. 1732.36 0.77 0.169221 0.148743 21310 115450 -1 2552 17 1006 3227 156870 41705 6.9633 6.9633 -154.236 -6.9633 0 0 612192. 2118.31 0.03 0.08 0.10 -1 -1 0.03 0.0325114 0.0285998 189 177 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_049.v common 3.07 vpr 62.90 MiB -1 -1 0.39 18680 12 0.25 -1 -1 32780 -1 -1 39 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64412 32 32 288 320 1 205 103 17 17 289 -1 unnamed_device 23.8 MiB 0.16 1426 7092 1428 5198 466 62.9 MiB 0.08 0.00 7.48926 -155.909 -7.48926 7.48926 0.31 0.000932767 0.000863927 0.0312962 0.028962 -1 -1 -1 -1 30 3199 15 6.55708e+06 470145 526063. 1820.29 0.57 0.136026 0.118805 21886 126133 -1 2762 16 1052 4146 179279 43677 6.62964 6.62964 -146.455 -6.62964 0 0 666494. 2306.21 0.03 0.08 0.10 -1 -1 0.03 0.033507 0.0295339 200 194 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_050.v common 3.25 vpr 63.02 MiB -1 -1 0.23 18936 13 0.28 -1 -1 33244 -1 -1 44 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64528 32 32 306 338 1 222 108 17 17 289 -1 unnamed_device 24.0 MiB 0.17 1446 8332 1726 5917 689 63.0 MiB 0.09 0.00 7.48621 -159.043 -7.48621 7.48621 0.31 0.000991449 0.000915205 0.0361546 0.0334219 -1 -1 -1 -1 28 3881 25 6.55708e+06 530420 500653. 1732.36 0.80 0.166994 0.145882 21310 115450 -1 3232 17 1503 4700 220862 55806 6.34038 6.34038 -152.587 -6.34038 0 0 612192. 2118.31 0.03 0.09 0.10 -1 -1 0.03 0.0373484 0.0329125 224 212 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_051.v common 3.27 vpr 63.29 MiB -1 -1 0.35 18292 14 0.25 -1 -1 32768 -1 -1 36 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64808 32 32 262 294 1 188 100 17 17 289 -1 unnamed_device 23.7 MiB 0.09 1309 9148 1954 6493 701 63.3 MiB 0.09 0.00 8.44795 -161.218 -8.44795 8.44795 0.32 0.000861576 0.00079987 0.0377303 0.0349561 -1 -1 -1 -1 26 3401 37 6.55708e+06 433980 477104. 1650.88 0.92 0.165349 0.144991 21022 109990 -1 2893 18 1150 3780 194516 47654 7.30202 7.30202 -154.004 -7.30202 0 0 585099. 2024.56 0.03 0.08 0.09 -1 -1 0.03 0.0329873 0.0289992 181 168 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_052.v common 3.53 vpr 62.97 MiB -1 -1 0.35 18332 13 0.26 -1 -1 32732 -1 -1 42 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64480 32 32 291 323 1 211 106 17 17 289 -1 unnamed_device 23.8 MiB 0.15 1565 8856 1818 6304 734 63.0 MiB 0.09 0.00 8.42643 -168.235 -8.42643 8.42643 0.32 0.000917861 0.000849185 0.0371507 0.0344311 -1 -1 -1 -1 30 3528 20 6.55708e+06 506310 526063. 1820.29 0.90 0.15283 0.134108 21886 126133 -1 3137 26 1288 4293 264169 94963 7.3173 7.3173 -157.853 -7.3173 0 0 666494. 2306.21 0.03 0.13 0.10 -1 -1 0.03 0.0470932 0.0410716 206 197 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_053.v common 3.39 vpr 62.84 MiB -1 -1 0.39 18608 13 0.27 -1 -1 32608 -1 -1 44 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64352 31 32 302 334 1 217 107 17 17 289 -1 unnamed_device 23.7 MiB 0.11 1482 8962 1772 6559 631 62.8 MiB 0.12 0.00 8.06507 -165.54 -8.06507 8.06507 0.35 0.000971141 0.000901544 0.0404047 0.0371686 -1 -1 -1 -1 28 3613 27 6.55708e+06 530420 500653. 1732.36 0.80 0.175475 0.154076 21310 115450 -1 3047 16 1298 4142 204211 51602 7.09116 7.09116 -157.288 -7.09116 0 0 612192. 2118.31 0.03 0.09 0.10 -1 -1 0.03 0.0347175 0.0306741 219 211 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_054.v common 3.55 vpr 63.54 MiB -1 -1 0.40 18700 12 0.29 -1 -1 32776 -1 -1 44 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65068 32 32 308 340 1 224 108 17 17 289 -1 unnamed_device 24.0 MiB 0.15 1570 9103 1909 6305 889 63.5 MiB 0.10 0.00 7.98943 -163.871 -7.98943 7.98943 0.34 0.000969482 0.000894204 0.0390409 0.0360704 -1 -1 -1 -1 26 4306 32 6.55708e+06 530420 477104. 1650.88 0.86 0.17512 0.152838 21022 109990 -1 3542 18 1499 4783 243504 60501 7.1207 7.1207 -158.832 -7.1207 0 0 585099. 2024.56 0.03 0.10 0.09 -1 -1 0.03 0.0383071 0.033803 223 214 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_055.v common 2.99 vpr 62.67 MiB -1 -1 0.30 18120 11 0.13 -1 -1 32532 -1 -1 32 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64176 32 32 216 248 1 153 96 17 17 289 -1 unnamed_device 23.2 MiB 0.08 1195 6666 1336 4773 557 62.7 MiB 0.06 0.00 7.06249 -141.612 -7.06249 7.06249 0.32 0.000697418 0.000647372 0.0233708 0.0216673 -1 -1 -1 -1 22 3077 37 6.55708e+06 385760 420624. 1455.45 0.78 0.125317 0.108982 20158 92377 -1 2622 18 828 2501 158693 47274 6.20392 6.20392 -140.866 -6.20392 0 0 500653. 1732.36 0.02 0.07 0.08 -1 -1 0.02 0.0262371 0.0230173 135 122 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_056.v common 3.40 vpr 63.24 MiB -1 -1 0.36 18264 13 0.21 -1 -1 32704 -1 -1 40 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64756 32 32 254 286 1 183 104 17 17 289 -1 unnamed_device 23.5 MiB 0.11 1327 10840 2517 7130 1193 63.2 MiB 0.10 0.00 7.53291 -162.915 -7.53291 7.53291 0.31 0.00083373 0.000773612 0.0404522 0.0374191 -1 -1 -1 -1 26 3261 28 6.55708e+06 482200 477104. 1650.88 0.97 0.158062 0.138756 21022 109990 -1 2798 18 1120 3468 175676 43024 6.90984 6.90984 -156.407 -6.90984 0 0 585099. 2024.56 0.03 0.08 0.09 -1 -1 0.03 0.0324025 0.0284632 174 160 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_057.v common 3.80 vpr 63.83 MiB -1 -1 0.40 19140 14 0.42 -1 -1 32864 -1 -1 46 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65364 32 32 338 370 1 245 110 17 17 289 -1 unnamed_device 24.2 MiB 0.15 1708 12208 2848 8389 971 63.8 MiB 0.13 0.00 8.78166 -178.693 -8.78166 8.78166 0.31 0.00108765 0.00100414 0.0550645 0.0508193 -1 -1 -1 -1 26 4540 36 6.55708e+06 554530 477104. 1650.88 0.99 0.224559 0.19761 21022 109990 -1 3880 19 2070 6885 338520 83338 8.02122 8.02122 -177.468 -8.02122 0 0 585099. 2024.56 0.03 0.12 0.09 -1 -1 0.03 0.045465 0.0399312 254 244 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_058.v common 3.19 vpr 63.70 MiB -1 -1 0.37 18556 13 0.28 -1 -1 32768 -1 -1 37 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65232 32 32 271 303 1 201 101 17 17 289 -1 unnamed_device 24.1 MiB 0.16 1362 9031 2039 6215 777 63.7 MiB 0.09 0.00 7.646 -162.789 -7.646 7.646 0.31 0.000910378 0.000840374 0.0392549 0.0363376 -1 -1 -1 -1 28 3476 18 6.55708e+06 446035 500653. 1732.36 0.70 0.146089 0.128211 21310 115450 -1 2856 16 1088 3704 181667 45177 6.75044 6.75044 -156.36 -6.75044 0 0 612192. 2118.31 0.02 0.05 0.08 -1 -1 0.02 0.0188276 0.0169693 188 177 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_059.v common 2.56 vpr 62.56 MiB -1 -1 0.22 18372 11 0.17 -1 -1 32744 -1 -1 34 30 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64064 30 32 224 256 1 151 96 17 17 289 -1 unnamed_device 23.2 MiB 0.08 1021 6009 1170 4207 632 62.6 MiB 0.06 0.00 6.69868 -137.721 -6.69868 6.69868 0.31 0.000744432 0.00068886 0.0234868 0.0217316 -1 -1 -1 -1 26 2563 19 6.55708e+06 409870 477104. 1650.88 0.48 0.108507 0.0946241 21022 109990 -1 2138 19 897 2977 137771 35551 5.97918 5.97918 -132.876 -5.97918 0 0 585099. 2024.56 0.03 0.07 0.09 -1 -1 0.03 0.0287311 0.0251435 152 136 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_060.v common 3.78 vpr 63.93 MiB -1 -1 0.25 19448 15 0.50 -1 -1 32836 -1 -1 51 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65464 32 32 351 383 1 255 115 17 17 289 -1 unnamed_device 24.2 MiB 0.16 1912 10996 2333 7725 938 63.9 MiB 0.12 0.00 9.61395 -186.411 -9.61395 9.61395 0.32 0.0011181 0.00103394 0.0489481 0.0452034 -1 -1 -1 -1 30 4514 22 6.55708e+06 614805 526063. 1820.29 0.99 0.19515 0.17157 21886 126133 -1 3814 18 1702 6171 283766 68025 8.38947 8.38947 -178.746 -8.38947 0 0 666494. 2306.21 0.03 0.11 0.10 -1 -1 0.03 0.0451658 0.0398477 263 257 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_061.v common 3.50 vpr 63.46 MiB -1 -1 0.27 18540 13 0.31 -1 -1 32704 -1 -1 38 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64988 32 32 297 329 1 211 102 17 17 289 -1 unnamed_device 23.7 MiB 0.14 1494 7004 1387 5016 601 63.5 MiB 0.08 0.00 8.20269 -173.766 -8.20269 8.20269 0.31 0.000968816 0.000895698 0.0320626 0.0296533 -1 -1 -1 -1 26 4015 40 6.55708e+06 458090 477104. 1650.88 0.95 0.181751 0.158141 21022 109990 -1 3254 19 1320 4206 214082 52716 7.1971 7.1971 -166.207 -7.1971 0 0 585099. 2024.56 0.03 0.10 0.09 -1 -1 0.03 0.0425909 0.0376766 210 203 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_062.v common 2.74 vpr 62.46 MiB -1 -1 0.29 17984 11 0.14 -1 -1 32748 -1 -1 34 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63964 32 32 231 263 1 168 98 17 17 289 -1 unnamed_device 23.2 MiB 0.09 1195 6623 1177 5107 339 62.5 MiB 0.06 0.00 6.65457 -141.306 -6.65457 6.65457 0.31 0.000733112 0.000677393 0.0241635 0.0223735 -1 -1 -1 -1 26 2620 21 6.55708e+06 409870 477104. 1650.88 0.56 0.111688 0.0973356 21022 109990 -1 2451 16 921 2842 142303 34856 5.78058 5.78058 -136.602 -5.78058 0 0 585099. 2024.56 0.03 0.07 0.09 -1 -1 0.03 0.0256648 0.0226153 150 137 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_063.v common 3.55 vpr 63.50 MiB -1 -1 0.35 18624 12 0.29 -1 -1 32772 -1 -1 41 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65020 32 32 305 337 1 218 105 17 17 289 -1 unnamed_device 23.9 MiB 0.12 1529 7515 1571 5267 677 63.5 MiB 0.08 0.00 7.72901 -156.772 -7.72901 7.72901 0.32 0.000967232 0.000892794 0.0341895 0.0315955 -1 -1 -1 -1 26 4149 29 6.55708e+06 494255 477104. 1650.88 1.07 0.170357 0.148539 21022 109990 -1 3309 15 1237 4513 241158 57589 6.8823 6.8823 -153.607 -6.8823 0 0 585099. 2024.56 0.02 0.06 0.06 -1 -1 0.02 0.0200681 0.0180731 221 211 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_064.v common 3.44 vpr 62.68 MiB -1 -1 0.30 18164 12 0.21 -1 -1 32584 -1 -1 37 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64188 32 32 243 275 1 186 101 17 17 289 -1 unnamed_device 23.5 MiB 0.13 1330 8561 1943 5809 809 62.7 MiB 0.08 0.00 7.52541 -159.549 -7.52541 7.52541 0.32 0.000794552 0.000736469 0.031952 0.0295954 -1 -1 -1 -1 26 3709 42 6.55708e+06 446035 477104. 1650.88 1.17 0.168637 0.1482 21022 109990 -1 2986 17 1258 3785 210183 52319 6.47024 6.47024 -152.762 -6.47024 0 0 585099. 2024.56 0.03 0.08 0.09 -1 -1 0.03 0.0297057 0.0261693 163 149 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_065.v common 2.87 vpr 62.47 MiB -1 -1 0.33 18064 12 0.20 -1 -1 32768 -1 -1 35 30 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63972 30 32 228 260 1 158 97 17 17 289 -1 unnamed_device 23.4 MiB 0.09 1101 6979 1478 4733 768 62.5 MiB 0.06 0.00 7.33897 -151.074 -7.33897 7.33897 0.32 0.000743562 0.000688744 0.0262544 0.0243127 -1 -1 -1 -1 28 2502 19 6.55708e+06 421925 500653. 1732.36 0.53 0.114578 0.100017 21310 115450 -1 2128 14 720 2386 111841 28645 6.59044 6.59044 -145.015 -6.59044 0 0 612192. 2118.31 0.04 0.08 0.12 -1 -1 0.04 0.0296621 0.0262135 152 140 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_066.v common 3.19 vpr 62.88 MiB -1 -1 0.40 18500 12 0.27 -1 -1 33148 -1 -1 41 29 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64392 29 32 275 307 1 195 102 17 17 289 -1 unnamed_device 23.8 MiB 0.14 1359 6290 1245 4520 525 62.9 MiB 0.07 0.00 6.96821 -134.331 -6.96821 6.96821 0.32 0.000909702 0.000839218 0.02755 0.0255126 -1 -1 -1 -1 32 3043 20 6.55708e+06 494255 554710. 1919.41 0.69 0.137461 0.119841 22174 131602 -1 2601 16 1002 3561 167179 41745 6.22018 6.22018 -128.31 -6.22018 0 0 701300. 2426.64 0.03 0.08 0.12 -1 -1 0.03 0.0324309 0.0285455 197 190 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_067.v common 3.34 vpr 63.48 MiB -1 -1 0.38 18640 13 0.33 -1 -1 32840 -1 -1 46 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65008 32 32 330 362 1 232 110 17 17 289 -1 unnamed_device 23.9 MiB 0.10 1613 8263 1573 6205 485 63.5 MiB 0.09 0.00 8.04821 -173.791 -8.04821 8.04821 0.32 0.00104309 0.000967316 0.0377572 0.0349477 -1 -1 -1 -1 30 3707 17 6.55708e+06 554530 526063. 1820.29 0.78 0.160975 0.141271 21886 126133 -1 3234 16 1428 4357 196312 49219 7.2363 7.2363 -164.701 -7.2363 0 0 666494. 2306.21 0.03 0.09 0.10 -1 -1 0.03 0.036774 0.0325126 244 236 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_068.v common 3.35 vpr 63.08 MiB -1 -1 0.38 18704 12 0.23 -1 -1 32960 -1 -1 38 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64592 32 32 290 322 1 201 102 17 17 289 -1 unnamed_device 24.0 MiB 0.14 1385 9622 2059 6854 709 63.1 MiB 0.10 0.00 7.65501 -156.101 -7.65501 7.65501 0.32 0.000938068 0.000869992 0.0423961 0.0392761 -1 -1 -1 -1 26 3475 21 6.55708e+06 458090 477104. 1650.88 0.79 0.164136 0.14429 21022 109990 -1 2941 17 1188 3862 185644 46684 6.8013 6.8013 -149.206 -6.8013 0 0 585099. 2024.56 0.03 0.08 0.09 -1 -1 0.03 0.0346934 0.0305257 206 196 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_069.v common 3.15 vpr 62.40 MiB -1 -1 0.30 18004 12 0.15 -1 -1 32632 -1 -1 32 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63900 32 32 214 246 1 155 96 17 17 289 -1 unnamed_device 23.2 MiB 0.09 1125 6666 1294 5032 340 62.4 MiB 0.06 0.00 7.29066 -147.807 -7.29066 7.29066 0.32 0.000701615 0.000650735 0.0246956 0.0228416 -1 -1 -1 -1 22 2900 39 6.55708e+06 385760 420624. 1455.45 0.94 0.132536 0.115238 20158 92377 -1 2581 16 881 2608 157756 38846 6.59044 6.59044 -147.231 -6.59044 0 0 500653. 1732.36 0.02 0.07 0.08 -1 -1 0.02 0.0247746 0.0218342 135 120 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_070.v common 3.24 vpr 62.70 MiB -1 -1 0.37 18348 12 0.21 -1 -1 32552 -1 -1 35 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64204 31 32 244 276 1 170 98 17 17 289 -1 unnamed_device 23.5 MiB 0.13 1189 7523 1566 5534 423 62.7 MiB 0.04 0.00 7.41001 -146.411 -7.41001 7.41001 0.35 0.000358955 0.000326716 0.0147765 0.0135455 -1 -1 -1 -1 24 3105 50 6.55708e+06 421925 448715. 1552.65 0.80 0.145427 0.125661 20734 103517 -1 2552 19 973 3397 173269 43343 6.79164 6.79164 -146.624 -6.79164 0 0 554710. 1919.41 0.02 0.08 0.09 -1 -1 0.02 0.0314169 0.0275637 162 153 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_071.v common 4.53 vpr 63.00 MiB -1 -1 0.37 18272 11 0.19 -1 -1 32708 -1 -1 39 30 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64512 30 32 276 308 1 197 101 17 17 289 -1 unnamed_device 24.0 MiB 0.11 1426 9971 2414 6635 922 63.0 MiB 0.10 0.00 7.22338 -143.08 -7.22338 7.22338 0.32 0.000876745 0.000812141 0.0406845 0.0376122 -1 -1 -1 -1 24 3993 48 6.55708e+06 470145 448715. 1552.65 2.14 0.182956 0.159725 20734 103517 -1 3229 16 1219 4281 241988 56922 6.19064 6.19064 -138.743 -6.19064 0 0 554710. 1919.41 0.02 0.09 0.09 -1 -1 0.02 0.0310984 0.0273684 199 188 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_072.v common 3.34 vpr 62.77 MiB -1 -1 0.33 18160 11 0.20 -1 -1 32740 -1 -1 36 28 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64280 28 32 253 285 1 176 96 17 17 289 -1 unnamed_device 23.6 MiB 0.10 1246 7323 1575 5225 523 62.8 MiB 0.07 0.00 6.62198 -127.747 -6.62198 6.62198 0.32 0.00082665 0.000768122 0.0306829 0.0284525 -1 -1 -1 -1 26 3068 24 6.55708e+06 433980 477104. 1650.88 0.97 0.150062 0.131275 21022 109990 -1 2531 29 978 3458 238017 92974 5.71946 5.71946 -121.388 -5.71946 0 0 585099. 2024.56 0.03 0.12 0.09 -1 -1 0.03 0.0442903 0.0383556 177 171 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_073.v common 2.84 vpr 62.65 MiB -1 -1 0.35 18396 13 0.21 -1 -1 32420 -1 -1 33 30 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64152 30 32 235 267 1 168 95 17 17 289 -1 unnamed_device 23.6 MiB 0.09 1204 5279 954 4026 299 62.6 MiB 0.06 0.00 8.00795 -145.087 -8.00795 8.00795 0.32 0.00076175 0.000706018 0.0216427 0.0200584 -1 -1 -1 -1 26 2869 21 6.55708e+06 397815 477104. 1650.88 0.55 0.112511 0.0980716 21022 109990 -1 2411 15 837 2812 138210 35074 6.93376 6.93376 -136.665 -6.93376 0 0 585099. 2024.56 0.03 0.06 0.09 -1 -1 0.03 0.0255488 0.0225753 152 147 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_074.v common 3.06 vpr 62.77 MiB -1 -1 0.36 18316 12 0.21 -1 -1 32380 -1 -1 38 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64280 32 32 264 296 1 187 102 17 17 289 -1 unnamed_device 23.6 MiB 0.11 1239 8194 1644 5945 605 62.8 MiB 0.08 0.00 7.35564 -159.23 -7.35564 7.35564 0.31 0.000824275 0.000761206 0.0328836 0.0304361 -1 -1 -1 -1 26 2909 20 6.55708e+06 458090 477104. 1650.88 0.60 0.135099 0.118105 21022 109990 -1 2669 18 1127 3676 180485 45638 6.2395 6.2395 -150.065 -6.2395 0 0 585099. 2024.56 0.03 0.08 0.09 -1 -1 0.03 0.0330151 0.0289867 179 170 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_075.v common 3.08 vpr 62.71 MiB -1 -1 0.30 18272 13 0.30 -1 -1 32772 -1 -1 41 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64212 31 32 278 310 1 196 104 17 17 289 -1 unnamed_device 23.6 MiB 0.13 1448 8400 1737 5934 729 62.7 MiB 0.08 0.00 8.2073 -161.714 -8.2073 8.2073 0.31 0.000905066 0.000840014 0.034896 0.0323122 -1 -1 -1 -1 26 3513 21 6.55708e+06 494255 477104. 1650.88 0.71 0.14739 0.128916 21022 109990 -1 2996 20 1129 3647 181615 44143 7.33356 7.33356 -152.995 -7.33356 0 0 585099. 2024.56 0.03 0.09 0.09 -1 -1 0.03 0.0372298 0.0325823 196 187 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_076.v common 3.34 vpr 63.44 MiB -1 -1 0.39 18604 14 0.26 -1 -1 32768 -1 -1 40 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64964 32 32 290 322 1 201 104 17 17 289 -1 unnamed_device 23.8 MiB 0.15 1372 11328 2709 7566 1053 63.4 MiB 0.11 0.00 8.34267 -169.936 -8.34267 8.34267 0.32 0.000926812 0.000860008 0.0469082 0.0433586 -1 -1 -1 -1 28 3373 18 6.55708e+06 482200 500653. 1732.36 0.80 0.161715 0.142394 21310 115450 -1 2886 19 1177 3938 204238 50221 7.36876 7.36876 -163.804 -7.36876 0 0 612192. 2118.31 0.03 0.09 0.10 -1 -1 0.03 0.0371656 0.0326212 206 196 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_077.v common 3.04 vpr 62.79 MiB -1 -1 0.38 18952 14 0.24 -1 -1 32964 -1 -1 38 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64292 32 32 269 301 1 188 102 17 17 289 -1 unnamed_device 23.8 MiB 0.11 1306 6528 1307 4742 479 62.8 MiB 0.07 0.00 8.55579 -163.16 -8.55579 8.55579 0.32 0.000881207 0.000817373 0.0273229 0.0253321 -1 -1 -1 -1 26 3317 19 6.55708e+06 458090 477104. 1650.88 0.69 0.132486 0.115678 21022 109990 -1 2722 17 904 3226 159952 38577 7.09882 7.09882 -148.664 -7.09882 0 0 585099. 2024.56 0.03 0.08 0.09 -1 -1 0.03 0.0323844 0.0285102 184 175 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_078.v common 3.60 vpr 62.89 MiB -1 -1 0.39 18860 13 0.32 -1 -1 33284 -1 -1 47 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64396 32 32 296 328 1 215 111 17 17 289 -1 unnamed_device 24.0 MiB 0.09 1536 11283 2699 7315 1269 62.9 MiB 0.11 0.00 8.43349 -165.198 -8.43349 8.43349 0.31 0.000970797 0.000893463 0.0446889 0.0412869 -1 -1 -1 -1 28 4013 26 6.55708e+06 566585 500653. 1732.36 1.09 0.173911 0.152258 21310 115450 -1 3340 19 1628 5528 311003 74006 7.40996 7.40996 -155.551 -7.40996 0 0 612192. 2118.31 0.03 0.11 0.10 -1 -1 0.03 0.0396495 0.0347938 221 202 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_079.v common 3.12 vpr 62.63 MiB -1 -1 0.33 17996 13 0.19 -1 -1 32608 -1 -1 35 30 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64136 30 32 234 266 1 170 97 17 17 289 -1 unnamed_device 23.6 MiB 0.11 1095 9643 2297 6523 823 62.6 MiB 0.09 0.00 7.57687 -153.622 -7.57687 7.57687 0.32 0.000749552 0.000694958 0.035486 0.0328216 -1 -1 -1 -1 26 2745 41 6.55708e+06 421925 477104. 1650.88 0.81 0.15246 0.133136 21022 109990 -1 2320 20 1189 3529 166003 41402 6.58844 6.58844 -145.166 -6.58844 0 0 585099. 2024.56 0.03 0.08 0.09 -1 -1 0.03 0.0313603 0.0274117 156 146 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_080.v common 3.92 vpr 63.50 MiB -1 -1 0.42 18888 13 0.41 -1 -1 32528 -1 -1 42 30 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65024 30 32 291 323 1 217 104 17 17 289 -1 unnamed_device 23.7 MiB 0.13 1643 8156 1726 5561 869 63.5 MiB 0.09 0.00 8.47463 -169.552 -8.47463 8.47463 0.30 0.000993615 0.000901795 0.0364261 0.0337005 -1 -1 -1 -1 26 4550 39 6.55708e+06 506310 477104. 1650.88 1.23 0.187607 0.163719 21022 109990 -1 3734 19 1812 5679 316152 76055 7.49096 7.49096 -165.311 -7.49096 0 0 585099. 2024.56 0.03 0.11 0.09 -1 -1 0.03 0.0395355 0.0346332 211 203 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_081.v common 3.67 vpr 62.81 MiB -1 -1 0.39 18656 14 0.30 -1 -1 32756 -1 -1 36 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64316 32 32 274 306 1 187 100 17 17 289 -1 unnamed_device 23.7 MiB 0.15 1364 8684 2015 5564 1105 62.8 MiB 0.09 0.00 7.94732 -163.062 -7.94732 7.94732 0.32 0.000900951 0.000832234 0.0371411 0.0343661 -1 -1 -1 -1 28 3744 49 6.55708e+06 433980 500653. 1732.36 1.10 0.190516 0.165697 21310 115450 -1 3013 19 1335 4767 245783 58396 7.13036 7.13036 -156.349 -7.13036 0 0 612192. 2118.31 0.03 0.10 0.10 -1 -1 0.03 0.0363847 0.0318477 189 180 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_082.v common 3.12 vpr 62.69 MiB -1 -1 0.38 18504 13 0.24 -1 -1 32852 -1 -1 39 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64192 31 32 266 298 1 189 102 17 17 289 -1 unnamed_device 23.7 MiB 0.10 1327 9146 1874 6578 694 62.7 MiB 0.09 0.00 7.52981 -147.017 -7.52981 7.52981 0.31 0.000874503 0.000812615 0.0367502 0.0340574 -1 -1 -1 -1 26 3405 24 6.55708e+06 470145 477104. 1650.88 0.72 0.147393 0.128779 21022 109990 -1 2791 18 1055 3463 170861 42133 6.6811 6.6811 -141.376 -6.6811 0 0 585099. 2024.56 0.03 0.08 0.09 -1 -1 0.03 0.0333883 0.0293232 188 175 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_083.v common 3.05 vpr 62.99 MiB -1 -1 0.40 18640 13 0.21 -1 -1 32744 -1 -1 42 30 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64500 30 32 266 298 1 198 104 17 17 289 -1 unnamed_device 24.0 MiB 0.13 1472 11572 2894 7268 1410 63.0 MiB 0.06 0.00 8.17786 -154.973 -8.17786 8.17786 0.29 0.000390555 0.000359082 0.0212739 0.0194777 -1 -1 -1 -1 28 3469 21 6.55708e+06 506310 500653. 1732.36 0.66 0.12667 0.109852 21310 115450 -1 3013 15 1087 3771 191591 47084 6.85076 6.85076 -144.64 -6.85076 0 0 612192. 2118.31 0.03 0.08 0.10 -1 -1 0.03 0.0291137 0.0256711 188 178 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_084.v common 3.91 vpr 63.93 MiB -1 -1 0.39 18616 14 0.35 -1 -1 32904 -1 -1 45 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65468 32 32 310 342 1 224 109 17 17 289 -1 unnamed_device 24.3 MiB 0.12 1581 7909 1499 5924 486 63.9 MiB 0.09 0.00 8.22563 -168.56 -8.22563 8.22563 0.32 0.00101534 0.000935231 0.0347461 0.032097 -1 -1 -1 -1 24 4402 36 6.55708e+06 542475 448715. 1552.65 1.24 0.187015 0.163114 20734 103517 -1 3466 19 1581 5463 267328 66072 7.83989 7.83989 -167.701 -7.83989 0 0 554710. 1919.41 0.02 0.11 0.09 -1 -1 0.02 0.0407656 0.0358467 224 216 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_085.v common 3.29 vpr 62.74 MiB -1 -1 0.39 18588 11 0.27 -1 -1 32880 -1 -1 40 29 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64248 29 32 262 294 1 197 101 17 17 289 -1 unnamed_device 23.7 MiB 0.12 1268 9501 2060 6462 979 62.7 MiB 0.09 0.00 7.09867 -136.55 -7.09867 7.09867 0.32 0.000888396 0.000824305 0.0394313 0.0365356 -1 -1 -1 -1 28 3329 23 6.55708e+06 482200 500653. 1732.36 0.81 0.153343 0.134375 21310 115450 -1 2580 16 1111 3693 174673 45072 6.17838 6.17838 -129.615 -6.17838 0 0 612192. 2118.31 0.03 0.08 0.10 -1 -1 0.03 0.031461 0.0277134 187 177 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_086.v common 2.70 vpr 62.45 MiB -1 -1 0.30 18100 13 0.16 -1 -1 32568 -1 -1 34 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63952 32 32 222 254 1 166 98 17 17 289 -1 unnamed_device 23.2 MiB 0.09 1204 5273 829 4270 174 62.5 MiB 0.05 0.00 7.20711 -162.372 -7.20711 7.20711 0.31 0.000721513 0.000666162 0.0202018 0.018688 -1 -1 -1 -1 26 2831 18 6.55708e+06 409870 477104. 1650.88 0.53 0.104861 0.0915183 21022 109990 -1 2300 18 816 2198 106663 27075 6.69898 6.69898 -157.013 -6.69898 0 0 585099. 2024.56 0.03 0.06 0.07 -1 -1 0.03 0.027625 0.0242476 141 128 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_087.v common 3.43 vpr 62.80 MiB -1 -1 0.39 18644 14 0.24 -1 -1 32796 -1 -1 39 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64308 32 32 267 299 1 189 103 17 17 289 -1 unnamed_device 23.8 MiB 0.14 1242 6369 1126 4900 343 62.8 MiB 0.07 0.00 8.36029 -164.452 -8.36029 8.36029 0.32 0.000868932 0.000806635 0.0264232 0.0245137 -1 -1 -1 -1 26 3744 27 6.55708e+06 470145 477104. 1650.88 0.93 0.144699 0.126107 21022 109990 -1 2835 22 1327 4478 231737 58002 7.4401 7.4401 -161.774 -7.4401 0 0 585099. 2024.56 0.03 0.10 0.09 -1 -1 0.03 0.0395097 0.0346127 185 173 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_088.v common 3.77 vpr 63.83 MiB -1 -1 0.40 19184 15 0.40 -1 -1 32816 -1 -1 52 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65360 32 32 334 366 1 242 116 17 17 289 -1 unnamed_device 24.3 MiB 0.15 1774 10268 2038 7406 824 63.8 MiB 0.11 0.00 9.11143 -194.591 -9.11143 9.11143 0.32 0.00103847 0.000953017 0.0446023 0.0411933 -1 -1 -1 -1 28 4494 24 6.55708e+06 626860 500653. 1732.36 1.00 0.185052 0.162338 21310 115450 -1 3839 16 1527 5153 260352 63673 8.33801 8.33801 -188.071 -8.33801 0 0 612192. 2118.31 0.03 0.09 0.10 -1 -1 0.03 0.0314369 0.0283527 251 240 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_089.v common 2.80 vpr 62.82 MiB -1 -1 0.33 18000 11 0.17 -1 -1 32780 -1 -1 32 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64328 32 32 220 252 1 154 96 17 17 289 -1 unnamed_device 23.1 MiB 0.11 1024 5571 1006 4032 533 62.8 MiB 0.05 0.00 6.85992 -141.008 -6.85992 6.85992 0.32 0.000708137 0.000656691 0.0207248 0.0191827 -1 -1 -1 -1 28 2438 19 6.55708e+06 385760 500653. 1732.36 0.57 0.106907 0.0933761 21310 115450 -1 2194 17 733 2323 117456 30004 5.91304 5.91304 -134.349 -5.91304 0 0 612192. 2118.31 0.03 0.06 0.10 -1 -1 0.03 0.0257862 0.0226699 142 126 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_090.v common 2.98 vpr 62.71 MiB -1 -1 0.31 18060 12 0.18 -1 -1 33032 -1 -1 36 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64220 31 32 244 276 1 183 99 17 17 289 -1 unnamed_device 23.5 MiB 0.10 1234 5343 953 4107 283 62.7 MiB 0.06 0.00 7.43715 -158.003 -7.43715 7.43715 0.32 0.000792845 0.000735142 0.0216441 0.0200635 -1 -1 -1 -1 28 3024 19 6.55708e+06 433980 500653. 1732.36 0.69 0.116315 0.10146 21310 115450 -1 2710 15 1091 3540 165817 43066 6.44632 6.44632 -152.105 -6.44632 0 0 612192. 2118.31 0.03 0.07 0.10 -1 -1 0.03 0.0262288 0.023126 164 153 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_091.v common 3.79 vpr 62.85 MiB -1 -1 0.37 18668 12 0.29 -1 -1 32728 -1 -1 44 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64356 32 32 300 332 1 220 108 17 17 289 -1 unnamed_device 23.6 MiB 0.12 1579 8332 1506 5759 1067 62.8 MiB 0.09 0.00 7.71424 -168.425 -7.71424 7.71424 0.32 0.000984937 0.000908813 0.03695 0.0341147 -1 -1 -1 -1 28 4218 50 6.55708e+06 530420 500653. 1732.36 1.13 0.206533 0.17992 21310 115450 -1 3288 18 1607 5239 263415 63153 6.82884 6.82884 -159.992 -6.82884 0 0 612192. 2118.31 0.03 0.10 0.10 -1 -1 0.03 0.0387323 0.0340254 215 206 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_092.v common 3.23 vpr 62.67 MiB -1 -1 0.36 18500 12 0.29 -1 -1 32852 -1 -1 39 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64172 32 32 271 303 1 202 103 17 17 289 -1 unnamed_device 23.6 MiB 0.13 1485 6369 1097 5022 250 62.7 MiB 0.07 0.00 7.26298 -157.448 -7.26298 7.26298 0.32 0.000891283 0.000820157 0.0278483 0.0257783 -1 -1 -1 -1 30 3302 21 6.55708e+06 470145 526063. 1820.29 0.80 0.138453 0.120894 21886 126133 -1 2772 20 1091 3776 171570 41953 6.34038 6.34038 -148.383 -6.34038 0 0 666494. 2306.21 0.03 0.08 0.10 -1 -1 0.03 0.0368277 0.0322888 187 177 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_093.v common 3.80 vpr 63.73 MiB -1 -1 0.25 18816 14 0.50 -1 -1 32824 -1 -1 44 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65260 32 32 327 359 1 229 108 17 17 289 -1 unnamed_device 24.3 MiB 0.15 1714 10388 2256 7377 755 63.7 MiB 0.11 0.00 8.83168 -179.902 -8.83168 8.83168 0.32 0.00107611 0.000997674 0.047919 0.0443294 -1 -1 -1 -1 28 4587 29 6.55708e+06 530420 500653. 1732.36 1.10 0.198137 0.173877 21310 115450 -1 3744 17 1704 6163 309891 74071 7.94021 7.94021 -173.22 -7.94021 0 0 612192. 2118.31 0.03 0.11 0.10 -1 -1 0.03 0.0406528 0.035828 241 233 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_094.v common 3.01 vpr 62.62 MiB -1 -1 0.36 18308 12 0.24 -1 -1 32816 -1 -1 35 30 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64124 30 32 246 278 1 176 97 17 17 289 -1 unnamed_device 23.5 MiB 0.10 1249 9421 2369 6234 818 62.6 MiB 0.09 0.00 7.45131 -141.531 -7.45131 7.45131 0.33 0.000825555 0.00076626 0.0382079 0.0354155 -1 -1 -1 -1 20 3643 36 6.55708e+06 421925 394039. 1363.46 0.58 0.0974113 0.0867365 19870 87366 -1 3066 28 1582 5670 417097 109213 6.74984 6.74984 -142.866 -6.74984 0 0 477104. 1650.88 0.02 0.14 0.08 -1 -1 0.02 0.0445774 0.0386726 167 158 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_095.v common 2.86 vpr 62.39 MiB -1 -1 0.25 18136 11 0.18 -1 -1 32604 -1 -1 36 27 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63892 27 32 219 251 1 154 95 17 17 289 -1 unnamed_device 23.1 MiB 0.08 1050 6359 1311 4459 589 62.4 MiB 0.06 0.00 6.77412 -124.861 -6.77412 6.77412 0.32 0.000713459 0.000661731 0.0237722 0.0219985 -1 -1 -1 -1 26 2518 28 6.55708e+06 433980 477104. 1650.88 0.64 0.117944 0.102417 21022 109990 -1 2290 18 974 3227 154423 38178 5.86158 5.86158 -120.568 -5.86158 0 0 585099. 2024.56 0.03 0.07 0.09 -1 -1 0.03 0.0275303 0.0241178 147 140 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_096.v common 4.52 vpr 63.91 MiB -1 -1 0.42 19032 13 0.44 -1 -1 32772 -1 -1 54 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65444 32 32 380 412 1 268 118 17 17 289 -1 unnamed_device 24.4 MiB 0.25 1943 11678 2402 8655 621 63.9 MiB 0.14 0.00 8.1984 -170.627 -8.1984 8.1984 0.32 0.00117839 0.00109125 0.0558448 0.0513993 -1 -1 -1 -1 30 4867 27 6.55708e+06 650970 526063. 1820.29 1.51 0.22026 0.193409 21886 126133 -1 4112 18 1783 6575 315089 74957 7.14764 7.14764 -163.505 -7.14764 0 0 666494. 2306.21 0.03 0.12 0.10 -1 -1 0.03 0.0471696 0.0416395 289 286 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_097.v common 3.49 vpr 62.70 MiB -1 -1 0.41 18628 14 0.25 -1 -1 32816 -1 -1 42 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64200 31 32 277 309 1 200 105 17 17 289 -1 unnamed_device 23.6 MiB 0.09 1420 9491 2350 6318 823 62.7 MiB 0.09 0.00 8.35003 -166.536 -8.35003 8.35003 0.31 0.000891576 0.00082666 0.0389069 0.0359455 -1 -1 -1 -1 26 3491 31 6.55708e+06 506310 477104. 1650.88 0.83 0.163606 0.142687 21022 109990 -1 3025 58 2055 6416 553616 263647 7.6387 7.6387 -164.292 -7.6387 0 0 585099. 2024.56 0.03 0.30 0.09 -1 -1 0.03 0.08865 0.0762004 200 186 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_098.v common 2.77 vpr 62.97 MiB -1 -1 0.35 18292 12 0.17 -1 -1 32396 -1 -1 34 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64484 32 32 229 261 1 169 98 17 17 289 -1 unnamed_device 23.2 MiB 0.11 1217 5723 975 4428 320 63.0 MiB 0.06 0.00 7.79524 -163.944 -7.79524 7.79524 0.32 0.000748847 0.000693534 0.0219094 0.0202888 -1 -1 -1 -1 26 2888 20 6.55708e+06 409870 477104. 1650.88 0.51 0.111548 0.0972834 21022 109990 -1 2530 15 855 2563 135872 33142 6.7601 6.7601 -153.649 -6.7601 0 0 585099. 2024.56 0.03 0.06 0.09 -1 -1 0.03 0.0260046 0.0230447 149 135 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_099.v common 3.54 vpr 62.83 MiB -1 -1 0.37 18276 13 0.28 -1 -1 32744 -1 -1 39 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64340 32 32 263 295 1 192 103 17 17 289 -1 unnamed_device 23.5 MiB 0.11 1398 7574 1486 5664 424 62.8 MiB 0.08 0.00 7.84921 -159.054 -7.84921 7.84921 0.34 0.000863937 0.000799732 0.0311336 0.0288415 -1 -1 -1 -1 26 3835 35 6.55708e+06 470145 477104. 1650.88 0.95 0.163426 0.142767 21022 109990 -1 3026 31 1553 5661 358728 122312 7.0005 7.0005 -155.662 -7.0005 0 0 585099. 2024.56 0.03 0.16 0.09 -1 -1 0.03 0.0515008 0.0447525 179 169 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_100.v common 3.50 vpr 63.55 MiB -1 -1 0.23 18892 13 0.31 -1 -1 32792 -1 -1 47 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65080 31 32 321 353 1 239 110 17 17 289 -1 unnamed_device 23.9 MiB 0.13 1645 8526 1725 6272 529 63.6 MiB 0.09 0.00 7.39654 -148.506 -7.39654 7.39654 0.32 0.00102679 0.000948865 0.0377391 0.0349457 -1 -1 -1 -1 30 4043 31 6.55708e+06 566585 526063. 1820.29 0.96 0.183972 0.160874 21886 126133 -1 3334 18 1556 5059 223093 54232 6.19064 6.19064 -138.614 -6.19064 0 0 666494. 2306.21 0.03 0.10 0.10 -1 -1 0.03 0.0406234 0.0357545 240 230 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_101.v common 3.36 vpr 63.40 MiB -1 -1 0.36 18360 11 0.24 -1 -1 32640 -1 -1 43 30 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64924 30 32 287 319 1 198 105 17 17 289 -1 unnamed_device 23.7 MiB 0.11 1436 5786 1060 4191 535 63.4 MiB 0.06 0.00 7.16441 -139.126 -7.16441 7.16441 0.32 0.000918617 0.000851244 0.025198 0.0233554 -1 -1 -1 -1 30 3210 22 6.55708e+06 518365 526063. 1820.29 0.91 0.141305 0.123076 21886 126133 -1 2834 14 1057 4037 181215 43161 6.26904 6.26904 -133.283 -6.26904 0 0 666494. 2306.21 0.04 0.06 0.11 -1 -1 0.04 0.0206423 0.0188246 207 199 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_102.v common 3.55 vpr 63.62 MiB -1 -1 0.39 18704 15 0.34 -1 -1 32736 -1 -1 39 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65148 32 32 296 328 1 211 103 17 17 289 -1 unnamed_device 24.0 MiB 0.19 1400 9261 1992 6376 893 63.6 MiB 0.10 0.00 8.81686 -177.387 -8.81686 8.81686 0.32 0.000967832 0.000896476 0.0410691 0.0379548 -1 -1 -1 -1 26 3902 29 6.55708e+06 470145 477104. 1650.88 0.88 0.174578 0.152503 21022 109990 -1 3079 17 1290 4296 205801 51401 7.84956 7.84956 -174.659 -7.84956 0 0 585099. 2024.56 0.03 0.09 0.09 -1 -1 0.03 0.0365643 0.0322888 208 202 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_103.v common 3.75 vpr 62.99 MiB -1 -1 0.39 18792 13 0.31 -1 -1 32872 -1 -1 38 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64500 32 32 285 317 1 205 102 17 17 289 -1 unnamed_device 23.8 MiB 0.13 1465 7242 1413 5321 508 63.0 MiB 0.08 0.00 8.10703 -171.498 -8.10703 8.10703 0.31 0.000935859 0.00086713 0.0324183 0.0300257 -1 -1 -1 -1 24 4124 28 6.55708e+06 458090 448715. 1552.65 1.12 0.163614 0.142803 20734 103517 -1 3446 21 1284 4498 271507 69431 7.2383 7.2383 -166.809 -7.2383 0 0 554710. 1919.41 0.02 0.11 0.09 -1 -1 0.02 0.0412333 0.0360965 202 191 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_104.v common 3.02 vpr 62.57 MiB -1 -1 0.25 18076 12 0.20 -1 -1 32752 -1 -1 42 29 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64068 29 32 239 271 1 178 103 17 17 289 -1 unnamed_device 23.5 MiB 0.09 1220 7092 1491 5064 537 62.6 MiB 0.07 0.00 7.94017 -158.473 -7.94017 7.94017 0.32 0.000768314 0.000712143 0.0256356 0.0237462 -1 -1 -1 -1 26 3046 41 6.55708e+06 506310 477104. 1650.88 0.77 0.14384 0.12503 21022 109990 -1 2518 16 913 2770 128335 32881 7.1573 7.1573 -152.441 -7.1573 0 0 585099. 2024.56 0.03 0.06 0.09 -1 -1 0.03 0.0274147 0.024171 167 154 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_105.v common 2.96 vpr 62.39 MiB -1 -1 0.32 18168 11 0.16 -1 -1 32696 -1 -1 36 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63888 32 32 235 267 1 175 100 17 17 289 -1 unnamed_device 23.1 MiB 0.09 1209 8452 1924 5669 859 62.4 MiB 0.08 0.00 7.00455 -144.749 -7.00455 7.00455 0.31 0.000733587 0.000678251 0.02952 0.0272855 -1 -1 -1 -1 30 2684 30 6.55708e+06 433980 526063. 1820.29 0.61 0.127043 0.110742 21886 126133 -1 2234 16 921 2754 114752 30025 6.07044 6.07044 -136.126 -6.07044 0 0 666494. 2306.21 0.03 0.06 0.10 -1 -1 0.03 0.0260629 0.022921 156 141 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_106.v common 3.36 vpr 62.86 MiB -1 -1 0.35 18372 13 0.31 -1 -1 32832 -1 -1 43 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64368 31 32 294 326 1 209 106 17 17 289 -1 unnamed_device 23.7 MiB 0.13 1483 8106 1671 5747 688 62.9 MiB 0.08 0.00 7.93251 -162.97 -7.93251 7.93251 0.32 0.000936563 0.000867003 0.0341907 0.0316389 -1 -1 -1 -1 28 3774 24 6.55708e+06 518365 500653. 1732.36 0.83 0.157127 0.137205 21310 115450 -1 3076 16 1293 4466 214886 52808 7.0371 7.0371 -156.899 -7.0371 0 0 612192. 2118.31 0.03 0.09 0.10 -1 -1 0.03 0.0347474 0.0306354 209 203 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_107.v common 2.71 vpr 63.01 MiB -1 -1 0.32 18088 10 0.17 -1 -1 33092 -1 -1 31 29 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64520 29 32 219 251 1 150 92 17 17 289 -1 unnamed_device 23.2 MiB 0.09 1077 6716 1557 4320 839 63.0 MiB 0.06 0.00 6.14523 -119.802 -6.14523 6.14523 0.32 0.000711135 0.000659064 0.0258237 0.0239279 -1 -1 -1 -1 28 2453 19 6.55708e+06 373705 500653. 1732.36 0.58 0.109727 0.0957932 21310 115450 -1 2076 14 703 2228 112569 27589 5.50498 5.50498 -116.681 -5.50498 0 0 612192. 2118.31 0.03 0.06 0.07 -1 -1 0.03 0.0231132 0.0203141 145 134 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_108.v common 3.07 vpr 62.99 MiB -1 -1 0.30 18004 14 0.19 -1 -1 32608 -1 -1 35 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64500 32 32 239 271 1 174 99 17 17 289 -1 unnamed_device 23.4 MiB 0.10 1179 10359 2444 7017 898 63.0 MiB 0.09 0.00 8.11944 -167.718 -8.11944 8.11944 0.31 0.000769426 0.000713074 0.0378348 0.0349924 -1 -1 -1 -1 26 3026 22 6.55708e+06 421925 477104. 1650.88 0.76 0.136638 0.120059 21022 109990 -1 2555 18 945 2875 145602 36168 7.08916 7.08916 -154.33 -7.08916 0 0 585099. 2024.56 0.03 0.07 0.09 -1 -1 0.03 0.0299467 0.0262999 155 145 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_109.v common 3.07 vpr 63.29 MiB -1 -1 0.38 18736 13 0.31 -1 -1 32808 -1 -1 39 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64804 31 32 266 298 1 193 102 17 17 289 -1 unnamed_device 23.7 MiB 0.15 1348 7004 1240 5311 453 63.3 MiB 0.07 0.00 7.96615 -163.64 -7.96615 7.96615 0.32 0.000870587 0.000808026 0.0288622 0.0267639 -1 -1 -1 -1 30 3005 27 6.55708e+06 470145 526063. 1820.29 0.58 0.140171 0.122059 21886 126133 -1 2550 14 975 3106 127096 32609 6.8391 6.8391 -151.144 -6.8391 0 0 666494. 2306.21 0.03 0.07 0.10 -1 -1 0.03 0.0282643 0.0250154 185 175 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_110.v common 2.84 vpr 62.89 MiB -1 -1 0.31 18108 12 0.16 -1 -1 32724 -1 -1 38 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64396 31 32 225 257 1 161 101 17 17 289 -1 unnamed_device 23.1 MiB 0.09 1212 6916 1486 4812 618 62.9 MiB 0.06 0.00 7.22863 -147.66 -7.22863 7.22863 0.32 0.00069335 0.000652807 0.0238351 0.022098 -1 -1 -1 -1 28 2636 14 6.55708e+06 458090 500653. 1732.36 0.62 0.103974 0.0910087 21310 115450 -1 2360 14 823 2439 123719 30628 6.45858 6.45858 -142.003 -6.45858 0 0 612192. 2118.31 0.03 0.06 0.10 -1 -1 0.03 0.0230327 0.0203696 147 134 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_111.v common 3.33 vpr 63.38 MiB -1 -1 0.35 18436 12 0.20 -1 -1 32828 -1 -1 38 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64904 32 32 288 320 1 207 102 17 17 289 -1 unnamed_device 23.7 MiB 0.13 1453 7242 1384 5338 520 63.4 MiB 0.08 0.00 7.59394 -155.783 -7.59394 7.59394 0.29 0.000912161 0.000844874 0.0323359 0.0298935 -1 -1 -1 -1 26 3629 20 6.55708e+06 458090 477104. 1650.88 0.92 0.149908 0.131327 21022 109990 -1 3193 16 1125 4133 211646 50831 6.78904 6.78904 -148.172 -6.78904 0 0 585099. 2024.56 0.03 0.09 0.09 -1 -1 0.03 0.0325848 0.0286863 203 194 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_112.v common 3.18 vpr 63.54 MiB -1 -1 0.41 18664 13 0.28 -1 -1 32844 -1 -1 44 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65068 31 32 282 314 1 195 107 17 17 289 -1 unnamed_device 23.8 MiB 0.14 1373 8203 1549 6055 599 63.5 MiB 0.10 0.00 7.95704 -161.742 -7.95704 7.95704 0.35 0.00101587 0.000934312 0.0365104 0.0335604 -1 -1 -1 -1 30 2934 26 6.55708e+06 530420 526063. 1820.29 0.62 0.128924 0.114011 21886 126133 -1 2536 12 916 3177 137192 34835 6.88996 6.88996 -152.482 -6.88996 0 0 666494. 2306.21 0.03 0.07 0.10 -1 -1 0.03 0.0267839 0.0238242 204 191 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_113.v common 2.96 vpr 62.66 MiB -1 -1 0.34 18436 11 0.17 -1 -1 32736 -1 -1 32 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64160 32 32 233 265 1 173 96 17 17 289 -1 unnamed_device 23.3 MiB 0.07 1191 7980 1865 5132 983 62.7 MiB 0.08 0.00 6.73532 -143.345 -6.73532 6.73532 0.32 0.000753145 0.000690659 0.0301725 0.0278782 -1 -1 -1 -1 26 3220 38 6.55708e+06 385760 477104. 1650.88 0.78 0.143984 0.125455 21022 109990 -1 2656 15 1042 3092 162261 40021 6.01898 6.01898 -143.129 -6.01898 0 0 585099. 2024.56 0.03 0.07 0.09 -1 -1 0.03 0.0254418 0.0224732 150 139 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_114.v common 3.14 vpr 62.59 MiB -1 -1 0.33 18332 13 0.21 -1 -1 32656 -1 -1 35 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64092 32 32 254 286 1 182 99 17 17 289 -1 unnamed_device 23.4 MiB 0.11 1306 8763 1902 6113 748 62.6 MiB 0.10 0.00 7.7612 -164.464 -7.7612 7.7612 0.32 0.000836191 0.00077627 0.0388615 0.0357925 -1 -1 -1 -1 26 3375 19 6.55708e+06 421925 477104. 1650.88 0.69 0.13698 0.119829 21022 109990 -1 2907 32 1514 5323 363358 126000 7.02804 7.02804 -160.996 -7.02804 0 0 585099. 2024.56 0.03 0.16 0.09 -1 -1 0.03 0.0492168 0.0425122 167 160 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_115.v common 3.56 vpr 62.69 MiB -1 -1 0.34 18332 13 0.25 -1 -1 32860 -1 -1 40 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64192 32 32 285 317 1 211 104 17 17 289 -1 unnamed_device 23.6 MiB 0.14 1523 12304 3016 8156 1132 62.7 MiB 0.12 0.00 8.0432 -171.219 -8.0432 8.0432 0.31 0.000924381 0.000858307 0.0502871 0.0466214 -1 -1 -1 -1 26 4101 25 6.55708e+06 482200 477104. 1650.88 1.03 0.169712 0.149072 21022 109990 -1 3342 18 1458 4644 236912 56442 6.94704 6.94704 -162.816 -6.94704 0 0 585099. 2024.56 0.03 0.09 0.11 -1 -1 0.03 0.0358245 0.0314794 203 191 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_116.v common 3.23 vpr 62.64 MiB -1 -1 0.34 18344 11 0.19 -1 -1 33160 -1 -1 36 29 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64140 29 32 243 275 1 177 97 17 17 289 -1 unnamed_device 23.4 MiB 0.10 1302 7201 1461 5220 520 62.6 MiB 0.07 0.00 6.81031 -130.786 -6.81031 6.81031 0.32 0.000806191 0.000747971 0.0293749 0.0272312 -1 -1 -1 -1 26 3401 38 6.55708e+06 433980 477104. 1650.88 0.87 0.152875 0.133138 21022 109990 -1 2733 17 915 3307 184871 43097 5.96752 5.96752 -124.546 -5.96752 0 0 585099. 2024.56 0.03 0.08 0.09 -1 -1 0.03 0.0302934 0.026608 162 158 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_117.v common 4.12 vpr 63.71 MiB -1 -1 0.40 19024 14 0.32 -1 -1 33340 -1 -1 52 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65236 32 32 318 350 1 236 116 17 17 289 -1 unnamed_device 24.0 MiB 0.14 1653 13370 3078 9038 1254 63.7 MiB 0.13 0.00 8.77446 -185.895 -8.77446 8.77446 0.32 0.00103192 0.000944993 0.0538548 0.0496828 -1 -1 -1 -1 28 4444 47 6.55708e+06 626860 500653. 1732.36 1.33 0.228757 0.201319 21310 115450 -1 3632 17 1592 5172 254546 66761 7.36876 7.36876 -175.605 -7.36876 0 0 612192. 2118.31 0.03 0.10 0.10 -1 -1 0.03 0.0397971 0.0351532 236 224 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_118.v common 3.26 vpr 62.42 MiB -1 -1 0.30 18104 12 0.18 -1 -1 32560 -1 -1 38 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63920 31 32 222 254 1 170 101 17 17 289 -1 unnamed_device 23.2 MiB 0.10 1191 9266 1956 6385 925 62.4 MiB 0.08 0.00 7.05697 -151.912 -7.05697 7.05697 0.32 0.000710781 0.000658363 0.0308143 0.0285398 -1 -1 -1 -1 22 3412 47 6.55708e+06 458090 420624. 1455.45 0.91 0.147254 0.128127 20158 92377 -1 2849 43 1632 5665 432075 165903 6.30118 6.30118 -148.835 -6.30118 0 0 500653. 1732.36 0.02 0.20 0.08 -1 -1 0.02 0.0557516 0.0480185 146 131 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_119.v common 3.47 vpr 62.93 MiB -1 -1 0.39 18868 13 0.29 -1 -1 32688 -1 -1 41 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64440 32 32 282 314 1 205 105 17 17 289 -1 unnamed_device 23.8 MiB 0.12 1447 10726 2638 7196 892 62.9 MiB 0.10 0.00 8.06077 -162.393 -8.06077 8.06077 0.31 0.000912782 0.000845466 0.0433016 0.0400574 -1 -1 -1 -1 26 3919 48 6.55708e+06 494255 477104. 1650.88 1.04 0.196014 0.171082 21022 109990 -1 3083 16 1150 3867 193507 48398 7.3193 7.3193 -159.176 -7.3193 0 0 585099. 2024.56 0.02 0.05 0.06 -1 -1 0.02 0.0189857 0.017172 200 188 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_120.v common 3.04 vpr 62.52 MiB -1 -1 0.37 18348 13 0.18 -1 -1 32448 -1 -1 37 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64020 32 32 238 270 1 177 101 17 17 289 -1 unnamed_device 23.5 MiB 0.09 1218 9501 2083 6458 960 62.5 MiB 0.08 0.00 7.91043 -170.443 -7.91043 7.91043 0.32 0.000758064 0.000703417 0.0336526 0.0311554 -1 -1 -1 -1 26 2922 26 6.55708e+06 446035 477104. 1650.88 0.67 0.133295 0.11664 21022 109990 -1 2523 22 1300 4049 241032 73323 6.78444 6.78444 -160.626 -6.78444 0 0 585099. 2024.56 0.03 0.10 0.09 -1 -1 0.03 0.0332941 0.0290198 163 144 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_121.v common 3.25 vpr 62.82 MiB -1 -1 0.38 18620 12 0.22 -1 -1 32676 -1 -1 35 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64328 32 32 269 301 1 187 99 17 17 289 -1 unnamed_device 23.8 MiB 0.13 1308 9675 2304 6571 800 62.8 MiB 0.10 0.00 7.16681 -150.444 -7.16681 7.16681 0.32 0.000891049 0.000822082 0.0413955 0.0382011 -1 -1 -1 -1 26 3305 18 6.55708e+06 421925 477104. 1650.88 0.64 0.148462 0.129893 21022 109990 -1 2671 15 1016 3480 173853 42728 6.13918 6.13918 -143.197 -6.13918 0 0 585099. 2024.56 0.03 0.08 0.09 -1 -1 0.03 0.0306761 0.0270637 180 175 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_122.v common 5.04 vpr 63.97 MiB -1 -1 0.41 19232 15 0.48 -1 -1 33152 -1 -1 51 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65508 32 32 350 382 1 247 115 17 17 289 -1 unnamed_device 24.3 MiB 0.16 1735 9880 1858 7500 522 64.0 MiB 0.11 0.00 9.58402 -185.921 -9.58402 9.58402 0.32 0.0011435 0.00105793 0.0462967 0.0427198 -1 -1 -1 -1 28 5089 46 6.55708e+06 614805 500653. 1732.36 2.00 0.240213 0.209743 21310 115450 -1 4034 21 1780 6550 386284 103835 8.10727 8.10727 -175.409 -8.10727 0 0 612192. 2118.31 0.03 0.15 0.10 -1 -1 0.03 0.052929 0.0468551 266 256 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_123.v common 2.27 vpr 62.64 MiB -1 -1 0.16 18040 10 0.10 -1 -1 32412 -1 -1 25 30 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64140 30 32 174 206 1 130 87 17 17 289 -1 unnamed_device 23.0 MiB 0.06 891 6423 1479 4375 569 62.6 MiB 0.05 0.00 5.13773 -113.721 -5.13773 5.13773 0.31 0.000565129 0.000525223 0.0207921 0.0193123 -1 -1 -1 -1 26 1803 17 6.55708e+06 301375 477104. 1650.88 0.44 0.0836598 0.0729739 21022 109990 -1 1649 16 561 1457 71593 18003 4.549 4.549 -110.541 -4.549 0 0 585099. 2024.56 0.03 0.05 0.09 -1 -1 0.03 0.0195532 0.0171397 101 86 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_124.v common 2.71 vpr 62.57 MiB -1 -1 0.31 18176 13 0.19 -1 -1 32672 -1 -1 35 30 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64076 30 32 228 260 1 167 97 17 17 289 -1 unnamed_device 23.3 MiB 0.06 1109 7201 1490 5110 601 62.6 MiB 0.07 0.00 7.23615 -144.291 -7.23615 7.23615 0.31 0.00074463 0.000691069 0.0277798 0.0257365 -1 -1 -1 -1 26 2697 30 6.55708e+06 421925 477104. 1650.88 0.58 0.126646 0.110377 21022 109990 -1 2354 34 1614 5301 286278 94459 6.33838 6.33838 -135.827 -6.33838 0 0 585099. 2024.56 0.03 0.13 0.09 -1 -1 0.03 0.045971 0.039749 158 140 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_125.v common 2.82 vpr 62.85 MiB -1 -1 0.25 18372 12 0.22 -1 -1 32544 -1 -1 38 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64356 32 32 264 296 1 189 102 17 17 289 -1 unnamed_device 23.6 MiB 0.09 1292 11050 2366 7675 1009 62.8 MiB 0.10 0.00 7.4882 -160.311 -7.4882 7.4882 0.32 0.000852834 0.000791169 0.0431371 0.0399693 -1 -1 -1 -1 32 2688 19 6.55708e+06 458090 554710. 1919.41 0.53 0.143565 0.126182 22174 131602 -1 2548 15 967 2908 141203 35435 6.62964 6.62964 -153.549 -6.62964 0 0 701300. 2426.64 0.03 0.07 0.11 -1 -1 0.03 0.0282648 0.0249116 183 170 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_126.v common 2.43 vpr 62.57 MiB -1 -1 0.27 17920 9 0.15 -1 -1 32444 -1 -1 32 25 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64068 25 32 183 215 1 133 89 17 17 289 -1 unnamed_device 22.9 MiB 0.07 884 9791 2362 5778 1651 62.6 MiB 0.07 0.00 5.75805 -100.808 -5.75805 5.75805 0.32 0.000611445 0.000567323 0.0322947 0.0299355 -1 -1 -1 -1 24 2013 19 6.55708e+06 385760 448715. 1552.65 0.49 0.102962 0.090186 20734 103517 -1 1761 18 600 1915 90275 23115 5.08326 5.08326 -98.1946 -5.08326 0 0 554710. 1919.41 0.02 0.03 0.06 -1 -1 0.02 0.0141287 0.0126477 118 110 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_127.v common 3.59 vpr 63.02 MiB -1 -1 0.31 18608 12 0.28 -1 -1 32768 -1 -1 40 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64528 32 32 300 332 1 216 104 17 17 289 -1 unnamed_device 23.9 MiB 0.13 1605 6936 1239 5241 456 63.0 MiB 0.08 0.00 7.69496 -166.719 -7.69496 7.69496 0.31 0.000958724 0.000888992 0.0307105 0.0284931 -1 -1 -1 -1 26 4186 35 6.55708e+06 482200 477104. 1650.88 1.04 0.170469 0.148547 21022 109990 -1 3459 25 1445 4477 264666 74433 6.75244 6.75244 -160.935 -6.75244 0 0 585099. 2024.56 0.03 0.12 0.09 -1 -1 0.03 0.0470212 0.0410556 213 206 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_128.v common 4.23 vpr 63.35 MiB -1 -1 0.43 18768 13 0.33 -1 -1 32756 -1 -1 39 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64868 31 32 290 322 1 209 102 17 17 289 -1 unnamed_device 23.6 MiB 0.13 1489 11050 2752 7035 1263 63.3 MiB 0.11 0.00 8.23989 -170.094 -8.23989 8.23989 0.32 0.000950408 0.000879111 0.0481654 0.0445422 -1 -1 -1 -1 26 4169 46 6.55708e+06 470145 477104. 1650.88 1.18 0.201818 0.17657 21022 109990 -1 3424 19 1339 4715 257988 66700 7.09116 7.09116 -160.785 -7.09116 0 0 585099. 2024.56 0.03 0.10 0.09 -1 -1 0.03 0.0385629 0.0338998 209 199 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_001.v common 2.81 vpr 62.87 MiB -1 -1 0.26 18408 1 0.03 -1 -1 30004 -1 -1 35 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64380 32 32 354 285 1 202 99 17 17 289 -1 unnamed_device 23.8 MiB 0.21 1187 13323 3706 8127 1490 62.9 MiB 0.14 0.00 5.77046 -168.081 -5.77046 5.77046 0.31 0.00072098 0.000670588 0.0441026 0.0409535 -1 -1 -1 -1 32 2517 18 6.64007e+06 439530 554710. 1919.41 0.55 0.124983 0.11039 22834 132086 -1 2182 19 1053 1695 95039 23213 4.59448 4.59448 -149.256 -4.59448 0 0 701300. 2426.64 0.03 0.06 0.11 -1 -1 0.03 0.0275805 0.0241213 153 50 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_002.v common 2.83 vpr 62.99 MiB -1 -1 0.25 18464 1 0.03 -1 -1 30436 -1 -1 30 30 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64504 30 32 363 293 1 196 92 17 17 289 -1 unnamed_device 23.9 MiB 0.21 1149 17066 4987 10364 1715 63.0 MiB 0.18 0.00 4.95721 -143.504 -4.95721 4.95721 0.32 0.000710438 0.000660775 0.0614398 0.0570745 -1 -1 -1 -1 32 2427 21 6.64007e+06 376740 554710. 1919.41 0.57 0.145575 0.129108 22834 132086 -1 2154 19 1350 2068 152921 33916 3.93949 3.93949 -135.593 -3.93949 0 0 701300. 2426.64 0.03 0.07 0.11 -1 -1 0.03 0.0272536 0.0238064 147 63 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_003.v common 2.68 vpr 62.80 MiB -1 -1 0.23 18488 1 0.03 -1 -1 30312 -1 -1 31 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64304 32 32 299 247 1 188 95 17 17 289 -1 unnamed_device 23.6 MiB 0.21 995 8519 1888 6283 348 62.8 MiB 0.09 0.00 4.69952 -119.793 -4.69952 4.69952 0.32 0.000629047 0.000585652 0.0270416 0.0251595 -1 -1 -1 -1 26 2703 22 6.64007e+06 389298 477104. 1650.88 0.59 0.103803 0.0908653 21682 110474 -1 2071 19 1134 1713 100741 25334 3.82002 3.82002 -121.448 -3.82002 0 0 585099. 2024.56 0.03 0.06 0.09 -1 -1 0.03 0.0245892 0.021454 129 29 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_004.v common 2.64 vpr 62.60 MiB -1 -1 0.24 18320 1 0.03 -1 -1 30340 -1 -1 31 29 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64104 29 32 308 248 1 169 92 17 17 289 -1 unnamed_device 23.5 MiB 0.07 1008 16445 5394 8747 2304 62.6 MiB 0.16 0.00 4.53207 -121.894 -4.53207 4.53207 0.31 0.000634108 0.000588823 0.0522809 0.04853 -1 -1 -1 -1 32 2067 22 6.64007e+06 389298 554710. 1919.41 0.54 0.127898 0.113171 22834 132086 -1 1877 23 1086 2225 141232 33078 3.54423 3.54423 -113.215 -3.54423 0 0 701300. 2426.64 0.03 0.07 0.11 -1 -1 0.03 0.0281235 0.0244222 132 31 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_005.v common 2.70 vpr 62.80 MiB -1 -1 0.23 18252 1 0.03 -1 -1 30416 -1 -1 28 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64312 32 32 336 268 1 174 92 17 17 289 -1 unnamed_device 23.6 MiB 0.09 1067 12098 3452 7701 945 62.8 MiB 0.13 0.00 4.58601 -133.697 -4.58601 4.58601 0.34 0.000694104 0.000645394 0.0423962 0.0393356 -1 -1 -1 -1 26 2525 21 6.64007e+06 351624 477104. 1650.88 0.59 0.126431 0.111464 21682 110474 -1 2099 20 1297 2625 147352 35273 3.66143 3.66143 -130.161 -3.66143 0 0 585099. 2024.56 0.03 0.08 0.09 -1 -1 0.03 0.0306004 0.0266689 134 34 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_006.v common 2.73 vpr 62.80 MiB -1 -1 0.25 18556 1 0.03 -1 -1 30344 -1 -1 39 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64308 32 32 366 295 1 189 103 17 17 289 -1 unnamed_device 23.8 MiB 0.11 1006 15768 4339 8895 2534 62.8 MiB 0.15 0.00 3.38256 -114.774 -3.38256 3.38256 0.32 0.000724938 0.000673003 0.0497796 0.04616 -1 -1 -1 -1 32 2303 19 6.64007e+06 489762 554710. 1919.41 0.56 0.133213 0.117724 22834 132086 -1 1827 17 1074 1725 91804 23651 3.05137 3.05137 -112.229 -3.05137 0 0 701300. 2426.64 0.03 0.06 0.10 -1 -1 0.03 0.0301609 0.0264063 145 58 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_007.v common 2.43 vpr 63.12 MiB -1 -1 0.23 18080 1 0.03 -1 -1 30572 -1 -1 21 27 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64636 27 32 259 221 1 130 80 17 17 289 -1 unnamed_device 23.5 MiB 0.08 751 11948 4103 6020 1825 63.1 MiB 0.10 0.00 3.76738 -102.601 -3.76738 3.76738 0.32 0.000553592 0.000515184 0.0404029 0.0376175 -1 -1 -1 -1 28 1527 20 6.64007e+06 263718 500653. 1732.36 0.48 0.10499 0.0926546 21970 115934 -1 1471 20 917 1568 101266 24667 2.74477 2.74477 -95.077 -2.74477 0 0 612192. 2118.31 0.03 0.05 0.10 -1 -1 0.03 0.0224191 0.0194903 97 34 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_008.v common 2.59 vpr 62.68 MiB -1 -1 0.24 17844 1 0.03 -1 -1 30220 -1 -1 35 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64188 31 32 271 219 1 162 98 17 17 289 -1 unnamed_device 23.6 MiB 0.06 965 15848 4431 8849 2568 62.7 MiB 0.14 0.00 3.47227 -101.06 -3.47227 3.47227 0.35 0.000595573 0.000554221 0.0440162 0.0408999 -1 -1 -1 -1 32 1850 22 6.64007e+06 439530 554710. 1919.41 0.50 0.116127 0.102699 22834 132086 -1 1654 15 788 1468 75522 19037 2.60777 2.60777 -91.3107 -2.60777 0 0 701300. 2426.64 0.03 0.05 0.11 -1 -1 0.03 0.019078 0.0167327 123 4 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_009.v common 2.86 vpr 62.68 MiB -1 -1 0.24 18476 1 0.03 -1 -1 30096 -1 -1 24 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64184 31 32 317 271 1 168 87 17 17 289 -1 unnamed_device 23.5 MiB 0.16 906 5655 1194 4208 253 62.7 MiB 0.07 0.00 3.60222 -117.559 -3.60222 3.60222 0.32 0.000639636 0.000594878 0.0209485 0.0195041 -1 -1 -1 -1 28 2705 33 6.64007e+06 301392 500653. 1732.36 0.81 0.108644 0.0943614 21970 115934 -1 2030 20 1272 1882 135466 32452 3.48643 3.48643 -121.992 -3.48643 0 0 612192. 2118.31 0.03 0.06 0.10 -1 -1 0.03 0.0250351 0.0217808 117 64 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_010.v common 2.55 vpr 62.54 MiB -1 -1 0.23 18256 1 0.03 -1 -1 30068 -1 -1 19 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64036 32 32 298 248 1 156 83 17 17 289 -1 unnamed_device 23.5 MiB 0.13 936 12323 3600 6804 1919 62.5 MiB 0.12 0.00 3.85841 -126.873 -3.85841 3.85841 0.32 0.000619093 0.000576413 0.0446968 0.0416188 -1 -1 -1 -1 32 1786 19 6.64007e+06 238602 554710. 1919.41 0.52 0.11678 0.103252 22834 132086 -1 1612 19 841 1348 82679 19678 2.65457 2.65457 -110.251 -2.65457 0 0 701300. 2426.64 0.03 0.06 0.11 -1 -1 0.03 0.0229212 0.0201044 115 34 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_011.v common 2.54 vpr 62.74 MiB -1 -1 0.25 18388 1 0.03 -1 -1 30384 -1 -1 19 30 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64248 30 32 303 262 1 139 81 17 17 289 -1 unnamed_device 23.6 MiB 0.12 895 11106 3427 6381 1298 62.7 MiB 0.11 0.00 3.83641 -113.668 -3.83641 3.83641 0.32 0.00061658 0.000573067 0.0411971 0.0383264 -1 -1 -1 -1 32 1647 21 6.64007e+06 238602 554710. 1919.41 0.50 0.113563 0.100095 22834 132086 -1 1460 17 663 1021 62497 14760 2.80297 2.80297 -100.224 -2.80297 0 0 701300. 2426.64 0.03 0.05 0.11 -1 -1 0.03 0.0216856 0.0189302 101 63 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_012.v common 2.69 vpr 62.66 MiB -1 -1 0.23 18084 1 0.03 -1 -1 30100 -1 -1 23 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64164 32 32 276 237 1 167 87 17 17 289 -1 unnamed_device 23.6 MiB 0.23 914 15063 5013 7393 2657 62.7 MiB 0.14 0.00 3.80941 -119.793 -3.80941 3.80941 0.32 0.000593224 0.000551677 0.0487755 0.0453526 -1 -1 -1 -1 30 2022 22 6.64007e+06 288834 526063. 1820.29 0.52 0.12086 0.107095 22546 126617 -1 1661 17 830 1209 74992 17561 2.80297 2.80297 -107.181 -2.80297 0 0 666494. 2306.21 0.03 0.05 0.10 -1 -1 0.03 0.0208561 0.0182301 111 34 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_013.v common 2.65 vpr 62.78 MiB -1 -1 0.13 18376 1 0.03 -1 -1 30344 -1 -1 29 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64284 32 32 344 272 1 202 93 17 17 289 -1 unnamed_device 23.8 MiB 0.21 1145 10803 2724 7364 715 62.8 MiB 0.12 0.00 4.40284 -140.386 -4.40284 4.40284 0.32 0.000709355 0.000659531 0.0383752 0.035603 -1 -1 -1 -1 30 2401 22 6.64007e+06 364182 526063. 1820.29 0.58 0.122776 0.107981 22546 126617 -1 2127 21 1359 2094 110426 27165 3.25703 3.25703 -124.202 -3.25703 0 0 666494. 2306.21 0.03 0.07 0.10 -1 -1 0.03 0.0291253 0.0254331 147 34 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_014.v common 2.80 vpr 63.43 MiB -1 -1 0.16 18368 1 0.03 -1 -1 30268 -1 -1 34 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64948 32 32 363 295 1 181 98 17 17 289 -1 unnamed_device 23.8 MiB 0.13 989 17873 5923 8850 3100 63.4 MiB 0.17 0.00 4.77444 -137.586 -4.77444 4.77444 0.32 0.000712912 0.000662078 0.0594743 0.0552107 -1 -1 -1 -1 28 2617 24 6.64007e+06 426972 500653. 1732.36 0.75 0.150152 0.13295 21970 115934 -1 2048 20 1394 2351 145782 36264 4.26142 4.26142 -132.668 -4.26142 0 0 612192. 2118.31 0.03 0.08 0.10 -1 -1 0.03 0.028755 0.0251025 139 61 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_015.v common 2.41 vpr 62.78 MiB -1 -1 0.22 18068 1 0.03 -1 -1 30400 -1 -1 23 29 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64288 29 32 248 215 1 137 84 17 17 289 -1 unnamed_device 23.2 MiB 0.08 694 9234 2301 6256 677 62.8 MiB 0.08 0.00 3.09179 -89.0655 -3.09179 3.09179 0.32 0.000541072 0.000503614 0.0294454 0.0273744 -1 -1 -1 -1 28 1661 20 6.64007e+06 288834 500653. 1732.36 0.48 0.0926557 0.0812293 21970 115934 -1 1471 17 793 1316 76428 19287 2.75777 2.75777 -91.0915 -2.75777 0 0 612192. 2118.31 0.03 0.05 0.10 -1 -1 0.03 0.0192396 0.0167673 103 27 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_016.v common 2.66 vpr 62.93 MiB -1 -1 0.26 18448 1 0.03 -1 -1 30352 -1 -1 27 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64440 32 32 370 297 1 183 91 17 17 289 -1 unnamed_device 23.9 MiB 0.13 1107 16003 5012 8992 1999 62.9 MiB 0.17 0.00 4.0781 -126.952 -4.0781 4.0781 0.32 0.000726709 0.000675037 0.05991 0.0556514 -1 -1 -1 -1 32 2297 19 6.64007e+06 339066 554710. 1919.41 0.57 0.144057 0.127765 22834 132086 -1 2105 20 1422 2537 151704 36359 3.12737 3.12737 -118.814 -3.12737 0 0 701300. 2426.64 0.03 0.07 0.11 -1 -1 0.03 0.0289797 0.0252666 138 58 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_017.v common 2.89 vpr 62.89 MiB -1 -1 0.26 18396 1 0.03 -1 -1 30152 -1 -1 28 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64400 32 32 338 269 1 196 92 17 17 289 -1 unnamed_device 23.8 MiB 0.23 1061 17066 4730 9821 2515 62.9 MiB 0.17 0.00 4.48406 -140.639 -4.48406 4.48406 0.32 0.000693042 0.000644226 0.059948 0.0557361 -1 -1 -1 -1 32 2314 40 6.64007e+06 351624 554710. 1919.41 0.63 0.161734 0.142937 22834 132086 -1 1983 22 1194 1762 113331 28176 3.19063 3.19063 -122.439 -3.19063 0 0 701300. 2426.64 0.03 0.07 0.11 -1 -1 0.03 0.0298854 0.0260581 144 34 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_018.v common 2.55 vpr 62.78 MiB -1 -1 0.20 18336 1 0.03 -1 -1 30200 -1 -1 34 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64288 32 32 323 276 1 153 98 17 17 289 -1 unnamed_device 23.6 MiB 0.09 912 16523 5279 8659 2585 62.8 MiB 0.15 0.00 2.85064 -102.219 -2.85064 2.85064 0.31 0.000652995 0.000606818 0.0503687 0.0467251 -1 -1 -1 -1 32 1754 21 6.64007e+06 426972 554710. 1919.41 0.54 0.125923 0.111248 22834 132086 -1 1560 18 1067 1888 103791 25844 1.91191 1.91191 -89.0293 -1.91191 0 0 701300. 2426.64 0.03 0.06 0.11 -1 -1 0.03 0.0239531 0.0208594 115 65 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_019.v common 2.31 vpr 62.77 MiB -1 -1 0.21 18116 1 0.03 -1 -1 30064 -1 -1 17 30 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64280 30 32 222 206 1 117 79 17 17 289 -1 unnamed_device 23.6 MiB 0.06 532 9543 2250 6629 664 62.8 MiB 0.07 0.00 2.4343 -77.8363 -2.4343 2.4343 0.31 0.000498159 0.00046299 0.0295526 0.0274642 -1 -1 -1 -1 28 1401 21 6.64007e+06 213486 500653. 1732.36 0.51 0.087921 0.0771578 21970 115934 -1 1137 19 688 980 63827 17614 1.86811 1.86811 -77.6028 -1.86811 0 0 612192. 2118.31 0.03 0.05 0.10 -1 -1 0.03 0.0187935 0.0163088 85 34 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_020.v common 2.70 vpr 62.58 MiB -1 -1 0.24 18244 1 0.03 -1 -1 30440 -1 -1 25 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64084 31 32 291 243 1 171 88 17 17 289 -1 unnamed_device 23.5 MiB 0.24 847 10423 2562 6326 1535 62.6 MiB 0.10 0.00 5.02597 -142.893 -5.02597 5.02597 0.32 0.000610921 0.000568644 0.0349955 0.0325792 -1 -1 -1 -1 30 1856 17 6.64007e+06 313950 526063. 1820.29 0.53 0.103641 0.09137 22546 126617 -1 1527 13 585 825 49033 12151 3.62042 3.62042 -128.198 -3.62042 0 0 666494. 2306.21 0.03 0.04 0.10 -1 -1 0.03 0.0183956 0.0162745 127 34 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_021.v common 2.66 vpr 62.75 MiB -1 -1 0.24 18256 1 0.03 -1 -1 30520 -1 -1 37 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64252 32 32 342 271 1 179 101 17 17 289 -1 unnamed_device 23.8 MiB 0.07 1134 18196 5105 11197 1894 62.7 MiB 0.17 0.00 4.17176 -133.816 -4.17176 4.17176 0.32 0.000696533 0.000643934 0.0564419 0.0523516 -1 -1 -1 -1 30 2120 18 6.64007e+06 464646 526063. 1820.29 0.54 0.13621 0.120632 22546 126617 -1 1938 22 1156 1962 119310 27378 3.52443 3.52443 -126.017 -3.52443 0 0 666494. 2306.21 0.03 0.07 0.10 -1 -1 0.03 0.03006 0.0262474 140 34 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_022.v common 2.91 vpr 62.91 MiB -1 -1 0.26 18548 1 0.03 -1 -1 30292 -1 -1 31 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64416 32 32 372 300 1 207 95 17 17 289 -1 unnamed_device 23.8 MiB 0.23 1260 17591 5360 9925 2306 62.9 MiB 0.19 0.00 4.72719 -143.457 -4.72719 4.72719 0.35 0.000740177 0.000688771 0.0632155 0.0586458 -1 -1 -1 -1 32 2623 20 6.64007e+06 389298 554710. 1919.41 0.56 0.148536 0.131775 22834 132086 -1 2332 17 1286 2056 118473 28953 3.90649 3.90649 -129.764 -3.90649 0 0 701300. 2426.64 0.03 0.06 0.09 -1 -1 0.03 0.0257533 0.0225868 151 62 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_023.v common 2.44 vpr 62.62 MiB -1 -1 0.21 18080 1 0.03 -1 -1 30528 -1 -1 20 26 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64124 26 32 190 182 1 108 78 17 17 289 -1 unnamed_device 23.2 MiB 0.09 426 10536 3993 4440 2103 62.6 MiB 0.07 0.00 2.50053 -67.6186 -2.50053 2.50053 0.32 0.000436929 0.000400303 0.0290515 0.0268679 -1 -1 -1 -1 32 1026 22 6.64007e+06 251160 554710. 1919.41 0.51 0.0817182 0.0716779 22834 132086 -1 874 18 548 811 45228 13433 1.97731 1.97731 -65.3841 -1.97731 0 0 701300. 2426.64 0.03 0.04 0.11 -1 -1 0.03 0.0152356 0.0132622 81 30 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_024.v common 2.53 vpr 62.68 MiB -1 -1 0.22 17864 1 0.03 -1 -1 30276 -1 -1 25 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64184 32 32 285 227 1 165 89 17 17 289 -1 unnamed_device 23.6 MiB 0.07 962 6821 1380 5168 273 62.7 MiB 0.08 0.00 4.45587 -122.025 -4.45587 4.45587 0.32 0.000632837 0.000579639 0.0236586 0.0219696 -1 -1 -1 -1 32 2155 19 6.64007e+06 313950 554710. 1919.41 0.55 0.0955033 0.0835082 22834 132086 -1 1903 22 1221 2303 145599 33656 3.56023 3.56023 -116.407 -3.56023 0 0 701300. 2426.64 0.03 0.07 0.11 -1 -1 0.03 0.0269469 0.0234776 125 3 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_025.v common 2.40 vpr 62.68 MiB -1 -1 0.20 17616 1 0.02 -1 -1 30032 -1 -1 17 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64184 32 32 173 169 1 116 81 17 17 289 -1 unnamed_device 23.4 MiB 0.05 506 11281 3424 5287 2570 62.7 MiB 0.07 0.00 2.72793 -76.1863 -2.72793 2.72793 0.31 0.000420089 0.000389775 0.0287434 0.0267156 -1 -1 -1 -1 26 1285 37 6.64007e+06 213486 477104. 1650.88 0.54 0.0765327 0.06757 21682 110474 -1 1002 13 438 511 40350 12151 2.30171 2.30171 -75.5155 -2.30171 0 0 585099. 2024.56 0.03 0.03 0.09 -1 -1 0.03 0.0124532 0.0109542 82 3 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_026.v common 2.69 vpr 62.73 MiB -1 -1 0.23 18088 1 0.03 -1 -1 30024 -1 -1 31 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64240 32 32 300 245 1 165 95 17 17 289 -1 unnamed_device 23.6 MiB 0.07 883 10031 2317 7175 539 62.7 MiB 0.10 0.00 4.605 -123.934 -4.605 4.605 0.32 0.000638244 0.000593242 0.0318232 0.0295403 -1 -1 -1 -1 26 2558 30 6.64007e+06 389298 477104. 1650.88 0.70 0.116775 0.102232 21682 110474 -1 1879 19 1105 1890 131855 36211 3.61243 3.61243 -115.665 -3.61243 0 0 585099. 2024.56 0.03 0.07 0.09 -1 -1 0.03 0.024099 0.0210298 126 24 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_027.v common 2.58 vpr 62.74 MiB -1 -1 0.23 17940 1 0.03 -1 -1 30444 -1 -1 39 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64244 32 32 297 233 1 177 103 17 17 289 -1 unnamed_device 23.5 MiB 0.06 983 19624 5667 10714 3243 62.7 MiB 0.17 0.00 3.74367 -107.154 -3.74367 3.74367 0.31 0.000643124 0.000596512 0.0541517 0.0501652 -1 -1 -1 -1 30 2029 21 6.64007e+06 489762 526063. 1820.29 0.55 0.129395 0.114647 22546 126617 -1 1826 21 1025 1901 115566 26955 2.81677 2.81677 -97.3789 -2.81677 0 0 666494. 2306.21 0.03 0.06 0.10 -1 -1 0.03 0.0265257 0.0230983 136 3 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_028.v common 2.66 vpr 62.79 MiB -1 -1 0.24 18376 1 0.03 -1 -1 30248 -1 -1 35 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64296 32 32 338 277 1 179 99 17 17 289 -1 unnamed_device 23.8 MiB 0.12 1102 15147 4066 9723 1358 62.8 MiB 0.15 0.00 4.9076 -137.928 -4.9076 4.9076 0.32 0.000693713 0.000642192 0.0478832 0.0443651 -1 -1 -1 -1 30 2217 21 6.64007e+06 439530 526063. 1820.29 0.53 0.127985 0.112974 22546 126617 -1 1976 19 975 1710 85252 20817 3.73962 3.73962 -125.26 -3.73962 0 0 666494. 2306.21 0.03 0.06 0.10 -1 -1 0.03 0.0265032 0.0231786 133 50 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_029.v common 2.44 vpr 63.14 MiB -1 -1 0.22 18024 1 0.03 -1 -1 30044 -1 -1 21 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64656 32 32 284 241 1 145 85 17 17 289 -1 unnamed_device 23.3 MiB 0.07 891 9943 2356 6701 886 63.1 MiB 0.10 0.00 3.06979 -104.718 -3.06979 3.06979 0.31 0.000603833 0.000560397 0.0349301 0.0324289 -1 -1 -1 -1 32 1751 17 6.64007e+06 263718 554710. 1919.41 0.49 0.1021 0.0898442 22834 132086 -1 1528 20 825 1366 74902 18215 2.59557 2.59557 -98.7069 -2.59557 0 0 701300. 2426.64 0.03 0.06 0.11 -1 -1 0.03 0.0250366 0.0217718 107 34 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_030.v common 2.20 vpr 62.54 MiB -1 -1 0.22 18104 1 0.03 -1 -1 30208 -1 -1 28 30 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64044 30 32 262 227 1 135 90 17 17 289 -1 unnamed_device 23.2 MiB 0.04 680 8733 1889 6137 707 62.5 MiB 0.08 0.00 3.24119 -95.6654 -3.24119 3.24119 0.24 0.000566872 0.000527984 0.0264591 0.0246154 -1 -1 -1 -1 32 1467 24 6.64007e+06 351624 554710. 1919.41 0.50 0.0951258 0.0831051 22834 132086 -1 1268 15 541 823 48367 12287 2.78097 2.78097 -89.3799 -2.78097 0 0 701300. 2426.64 0.03 0.04 0.11 -1 -1 0.03 0.0180998 0.0158592 100 34 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_031.v common 2.42 vpr 62.76 MiB -1 -1 0.23 18080 1 0.03 -1 -1 30176 -1 -1 27 28 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64264 28 32 260 223 1 140 87 17 17 289 -1 unnamed_device 23.4 MiB 0.07 639 10263 2494 7193 576 62.8 MiB 0.09 0.00 3.42827 -93.8875 -3.42827 3.42827 0.32 0.00043274 0.000391438 0.0289215 0.0266058 -1 -1 -1 -1 32 1562 21 6.64007e+06 339066 554710. 1919.41 0.47 0.0861484 0.0753885 22834 132086 -1 1318 18 753 1299 69501 18303 2.71057 2.71057 -90.431 -2.71057 0 0 701300. 2426.64 0.03 0.05 0.11 -1 -1 0.03 0.0204961 0.0178339 104 34 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_032.v common 2.53 vpr 62.58 MiB -1 -1 0.20 17912 1 0.03 -1 -1 30252 -1 -1 21 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64084 32 32 253 210 1 154 85 17 17 289 -1 unnamed_device 23.2 MiB 0.07 756 14035 4673 6434 2928 62.6 MiB 0.13 0.00 3.79135 -111.266 -3.79135 3.79135 0.32 0.000574842 0.000528617 0.0450144 0.0417314 -1 -1 -1 -1 32 1986 24 6.64007e+06 263718 554710. 1919.41 0.55 0.115014 0.101518 22834 132086 -1 1511 22 958 1607 107000 26431 2.69557 2.69557 -103.802 -2.69557 0 0 701300. 2426.64 0.03 0.06 0.11 -1 -1 0.03 0.0245672 0.0213105 116 3 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_033.v common 2.40 vpr 62.91 MiB -1 -1 0.18 17992 1 0.03 -1 -1 30284 -1 -1 33 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64420 31 32 271 231 1 148 96 17 17 289 -1 unnamed_device 23.9 MiB 0.07 762 8199 1685 6175 339 62.9 MiB 0.08 0.00 3.50227 -101.986 -3.50227 3.50227 0.32 0.000585689 0.000544952 0.0239081 0.0222302 -1 -1 -1 -1 26 1895 22 6.64007e+06 414414 477104. 1650.88 0.55 0.0985801 0.0861158 21682 110474 -1 1634 19 992 1839 102453 25790 2.84297 2.84297 -101.016 -2.84297 0 0 585099. 2024.56 0.03 0.06 0.09 -1 -1 0.03 0.0222234 0.0193272 111 30 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_034.v common 2.55 vpr 63.14 MiB -1 -1 0.23 18392 1 0.03 -1 -1 30376 -1 -1 31 29 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64652 29 32 291 250 1 153 92 17 17 289 -1 unnamed_device 23.6 MiB 0.13 926 8579 2243 5615 721 63.1 MiB 0.09 0.00 3.38029 -105.574 -3.38029 3.38029 0.32 0.000606378 0.000563299 0.0269435 0.0250583 -1 -1 -1 -1 32 1817 16 6.64007e+06 389298 554710. 1919.41 0.52 0.0856407 0.0752452 22834 132086 -1 1610 20 846 1287 80837 19336 2.46117 2.46117 -95.63 -2.46117 0 0 701300. 2426.64 0.03 0.06 0.11 -1 -1 0.03 0.0238605 0.0207606 112 54 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_035.v common 2.62 vpr 63.50 MiB -1 -1 0.18 18424 1 0.03 -1 -1 30488 -1 -1 42 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65024 32 32 367 282 1 201 106 17 17 289 -1 unnamed_device 23.8 MiB 0.11 1231 12606 3242 8430 934 63.5 MiB 0.13 0.00 4.47716 -125.986 -4.47716 4.47716 0.34 0.000742465 0.000690503 0.040033 0.0371622 -1 -1 -1 -1 30 2392 22 6.64007e+06 527436 526063. 1820.29 0.57 0.121338 0.107295 22546 126617 -1 2206 21 1094 2094 127085 27888 3.60143 3.60143 -119.17 -3.60143 0 0 666494. 2306.21 0.03 0.07 0.10 -1 -1 0.03 0.0305183 0.026678 158 29 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_036.v common 2.79 vpr 63.49 MiB -1 -1 0.25 18340 1 0.04 -1 -1 30180 -1 -1 41 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65012 32 32 391 311 1 192 105 17 17 289 -1 unnamed_device 23.8 MiB 0.12 1118 12208 2919 8273 1016 63.5 MiB 0.17 0.00 3.91238 -131.369 -3.91238 3.91238 0.32 0.000761885 0.000699352 0.055694 0.0515452 -1 -1 -1 -1 28 2461 21 6.64007e+06 514878 500653. 1732.36 0.57 0.144934 0.12814 21970 115934 -1 2208 19 1586 2620 148161 36739 2.95517 2.95517 -121.08 -2.95517 0 0 612192. 2118.31 0.03 0.07 0.10 -1 -1 0.03 0.0289413 0.0253146 150 65 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_037.v common 2.72 vpr 62.75 MiB -1 -1 0.22 18372 1 0.03 -1 -1 30040 -1 -1 23 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64252 31 32 279 237 1 161 86 17 17 289 -1 unnamed_device 23.6 MiB 0.18 947 12938 4038 6585 2315 62.7 MiB 0.13 0.00 4.39563 -129.442 -4.39563 4.39563 0.31 0.000592796 0.000550729 0.0448114 0.0415629 -1 -1 -1 -1 28 2146 18 6.64007e+06 288834 500653. 1732.36 0.64 0.112874 0.0997387 21970 115934 -1 1870 18 1048 1494 96179 23713 3.25683 3.25683 -117.68 -3.25683 0 0 612192. 2118.31 0.03 0.06 0.10 -1 -1 0.03 0.0218602 0.0190643 114 34 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_038.v common 2.86 vpr 63.04 MiB -1 -1 0.28 18504 1 0.03 -1 -1 30476 -1 -1 29 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64552 31 32 370 297 1 186 92 17 17 289 -1 unnamed_device 24.0 MiB 0.12 956 16859 5123 8841 2895 63.0 MiB 0.17 0.00 4.07349 -118.008 -4.07349 4.07349 0.32 0.000717713 0.000666741 0.0611443 0.0567749 -1 -1 -1 -1 32 1986 19 6.64007e+06 364182 554710. 1919.41 0.56 0.143997 0.127744 22834 132086 -1 1747 21 1079 1902 101763 25914 2.96196 2.96196 -104.515 -2.96196 0 0 701300. 2426.64 0.03 0.07 0.11 -1 -1 0.03 0.0301989 0.0263681 145 61 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_039.v common 3.01 vpr 63.07 MiB -1 -1 0.27 18336 1 0.03 -1 -1 30264 -1 -1 36 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64588 31 32 377 302 1 234 99 17 17 289 -1 unnamed_device 24.2 MiB 0.36 1443 12183 2916 8073 1194 63.1 MiB 0.15 0.00 5.78896 -175.168 -5.78896 5.78896 0.34 0.000730371 0.000678859 0.042079 0.0390942 -1 -1 -1 -1 28 3186 22 6.64007e+06 452088 500653. 1732.36 0.59 0.124257 0.109624 21970 115934 -1 2704 21 1544 2373 159211 37709 4.84135 4.84135 -166.082 -4.84135 0 0 612192. 2118.31 0.03 0.08 0.10 -1 -1 0.03 0.0305437 0.0267185 178 64 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_040.v common 2.98 vpr 62.88 MiB -1 -1 0.25 18228 1 0.03 -1 -1 30372 -1 -1 32 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64388 31 32 383 305 1 209 95 17 17 289 -1 unnamed_device 23.8 MiB 0.31 1234 12191 3319 7524 1348 62.9 MiB 0.14 0.00 5.10379 -154.62 -5.10379 5.10379 0.32 0.000745353 0.000692519 0.0442067 0.0410231 -1 -1 -1 -1 30 2528 23 6.64007e+06 401856 526063. 1820.29 0.56 0.134313 0.118402 22546 126617 -1 2128 20 1112 1738 94826 23161 4.27288 4.27288 -144.151 -4.27288 0 0 666494. 2306.21 0.04 0.08 0.11 -1 -1 0.04 0.0377662 0.0337785 167 64 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_041.v common 2.73 vpr 62.80 MiB -1 -1 0.26 18420 1 0.03 -1 -1 30316 -1 -1 37 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64312 31 32 352 285 1 184 100 17 17 289 -1 unnamed_device 23.8 MiB 0.14 1115 12860 3466 8442 952 62.8 MiB 0.13 0.00 4.70003 -136.748 -4.70003 4.70003 0.32 0.000715122 0.000665654 0.0417528 0.038773 -1 -1 -1 -1 26 2605 23 6.64007e+06 464646 477104. 1650.88 0.58 0.127608 0.112186 21682 110474 -1 2250 19 1232 2113 125509 30102 3.32883 3.32883 -120.962 -3.32883 0 0 585099. 2024.56 0.03 0.07 0.09 -1 -1 0.03 0.0270422 0.0236199 140 55 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_042.v common 2.71 vpr 62.82 MiB -1 -1 0.24 18288 1 0.03 -1 -1 30260 -1 -1 29 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64332 32 32 291 242 1 179 93 17 17 289 -1 unnamed_device 23.7 MiB 0.17 1061 8073 1866 5827 380 62.8 MiB 0.09 0.00 4.40233 -117.896 -4.40233 4.40233 0.32 0.000615341 0.000573051 0.0259548 0.0241356 -1 -1 -1 -1 26 2518 23 6.64007e+06 364182 477104. 1650.88 0.66 0.102146 0.0893417 21682 110474 -1 2137 18 962 1522 106494 23971 3.50942 3.50942 -116.943 -3.50942 0 0 585099. 2024.56 0.03 0.06 0.09 -1 -1 0.03 0.0231839 0.0203345 125 27 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_043.v common 3.03 vpr 63.46 MiB -1 -1 0.27 18732 1 0.03 -1 -1 30432 -1 -1 43 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64984 32 32 457 356 1 223 107 17 17 289 -1 unnamed_device 24.6 MiB 0.16 1312 16552 4366 10580 1606 63.5 MiB 0.18 0.00 5.1085 -163.706 -5.1085 5.1085 0.32 0.000866276 0.000805627 0.0599784 0.0556569 -1 -1 -1 -1 26 3108 25 6.64007e+06 539994 477104. 1650.88 0.74 0.169209 0.149122 21682 110474 -1 2610 21 1586 2418 149034 35187 4.18489 4.18489 -152.922 -4.18489 0 0 585099. 2024.56 0.03 0.09 0.09 -1 -1 0.03 0.0364613 0.0317981 176 87 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_044.v common 2.51 vpr 62.67 MiB -1 -1 0.23 18088 1 0.03 -1 -1 30204 -1 -1 23 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64176 31 32 261 225 1 142 86 17 17 289 -1 unnamed_device 23.4 MiB 0.08 705 8213 2081 5243 889 62.7 MiB 0.08 0.00 3.75024 -98.8591 -3.75024 3.75024 0.32 0.0005679 0.000526595 0.0263248 0.0244408 -1 -1 -1 -1 32 1549 22 6.64007e+06 288834 554710. 1919.41 0.53 0.100546 0.0878178 22834 132086 -1 1406 19 899 1604 92734 23078 2.74057 2.74057 -95.4429 -2.74057 0 0 701300. 2426.64 0.03 0.05 0.11 -1 -1 0.03 0.0216482 0.0188058 104 28 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_045.v common 2.78 vpr 62.98 MiB -1 -1 0.25 18292 1 0.03 -1 -1 30248 -1 -1 34 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64492 31 32 337 267 1 204 97 17 17 289 -1 unnamed_device 24.0 MiB 0.22 1232 11863 3185 7621 1057 63.0 MiB 0.13 0.00 5.0773 -152.378 -5.0773 5.0773 0.32 0.000685702 0.000638075 0.0388617 0.0361442 -1 -1 -1 -1 30 2607 19 6.64007e+06 426972 526063. 1820.29 0.54 0.117632 0.103629 22546 126617 -1 2248 21 1248 1852 100468 23985 3.96729 3.96729 -135.475 -3.96729 0 0 666494. 2306.21 0.03 0.07 0.10 -1 -1 0.03 0.0289625 0.0253341 149 34 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_046.v common 2.99 vpr 62.95 MiB -1 -1 0.17 18472 1 0.03 -1 -1 30352 -1 -1 38 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64456 32 32 349 284 1 183 102 17 17 289 -1 unnamed_device 23.9 MiB 0.12 1221 11764 2967 7709 1088 62.9 MiB 0.12 0.00 3.95307 -117.525 -3.95307 3.95307 0.32 0.000696024 0.000644408 0.0366916 0.0340243 -1 -1 -1 -1 22 3240 30 6.64007e+06 477204 420624. 1455.45 0.98 0.131608 0.11527 20818 92861 -1 2548 19 1326 2488 176484 42475 3.19957 3.19957 -118.379 -3.19957 0 0 500653. 1732.36 0.02 0.07 0.08 -1 -1 0.02 0.0262585 0.0229142 137 53 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_047.v common 2.58 vpr 62.59 MiB -1 -1 0.23 17800 1 0.03 -1 -1 30212 -1 -1 27 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64096 32 32 291 230 1 168 91 17 17 289 -1 unnamed_device 23.5 MiB 0.07 900 13147 4476 6141 2530 62.6 MiB 0.13 0.00 4.20356 -122.292 -4.20356 4.20356 0.31 0.000620913 0.00057678 0.0422596 0.0392478 -1 -1 -1 -1 32 2124 24 6.64007e+06 339066 554710. 1919.41 0.57 0.118883 0.104795 22834 132086 -1 1774 20 1016 2010 121136 29266 3.34003 3.34003 -110.91 -3.34003 0 0 701300. 2426.64 0.03 0.06 0.12 -1 -1 0.03 0.0252076 0.0219955 127 3 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_048.v common 2.84 vpr 63.38 MiB -1 -1 0.23 18376 1 0.03 -1 -1 30420 -1 -1 30 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64904 32 32 353 287 1 198 94 17 17 289 -1 unnamed_device 23.8 MiB 0.24 1217 9679 2220 6521 938 63.4 MiB 0.12 0.00 4.87535 -142.566 -4.87535 4.87535 0.32 0.00070198 0.000652914 0.0343575 0.0319558 -1 -1 -1 -1 28 2610 19 6.64007e+06 376740 500653. 1732.36 0.55 0.115739 0.101618 21970 115934 -1 2275 19 1225 1679 117927 28569 3.29983 3.29983 -124.736 -3.29983 0 0 612192. 2118.31 0.03 0.07 0.10 -1 -1 0.03 0.0264037 0.0231204 142 55 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_049.v common 2.88 vpr 62.88 MiB -1 -1 0.24 18384 1 0.03 -1 -1 30292 -1 -1 39 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64388 32 32 361 291 1 185 103 17 17 289 -1 unnamed_device 23.8 MiB 0.14 1032 10466 2519 7358 589 62.9 MiB 0.11 0.00 3.87166 -121.484 -3.87166 3.87166 0.33 0.000728678 0.00067732 0.03387 0.0314019 -1 -1 -1 -1 26 2492 21 6.64007e+06 489762 477104. 1650.88 0.70 0.123703 0.108661 21682 110474 -1 2122 22 1168 2158 142549 33751 3.01017 3.01017 -112.725 -3.01017 0 0 585099. 2024.56 0.03 0.07 0.09 -1 -1 0.03 0.0306578 0.0267168 139 55 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_050.v common 2.92 vpr 63.10 MiB -1 -1 0.26 18372 1 0.03 -1 -1 30420 -1 -1 40 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64612 32 32 382 305 1 192 104 17 17 289 -1 unnamed_device 23.9 MiB 0.13 1185 14744 3959 8963 1822 63.1 MiB 0.15 0.00 4.29207 -132.639 -4.29207 4.29207 0.32 0.000732956 0.000680596 0.0468908 0.0434674 -1 -1 -1 -1 28 2570 18 6.64007e+06 502320 500653. 1732.36 0.59 0.13304 0.117512 21970 115934 -1 2290 20 1435 2358 148680 35355 3.36377 3.36377 -121.085 -3.36377 0 0 612192. 2118.31 0.03 0.10 0.14 -1 -1 0.03 0.0322143 0.0281537 149 62 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_051.v common 2.45 vpr 62.71 MiB -1 -1 0.14 18284 1 0.03 -1 -1 30308 -1 -1 36 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64216 32 32 306 248 1 166 100 17 17 289 -1 unnamed_device 23.6 MiB 0.07 1023 10540 2564 7150 826 62.7 MiB 0.10 0.00 4.27093 -125.084 -4.27093 4.27093 0.30 0.000635854 0.000590624 0.0312502 0.0290072 -1 -1 -1 -1 32 2034 20 6.64007e+06 452088 554710. 1919.41 0.53 0.105906 0.0929137 22834 132086 -1 1819 20 1043 1996 118484 27523 3.47223 3.47223 -116.792 -3.47223 0 0 701300. 2426.64 0.03 0.06 0.11 -1 -1 0.03 0.0255077 0.0222584 127 24 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_052.v common 2.67 vpr 62.80 MiB -1 -1 0.14 18480 1 0.03 -1 -1 30144 -1 -1 29 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64304 32 32 319 257 1 198 93 17 17 289 -1 unnamed_device 23.8 MiB 0.21 1094 10173 2429 6748 996 62.8 MiB 0.11 0.00 5.10621 -136.906 -5.10621 5.10621 0.32 0.000655901 0.000609938 0.0340695 0.0316782 -1 -1 -1 -1 32 2080 22 6.64007e+06 364182 554710. 1919.41 0.54 0.113192 0.0993888 22834 132086 -1 1862 19 1043 1542 79123 20468 3.86682 3.86682 -126.192 -3.86682 0 0 701300. 2426.64 0.03 0.06 0.11 -1 -1 0.03 0.0252548 0.0221089 138 29 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_053.v common 3.08 vpr 62.86 MiB -1 -1 0.27 18376 1 0.03 -1 -1 30320 -1 -1 30 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64372 31 32 373 299 1 205 93 17 17 289 -1 unnamed_device 23.8 MiB 0.20 1155 14373 4323 8054 1996 62.9 MiB 0.17 0.00 5.05909 -147.227 -5.05909 5.05909 0.37 0.000731719 0.000678738 0.0525936 0.0488573 -1 -1 -1 -1 28 3203 22 6.64007e+06 376740 500653. 1732.36 0.81 0.144202 0.127554 21970 115934 -1 2573 21 1432 2292 195574 43376 4.02669 4.02669 -136.225 -4.02669 0 0 612192. 2118.31 0.03 0.08 0.10 -1 -1 0.03 0.0299494 0.0260903 152 62 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_054.v common 2.73 vpr 62.93 MiB -1 -1 0.19 18476 1 0.03 -1 -1 30188 -1 -1 25 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64444 32 32 387 315 1 189 89 17 17 289 -1 unnamed_device 23.8 MiB 0.15 1136 14147 4526 7649 1972 62.9 MiB 0.16 0.00 4.38816 -135.074 -4.38816 4.38816 0.32 0.000743004 0.000687682 0.0564022 0.052172 -1 -1 -1 -1 30 2565 21 6.64007e+06 313950 526063. 1820.29 0.59 0.145234 0.128316 22546 126617 -1 2247 16 1212 2170 142450 32357 3.63163 3.63163 -128.953 -3.63163 0 0 666494. 2306.21 0.03 0.06 0.10 -1 -1 0.03 0.0246587 0.0216156 141 77 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_055.v common 2.63 vpr 63.07 MiB -1 -1 0.22 18120 1 0.03 -1 -1 30300 -1 -1 30 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64584 32 32 251 219 1 140 94 17 17 289 -1 unnamed_device 23.3 MiB 0.08 923 15643 4702 9042 1899 63.1 MiB 0.13 0.00 3.5543 -104.7 -3.5543 3.5543 0.32 0.00055848 0.000519887 0.0433436 0.0403444 -1 -1 -1 -1 28 1834 21 6.64007e+06 376740 500653. 1732.36 0.56 0.108027 0.0957526 21970 115934 -1 1668 22 937 1393 89639 21079 2.65657 2.65657 -97.5617 -2.65657 0 0 612192. 2118.31 0.03 0.06 0.10 -1 -1 0.03 0.0239942 0.0208508 101 23 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_056.v common 2.67 vpr 63.50 MiB -1 -1 0.16 18272 1 0.03 -1 -1 30040 -1 -1 27 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65020 32 32 341 285 1 189 91 17 17 289 -1 unnamed_device 23.9 MiB 0.19 1003 17023 5521 9148 2354 63.5 MiB 0.17 0.00 4.05053 -136.563 -4.05053 4.05053 0.32 0.000667134 0.000619094 0.0589093 0.0547082 -1 -1 -1 -1 32 2363 20 6.64007e+06 339066 554710. 1919.41 0.56 0.140709 0.125069 22834 132086 -1 2016 20 1250 1804 125844 29633 3.39003 3.39003 -130.188 -3.39003 0 0 701300. 2426.64 0.03 0.07 0.09 -1 -1 0.03 0.02694 0.0234839 133 65 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_057.v common 2.84 vpr 62.91 MiB -1 -1 0.26 18464 1 0.03 -1 -1 30344 -1 -1 35 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64416 32 32 387 293 1 234 99 17 17 289 -1 unnamed_device 24.0 MiB 0.21 1435 16059 4481 10134 1444 62.9 MiB 0.17 0.00 5.58406 -162.308 -5.58406 5.58406 0.31 0.000764097 0.000710561 0.0566155 0.0526078 -1 -1 -1 -1 32 3124 21 6.64007e+06 439530 554710. 1919.41 0.58 0.147297 0.130581 22834 132086 -1 2675 22 1593 2519 150795 35527 4.87408 4.87408 -154.358 -4.87408 0 0 701300. 2426.64 0.03 0.08 0.11 -1 -1 0.03 0.0330463 0.028895 174 31 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_058.v common 2.56 vpr 63.39 MiB -1 -1 0.17 18576 1 0.03 -1 -1 30528 -1 -1 38 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64908 32 32 340 270 1 181 102 17 17 289 -1 unnamed_device 23.8 MiB 0.11 1083 12240 2973 8199 1068 63.4 MiB 0.12 0.00 4.33282 -136.421 -4.33282 4.33282 0.32 0.000691046 0.000642837 0.0380761 0.0353909 -1 -1 -1 -1 32 2036 19 6.64007e+06 477204 554710. 1919.41 0.54 0.117898 0.103855 22834 132086 -1 1889 22 1182 1950 109230 27017 2.85617 2.85617 -116.634 -2.85617 0 0 701300. 2426.64 0.03 0.07 0.10 -1 -1 0.03 0.0294348 0.0256088 141 34 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_059.v common 2.47 vpr 62.55 MiB -1 -1 0.24 18040 1 0.03 -1 -1 30292 -1 -1 33 30 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64052 30 32 278 235 1 148 95 17 17 289 -1 unnamed_device 23.5 MiB 0.05 787 15647 4513 8348 2786 62.6 MiB 0.13 0.00 3.51327 -106.246 -3.51327 3.51327 0.32 0.000603837 0.000561213 0.0453604 0.0421794 -1 -1 -1 -1 32 1767 19 6.64007e+06 414414 554710. 1919.41 0.51 0.113315 0.100197 22834 132086 -1 1434 19 732 1177 64731 16326 2.73257 2.73257 -98.3112 -2.73257 0 0 701300. 2426.64 0.03 0.04 0.12 -1 -1 0.03 0.0169393 0.0148555 111 34 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_060.v common 3.53 vpr 63.23 MiB -1 -1 0.26 18632 1 0.03 -1 -1 30244 -1 -1 33 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64744 32 32 431 332 1 235 97 17 17 289 -1 unnamed_device 24.4 MiB 0.31 1370 17635 5043 10114 2478 63.2 MiB 0.21 0.00 6.37067 -183.955 -6.37067 6.37067 0.32 0.000827281 0.000769095 0.0686146 0.0637394 -1 -1 -1 -1 26 3739 28 6.64007e+06 414414 477104. 1650.88 1.06 0.183963 0.163024 21682 110474 -1 2914 23 2106 3156 231468 52338 5.05174 5.05174 -171.67 -5.05174 0 0 585099. 2024.56 0.03 0.10 0.09 -1 -1 0.03 0.0364787 0.031749 177 65 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_061.v common 2.78 vpr 62.80 MiB -1 -1 0.24 18536 1 0.03 -1 -1 30456 -1 -1 38 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64312 32 32 336 268 1 174 102 17 17 289 -1 unnamed_device 23.8 MiB 0.11 1059 19142 5710 10959 2473 62.8 MiB 0.17 0.00 4.53287 -137.071 -4.53287 4.53287 0.35 0.000694142 0.000645825 0.0585836 0.0543714 -1 -1 -1 -1 32 2159 21 6.64007e+06 477204 554710. 1919.41 0.56 0.141425 0.1254 22834 132086 -1 1899 16 1017 1621 90851 21605 3.65443 3.65443 -127.571 -3.65443 0 0 701300. 2426.64 0.03 0.06 0.11 -1 -1 0.03 0.0232201 0.0203952 136 34 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_062.v common 2.57 vpr 62.96 MiB -1 -1 0.21 17880 1 0.05 -1 -1 30276 -1 -1 29 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64468 32 32 231 199 1 140 93 17 17 289 -1 unnamed_device 23.4 MiB 0.06 697 14793 4064 8312 2417 63.0 MiB 0.12 0.00 3.58247 -96.388 -3.58247 3.58247 0.34 0.000536007 0.000498696 0.0399856 0.0372164 -1 -1 -1 -1 30 1597 22 6.64007e+06 364182 526063. 1820.29 0.51 0.104438 0.0921129 22546 126617 -1 1300 17 603 1018 57376 14793 2.68557 2.68557 -89.2135 -2.68557 0 0 666494. 2306.21 0.03 0.05 0.09 -1 -1 0.03 0.0188683 0.0164977 103 3 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_063.v common 2.72 vpr 63.45 MiB -1 -1 0.13 18472 1 0.03 -1 -1 30204 -1 -1 40 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64968 32 32 349 273 1 191 104 17 17 289 -1 unnamed_device 23.8 MiB 0.10 1247 19624 5520 11864 2240 63.4 MiB 0.19 0.00 5.68826 -140.03 -5.68826 5.68826 0.39 0.000705253 0.000655769 0.0593179 0.0551102 -1 -1 -1 -1 32 2366 18 6.64007e+06 502320 554710. 1919.41 0.54 0.139797 0.12415 22834 132086 -1 2129 14 824 1693 109078 25009 4.42708 4.42708 -129.323 -4.42708 0 0 701300. 2426.64 0.03 0.06 0.11 -1 -1 0.03 0.021665 0.0190537 147 29 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_064.v common 2.60 vpr 62.49 MiB -1 -1 0.22 17892 1 0.03 -1 -1 30152 -1 -1 23 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63992 32 32 247 207 1 147 87 17 17 289 -1 unnamed_device 23.2 MiB 0.07 838 15831 5106 8362 2363 62.5 MiB 0.13 0.00 3.5273 -107.609 -3.5273 3.5273 0.34 0.000557504 0.000519197 0.0480485 0.0446917 -1 -1 -1 -1 28 1874 20 6.64007e+06 288834 500653. 1732.36 0.55 0.114684 0.101665 21970 115934 -1 1689 20 1084 1860 116033 27873 2.77177 2.77177 -103.603 -2.77177 0 0 612192. 2118.31 0.03 0.06 0.11 -1 -1 0.03 0.0221893 0.0192968 107 3 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_065.v common 2.88 vpr 62.60 MiB -1 -1 0.26 18212 1 0.02 -1 -1 30088 -1 -1 38 30 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64100 30 32 278 235 1 147 100 17 17 289 -1 unnamed_device 23.5 MiB 0.11 893 14252 4195 7695 2362 62.6 MiB 0.12 0.00 4.06561 -110.624 -4.06561 4.06561 0.32 0.000598189 0.000554889 0.0387015 0.0359501 -1 -1 -1 -1 28 2003 16 6.64007e+06 477204 500653. 1732.36 0.52 0.105135 0.0927138 21970 115934 -1 1666 21 1086 2090 130293 30391 2.82057 2.82057 -103.094 -2.82057 0 0 612192. 2118.31 0.03 0.07 0.13 -1 -1 0.03 0.0242583 0.0209963 110 34 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_066.v common 2.80 vpr 62.91 MiB -1 -1 0.23 18388 1 0.03 -1 -1 30260 -1 -1 32 29 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64424 29 32 355 287 1 198 93 17 17 289 -1 unnamed_device 23.9 MiB 0.21 964 10173 2395 7060 718 62.9 MiB 0.11 0.00 4.65946 -131.109 -4.65946 4.65946 0.31 0.000693587 0.000645337 0.0360007 0.0334599 -1 -1 -1 -1 28 2771 28 6.64007e+06 401856 500653. 1732.36 0.68 0.125412 0.10974 21970 115934 -1 2174 20 1456 2237 139279 35165 3.62642 3.62642 -121.356 -3.62642 0 0 612192. 2118.31 0.03 0.07 0.10 -1 -1 0.03 0.0276567 0.0241107 146 62 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_067.v common 2.60 vpr 62.84 MiB -1 -1 0.17 18284 1 0.03 -1 -1 30432 -1 -1 27 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64348 32 32 358 289 1 175 91 17 17 289 -1 unnamed_device 23.8 MiB 0.11 925 11719 2758 8119 842 62.8 MiB 0.12 0.00 4.42033 -138.276 -4.42033 4.42033 0.32 0.00071589 0.000664168 0.0433359 0.0402562 -1 -1 -1 -1 32 2161 23 6.64007e+06 339066 554710. 1919.41 0.57 0.129395 0.113987 22834 132086 -1 1727 20 1284 1944 114196 28932 3.78702 3.78702 -131.455 -3.78702 0 0 701300. 2426.64 0.03 0.07 0.11 -1 -1 0.03 0.0279344 0.02439 135 54 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_068.v common 2.92 vpr 62.80 MiB -1 -1 0.21 18364 1 0.03 -1 -1 30232 -1 -1 34 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64304 32 32 353 285 1 181 98 17 17 289 -1 unnamed_device 23.8 MiB 0.14 1091 11798 3080 7487 1231 62.8 MiB 0.13 0.00 4.78258 -142.686 -4.78258 4.78258 0.32 0.000714923 0.00066408 0.0396764 0.0368336 -1 -1 -1 -1 32 2192 17 6.64007e+06 426972 554710. 1919.41 0.80 0.12021 0.105957 22834 132086 -1 2011 16 897 1626 93283 22441 3.62362 3.62362 -128.218 -3.62362 0 0 701300. 2426.64 0.03 0.06 0.11 -1 -1 0.03 0.0237017 0.020821 136 51 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_069.v common 2.70 vpr 62.63 MiB -1 -1 0.23 18024 1 0.03 -1 -1 30240 -1 -1 22 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64136 32 32 276 237 1 160 86 17 17 289 -1 unnamed_device 23.5 MiB 0.22 888 6701 1459 4931 311 62.6 MiB 0.08 0.00 4.75515 -130.083 -4.75515 4.75515 0.32 0.00061059 0.000568906 0.023214 0.021603 -1 -1 -1 -1 32 1842 19 6.64007e+06 276276 554710. 1919.41 0.51 0.0918828 0.0803618 22834 132086 -1 1618 15 639 896 58501 14060 3.29883 3.29883 -115.297 -3.29883 0 0 701300. 2426.64 0.03 0.04 0.11 -1 -1 0.03 0.0190421 0.0167372 107 34 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_070.v common 3.10 vpr 63.02 MiB -1 -1 0.24 18248 1 0.03 -1 -1 30368 -1 -1 25 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64532 31 32 319 272 1 169 88 17 17 289 -1 unnamed_device 23.9 MiB 0.18 793 16078 4554 9333 2191 63.0 MiB 0.15 0.00 4.00036 -122.569 -4.00036 4.00036 0.35 0.000662037 0.000616691 0.0553256 0.0514457 -1 -1 -1 -1 26 2534 43 6.64007e+06 313950 477104. 1650.88 0.88 0.155968 0.137486 21682 110474 -1 1828 21 1216 1787 118458 32053 3.24903 3.24903 -118.128 -3.24903 0 0 585099. 2024.56 0.03 0.07 0.09 -1 -1 0.03 0.0261712 0.0227742 117 64 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_071.v common 2.80 vpr 63.27 MiB -1 -1 0.23 18488 1 0.03 -1 -1 30384 -1 -1 36 30 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64788 30 32 329 273 1 166 98 17 17 289 -1 unnamed_device 23.5 MiB 0.10 943 16973 4825 9365 2783 63.3 MiB 0.16 0.00 3.65867 -98.2101 -3.65867 3.65867 0.36 0.000510479 0.000470115 0.0491293 0.0452299 -1 -1 -1 -1 26 2242 21 6.64007e+06 452088 477104. 1650.88 0.67 0.122474 0.109111 21682 110474 -1 1867 18 917 1784 103434 25819 2.77377 2.77377 -96.2306 -2.77377 0 0 585099. 2024.56 0.03 0.06 0.09 -1 -1 0.03 0.0239279 0.0208916 128 57 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_072.v common 2.56 vpr 62.76 MiB -1 -1 0.22 18036 1 0.03 -1 -1 30368 -1 -1 39 28 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64268 28 32 277 229 1 155 99 17 17 289 -1 unnamed_device 23.6 MiB 0.07 826 16971 4935 9183 2853 62.8 MiB 0.13 0.00 4.21293 -101.023 -4.21293 4.21293 0.33 0.000596135 0.000555002 0.0460918 0.0427488 -1 -1 -1 -1 28 1907 22 6.64007e+06 489762 500653. 1732.36 0.56 0.117192 0.10326 21970 115934 -1 1601 16 895 1627 90491 22777 3.47223 3.47223 -98.8073 -3.47223 0 0 612192. 2118.31 0.02 0.05 0.07 -1 -1 0.02 0.0195628 0.0171324 122 27 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_073.v common 2.69 vpr 62.73 MiB -1 -1 0.24 18280 1 0.03 -1 -1 30360 -1 -1 22 30 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64232 30 32 317 269 1 152 84 17 17 289 -1 unnamed_device 23.6 MiB 0.13 892 13809 4602 7006 2201 62.7 MiB 0.14 0.00 3.90078 -115.622 -3.90078 3.90078 0.33 0.000645832 0.000599449 0.050946 0.0472279 -1 -1 -1 -1 32 1908 21 6.64007e+06 276276 554710. 1919.41 0.55 0.126734 0.111982 22834 132086 -1 1778 20 1210 2120 133437 31075 2.88777 2.88777 -110.499 -2.88777 0 0 701300. 2426.64 0.03 0.07 0.11 -1 -1 0.03 0.0256155 0.0222677 115 63 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_074.v common 2.70 vpr 63.13 MiB -1 -1 0.23 18464 1 0.03 -1 -1 30084 -1 -1 26 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64644 32 32 335 282 1 184 90 17 17 289 -1 unnamed_device 24.2 MiB 0.20 1023 8934 2025 6373 536 63.1 MiB 0.10 0.00 4.0127 -132.01 -4.0127 4.0127 0.32 0.000666492 0.000619785 0.0319045 0.0296427 -1 -1 -1 -1 32 2101 18 6.64007e+06 326508 554710. 1919.41 0.51 0.108114 0.0949131 22834 132086 -1 1856 21 999 1501 89591 21554 3.43523 3.43523 -127.963 -3.43523 0 0 701300. 2426.64 0.03 0.06 0.11 -1 -1 0.03 0.0271682 0.0236631 127 65 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_075.v common 2.58 vpr 62.80 MiB -1 -1 0.24 17836 1 0.03 -1 -1 30480 -1 -1 37 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64312 31 32 293 230 1 175 100 17 17 289 -1 unnamed_device 23.7 MiB 0.07 1062 14252 3702 8136 2414 62.8 MiB 0.13 0.00 4.61901 -130.215 -4.61901 4.61901 0.32 0.00064055 0.000596427 0.041619 0.0387028 -1 -1 -1 -1 32 2215 21 6.64007e+06 464646 554710. 1919.41 0.54 0.116815 0.103213 22834 132086 -1 1898 17 890 1636 102846 23210 3.48123 3.48123 -116.227 -3.48123 0 0 701300. 2426.64 0.03 0.06 0.11 -1 -1 0.03 0.0230624 0.0202398 134 4 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_076.v common 2.84 vpr 62.77 MiB -1 -1 0.24 18520 1 0.03 -1 -1 30404 -1 -1 30 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64272 32 32 350 275 1 209 94 17 17 289 -1 unnamed_device 23.7 MiB 0.24 1264 11809 2906 7681 1222 62.8 MiB 0.15 0.00 5.33287 -167.061 -5.33287 5.33287 0.32 0.000711346 0.000661641 0.0419297 0.0389822 -1 -1 -1 -1 32 2723 21 6.64007e+06 376740 554710. 1919.41 0.55 0.127635 0.112686 22834 132086 -1 2415 23 1397 2174 128896 30488 4.21368 4.21368 -151.829 -4.21368 0 0 701300. 2426.64 0.03 0.08 0.13 -1 -1 0.03 0.0317654 0.0277194 151 34 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_077.v common 2.72 vpr 62.87 MiB -1 -1 0.26 18388 1 0.03 -1 -1 30268 -1 -1 37 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64380 32 32 385 308 1 182 101 17 17 289 -1 unnamed_device 23.8 MiB 0.13 1057 12556 3111 8883 562 62.9 MiB 0.13 0.00 4.57304 -141.272 -4.57304 4.57304 0.31 0.000744694 0.000690509 0.0434462 0.0401677 -1 -1 -1 -1 32 2404 16 6.64007e+06 464646 554710. 1919.41 0.58 0.125349 0.110487 22834 132086 -1 2052 22 1123 2086 137496 32021 3.42483 3.42483 -130.344 -3.42483 0 0 701300. 2426.64 0.03 0.07 0.11 -1 -1 0.03 0.029294 0.0260026 143 65 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_078.v common 3.17 vpr 63.51 MiB -1 -1 0.26 18504 1 0.03 -1 -1 30284 -1 -1 43 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65036 32 32 387 309 1 190 107 17 17 289 -1 unnamed_device 23.8 MiB 0.12 1171 22877 7507 12807 2563 63.5 MiB 0.23 0.00 4.50063 -140.698 -4.50063 4.50063 0.32 0.000749823 0.000696543 0.0707641 0.0655291 -1 -1 -1 -1 28 2865 24 6.64007e+06 539994 500653. 1732.36 0.90 0.167847 0.148857 21970 115934 -1 2354 20 1509 2767 177950 42009 3.57023 3.57023 -133.916 -3.57023 0 0 612192. 2118.31 0.03 0.08 0.12 -1 -1 0.03 0.0272378 0.0238892 147 65 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_079.v common 2.60 vpr 62.66 MiB -1 -1 0.23 18124 1 0.03 -1 -1 30212 -1 -1 21 30 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64160 30 32 272 232 1 147 83 17 17 289 -1 unnamed_device 23.3 MiB 0.11 713 13403 2936 9754 713 62.7 MiB 0.13 0.00 3.93272 -112.862 -3.93272 3.93272 0.31 0.000588042 0.00054711 0.0455557 0.0424041 -1 -1 -1 -1 32 1671 23 6.64007e+06 263718 554710. 1919.41 0.52 0.115722 0.102349 22834 132086 -1 1388 20 927 1637 89572 23518 2.75957 2.75957 -98.8479 -2.75957 0 0 701300. 2426.64 0.03 0.06 0.11 -1 -1 0.03 0.0231273 0.0201238 109 34 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_080.v common 3.00 vpr 62.96 MiB -1 -1 0.15 18372 1 0.03 -1 -1 30400 -1 -1 27 30 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64476 30 32 375 299 1 187 89 17 17 289 -1 unnamed_device 23.9 MiB 0.14 908 7613 1681 5486 446 63.0 MiB 0.10 0.00 4.75724 -137.047 -4.75724 4.75724 0.33 0.000703115 0.000651164 0.0304087 0.0282733 -1 -1 -1 -1 30 2039 24 6.64007e+06 339066 526063. 1820.29 0.56 0.119796 0.104771 22546 126617 -1 1732 22 1329 2144 119677 29049 3.74463 3.74463 -129.51 -3.74463 0 0 666494. 2306.21 0.03 0.07 0.11 -1 -1 0.03 0.0308961 0.0269019 147 63 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_081.v common 3.26 vpr 62.89 MiB -1 -1 0.25 18264 1 0.03 -1 -1 30268 -1 -1 30 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64404 32 32 340 270 1 200 94 17 17 289 -1 unnamed_device 23.9 MiB 0.15 1241 16708 5056 9561 2091 62.9 MiB 0.17 0.00 5.42161 -159.498 -5.42161 5.42161 0.32 0.000693499 0.000644788 0.0566391 0.0526498 -1 -1 -1 -1 26 3049 24 6.64007e+06 376740 477104. 1650.88 0.83 0.146388 0.129818 21682 110474 -1 2440 19 1446 2309 162344 36787 4.11869 4.11869 -142.164 -4.11869 0 0 585099. 2024.56 0.03 0.08 0.09 -1 -1 0.03 0.0265234 0.0231856 145 34 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_082.v common 3.11 vpr 62.77 MiB -1 -1 0.22 18420 1 0.03 -1 -1 30276 -1 -1 35 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64272 31 32 340 275 1 196 98 17 17 289 -1 unnamed_device 23.8 MiB 0.19 1123 13148 3656 8360 1132 62.8 MiB 0.13 0.00 5.23915 -149.423 -5.23915 5.23915 0.31 0.000682659 0.00063482 0.0427424 0.0397167 -1 -1 -1 -1 32 2371 21 6.64007e+06 439530 554710. 1919.41 0.54 0.123323 0.108794 22834 132086 -1 2007 20 1118 1785 91779 24235 4.30908 4.30908 -140.1 -4.30908 0 0 701300. 2426.64 0.03 0.06 0.11 -1 -1 0.03 0.0272733 0.0238268 151 47 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_083.v common 2.71 vpr 62.93 MiB -1 -1 0.16 18440 1 0.03 -1 -1 30492 -1 -1 38 30 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64440 30 32 377 310 1 177 100 17 17 289 -1 unnamed_device 23.9 MiB 0.22 1096 17964 4891 10960 2113 62.9 MiB 0.18 0.00 4.57324 -135.589 -4.57324 4.57324 0.32 0.000715024 0.000664031 0.0584301 0.0540634 -1 -1 -1 -1 32 2160 21 6.64007e+06 477204 554710. 1919.41 0.53 0.142222 0.125744 22834 132086 -1 1911 16 768 1346 77420 19006 3.06843 3.06843 -112.699 -3.06843 0 0 701300. 2426.64 0.03 0.06 0.11 -1 -1 0.03 0.0244076 0.0214461 144 83 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_084.v common 3.14 vpr 62.87 MiB -1 -1 0.23 18512 1 0.03 -1 -1 30348 -1 -1 25 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64376 32 32 365 294 1 185 89 17 17 289 -1 unnamed_device 23.8 MiB 0.13 1118 14939 4252 9072 1615 62.9 MiB 0.17 0.00 5.0668 -145.309 -5.0668 5.0668 0.32 0.000833667 0.000783031 0.0571683 0.0531632 -1 -1 -1 -1 26 2741 21 6.64007e+06 313950 477104. 1650.88 0.64 0.143122 0.126843 21682 110474 -1 2256 19 1322 2385 155087 35915 4.12322 4.12322 -139.521 -4.12322 0 0 585099. 2024.56 0.03 0.07 0.09 -1 -1 0.03 0.0275269 0.0240294 141 57 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_085.v common 2.60 vpr 63.55 MiB -1 -1 0.22 18320 1 0.02 -1 -1 30212 -1 -1 39 29 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65072 29 32 378 310 1 177 100 17 17 289 -1 unnamed_device 23.9 MiB 0.12 968 16340 4628 9035 2677 63.5 MiB 0.15 0.00 4.31346 -118.41 -4.31346 4.31346 0.31 0.000717563 0.00066644 0.0530808 0.0492922 -1 -1 -1 -1 32 1959 22 6.64007e+06 489762 554710. 1919.41 0.57 0.138299 0.122133 22834 132086 -1 1772 19 1170 1904 102752 26149 2.95097 2.95097 -104.469 -2.95097 0 0 701300. 2426.64 0.03 0.06 0.11 -1 -1 0.03 0.0278536 0.0243207 137 85 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_086.v common 2.35 vpr 62.90 MiB -1 -1 0.10 17788 1 0.03 -1 -1 30348 -1 -1 19 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64408 32 32 243 205 1 139 83 17 17 289 -1 unnamed_device 23.3 MiB 0.06 738 6563 1553 4423 587 62.9 MiB 0.07 0.00 3.86158 -110.86 -3.86158 3.86158 0.32 0.000556995 0.000519146 0.022238 0.0207307 -1 -1 -1 -1 28 1730 21 6.64007e+06 238602 500653. 1732.36 0.48 0.0882531 0.0772055 21970 115934 -1 1495 19 780 1190 73911 18771 2.91797 2.91797 -103.429 -2.91797 0 0 612192. 2118.31 0.03 0.05 0.10 -1 -1 0.03 0.0189262 0.0167874 99 3 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_087.v common 2.89 vpr 62.98 MiB -1 -1 0.25 18504 1 0.03 -1 -1 30276 -1 -1 35 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64492 32 32 373 302 1 176 99 17 17 289 -1 unnamed_device 23.9 MiB 0.20 1044 14235 4068 7633 2534 63.0 MiB 0.16 0.00 4.71503 -140.381 -4.71503 4.71503 0.32 0.000736638 0.000684303 0.0542958 0.0503407 -1 -1 -1 -1 32 2187 20 6.64007e+06 439530 554710. 1919.41 0.64 0.16213 0.14341 22834 132086 -1 1906 20 1054 1793 106697 26383 3.63163 3.63163 -128.238 -3.63163 0 0 701300. 2426.64 0.03 0.07 0.11 -1 -1 0.03 0.0285345 0.0249014 135 65 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_088.v common 2.91 vpr 62.84 MiB -1 -1 0.16 18280 1 0.03 -1 -1 30280 -1 -1 25 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64344 32 32 397 314 1 196 89 17 17 289 -1 unnamed_device 23.8 MiB 0.15 1159 10979 2643 7096 1240 62.8 MiB 0.13 0.00 4.8332 -152.333 -4.8332 4.8332 0.31 0.000764668 0.000709401 0.0465756 0.0431972 -1 -1 -1 -1 32 2514 24 6.64007e+06 313950 554710. 1919.41 0.63 0.140961 0.124202 22834 132086 -1 2265 22 1721 2851 169988 41091 3.69343 3.69343 -141.542 -3.69343 0 0 701300. 2426.64 0.03 0.08 0.11 -1 -1 0.03 0.0324477 0.0282823 155 65 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_089.v common 2.86 vpr 62.62 MiB -1 -1 0.23 18156 1 0.03 -1 -1 30408 -1 -1 25 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64128 32 32 269 231 1 170 89 17 17 289 -1 unnamed_device 23.6 MiB 0.19 1035 13157 3525 7788 1844 62.6 MiB 0.12 0.00 4.01361 -116.472 -4.01361 4.01361 0.32 0.000582519 0.00054112 0.0410765 0.0382132 -1 -1 -1 -1 26 2306 22 6.64007e+06 313950 477104. 1650.88 0.58 0.111377 0.0982278 21682 110474 -1 1974 17 851 1156 77563 18531 3.24903 3.24903 -111.931 -3.24903 0 0 585099. 2024.56 0.03 0.05 0.09 -1 -1 0.03 0.0206446 0.0180703 117 29 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_090.v common 2.45 vpr 62.66 MiB -1 -1 0.23 17704 1 0.03 -1 -1 30328 -1 -1 23 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64168 31 32 245 205 1 150 86 17 17 289 -1 unnamed_device 23.4 MiB 0.06 846 9725 2485 6513 727 62.7 MiB 0.09 0.00 3.92438 -112.401 -3.92438 3.92438 0.32 0.000560266 0.000521845 0.0308085 0.0286528 -1 -1 -1 -1 26 1894 21 6.64007e+06 288834 477104. 1650.88 0.49 0.0963775 0.0845534 21682 110474 -1 1562 19 974 1584 90066 21476 3.02517 3.02517 -107.603 -3.02517 0 0 585099. 2024.56 0.03 0.05 0.09 -1 -1 0.03 0.0214189 0.018672 110 4 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_091.v common 2.92 vpr 63.04 MiB -1 -1 0.25 18416 1 0.03 -1 -1 30548 -1 -1 31 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64548 32 32 348 274 1 211 95 17 17 289 -1 unnamed_device 23.9 MiB 0.21 1202 16295 5063 8969 2263 63.0 MiB 0.17 0.00 4.9923 -151.371 -4.9923 4.9923 0.32 0.000724101 0.000665988 0.0564527 0.0523689 -1 -1 -1 -1 28 2863 20 6.64007e+06 389298 500653. 1732.36 0.61 0.14137 0.125434 21970 115934 -1 2461 21 1706 2305 171976 40971 4.39829 4.39829 -154.305 -4.39829 0 0 612192. 2118.31 0.03 0.08 0.10 -1 -1 0.03 0.0290397 0.0253404 151 34 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_092.v common 3.39 vpr 62.80 MiB -1 -1 0.26 18292 1 0.03 -1 -1 30352 -1 -1 37 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64308 32 32 356 289 1 202 101 17 17 289 -1 unnamed_device 23.8 MiB 0.57 1281 17021 5038 9582 2401 62.8 MiB 0.17 0.00 5.34218 -153.803 -5.34218 5.34218 0.31 0.000703995 0.000654128 0.0536258 0.0497985 -1 -1 -1 -1 26 2998 23 6.64007e+06 464646 477104. 1650.88 0.69 0.143557 0.127182 21682 110474 -1 2507 20 1387 2164 152866 35335 4.42928 4.42928 -150.345 -4.42928 0 0 585099. 2024.56 0.03 0.07 0.09 -1 -1 0.03 0.0279346 0.0244075 157 56 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_093.v common 2.83 vpr 63.50 MiB -1 -1 0.22 18104 1 0.03 -1 -1 30128 -1 -1 43 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65028 32 32 349 260 1 204 107 17 17 289 -1 unnamed_device 23.8 MiB 0.08 1267 17817 5114 10804 1899 63.5 MiB 0.17 0.00 5.50127 -148.27 -5.50127 5.50127 0.32 0.000728707 0.000677247 0.0534885 0.0496414 -1 -1 -1 -1 26 3165 21 6.64007e+06 539994 477104. 1650.88 0.75 0.150128 0.133373 21682 110474 -1 2620 21 1637 3007 196047 46131 4.58248 4.58248 -146.607 -4.58248 0 0 585099. 2024.56 0.03 0.09 0.09 -1 -1 0.03 0.0303632 0.0265432 162 3 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_094.v common 2.47 vpr 63.33 MiB -1 -1 0.16 18544 1 0.03 -1 -1 30320 -1 -1 35 30 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64852 30 32 316 264 1 162 97 17 17 289 -1 unnamed_device 23.6 MiB 0.11 960 10531 2688 6948 895 63.3 MiB 0.10 0.00 3.53527 -104.629 -3.53527 3.53527 0.31 0.000642209 0.000597715 0.0327903 0.0304946 -1 -1 -1 -1 32 2029 21 6.64007e+06 439530 554710. 1919.41 0.53 0.108188 0.0949357 22834 132086 -1 1762 19 983 1688 92821 22824 2.84297 2.84297 -99.6625 -2.84297 0 0 701300. 2426.64 0.03 0.06 0.11 -1 -1 0.03 0.0302453 0.0267024 124 52 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_095.v common 2.41 vpr 62.96 MiB -1 -1 0.21 18040 1 0.04 -1 -1 30284 -1 -1 25 27 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64472 27 32 255 219 1 132 84 17 17 289 -1 unnamed_device 23.4 MiB 0.06 787 11430 3535 6029 1866 63.0 MiB 0.09 0.00 3.4653 -96.8105 -3.4653 3.4653 0.31 0.000547949 0.000510433 0.0361061 0.0336224 -1 -1 -1 -1 26 1657 21 6.64007e+06 313950 477104. 1650.88 0.51 0.100455 0.088336 21682 110474 -1 1422 19 813 1258 87749 20598 2.78277 2.78277 -93.1625 -2.78277 0 0 585099. 2024.56 0.03 0.05 0.09 -1 -1 0.03 0.0211257 0.0183388 100 34 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_096.v common 3.07 vpr 63.09 MiB -1 -1 0.27 18656 1 0.03 -1 -1 30364 -1 -1 34 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64600 32 32 421 327 1 232 98 17 17 289 -1 unnamed_device 24.1 MiB 0.23 1365 11573 2824 7922 827 63.1 MiB 0.14 0.00 4.52455 -140.933 -4.52455 4.52455 0.32 0.000801412 0.000743847 0.044303 0.0411451 -1 -1 -1 -1 28 3529 23 6.64007e+06 426972 500653. 1732.36 0.77 0.146905 0.129572 21970 115934 -1 2746 20 1678 2838 184848 42937 3.85503 3.85503 -135.927 -3.85503 0 0 612192. 2118.31 0.03 0.08 0.10 -1 -1 0.03 0.0325576 0.02856 176 65 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_097.v common 2.99 vpr 62.80 MiB -1 -1 0.26 18276 1 0.04 -1 -1 30228 -1 -1 27 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64304 31 32 365 296 1 193 90 17 17 289 -1 unnamed_device 23.8 MiB 0.39 1024 16371 4802 8876 2693 62.8 MiB 0.16 0.00 5.51727 -159.864 -5.51727 5.51727 0.34 0.000713016 0.000661963 0.0620014 0.0576154 -1 -1 -1 -1 32 2133 17 6.64007e+06 339066 554710. 1919.41 0.54 0.143857 0.128081 22834 132086 -1 1963 20 1100 1863 103525 26373 4.38608 4.38608 -146.744 -4.38608 0 0 701300. 2426.64 0.03 0.08 0.12 -1 -1 0.03 0.0371557 0.0323725 151 64 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_098.v common 2.77 vpr 62.68 MiB -1 -1 0.25 18380 1 0.04 -1 -1 30364 -1 -1 23 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64180 32 32 331 280 1 174 87 17 17 289 -1 unnamed_device 23.5 MiB 0.29 989 13335 4742 6776 1817 62.7 MiB 0.13 0.00 4.37915 -137.641 -4.37915 4.37915 0.32 0.000658109 0.000611873 0.048245 0.0448417 -1 -1 -1 -1 32 1903 19 6.64007e+06 288834 554710. 1919.41 0.52 0.124693 0.110299 22834 132086 -1 1693 13 628 883 56758 13715 3.17522 3.17522 -121.439 -3.17522 0 0 701300. 2426.64 0.03 0.04 0.11 -1 -1 0.03 0.0196211 0.017333 130 65 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_099.v common 2.90 vpr 63.40 MiB -1 -1 0.24 18384 1 0.03 -1 -1 30344 -1 -1 36 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64924 32 32 326 263 1 176 100 17 17 289 -1 unnamed_device 23.6 MiB 0.09 1105 13092 3416 8740 936 63.4 MiB 0.13 0.00 5.28888 -136.917 -5.28888 5.28888 0.32 0.000682744 0.000636151 0.0406021 0.0377399 -1 -1 -1 -1 26 2483 21 6.64007e+06 452088 477104. 1650.88 0.57 0.121401 0.10708 21682 110474 -1 2105 18 1009 1726 98465 23986 3.85982 3.85982 -125.513 -3.85982 0 0 585099. 2024.56 0.03 0.06 0.09 -1 -1 0.03 0.0247052 0.0216352 133 34 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_100.v common 3.03 vpr 63.57 MiB -1 -1 0.24 18388 1 0.03 -1 -1 30372 -1 -1 38 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65096 31 32 373 294 1 196 101 17 17 289 -1 unnamed_device 23.9 MiB 0.12 1122 12321 3316 8274 731 63.6 MiB 0.13 0.00 4.92332 -128.094 -4.92332 4.92332 0.34 0.00073579 0.000681292 0.0411424 0.0381693 -1 -1 -1 -1 26 2511 21 6.64007e+06 477204 477104. 1650.88 0.52 0.127987 0.112686 21682 110474 -1 2210 19 1199 1943 114142 28132 3.83382 3.83382 -125.259 -3.83382 0 0 585099. 2024.56 0.03 0.07 0.08 -1 -1 0.03 0.0283169 0.0247367 151 50 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_101.v common 2.79 vpr 63.06 MiB -1 -1 0.21 18440 1 0.03 -1 -1 30380 -1 -1 36 30 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64576 30 32 325 268 1 171 98 17 17 289 -1 unnamed_device 23.9 MiB 0.12 937 16973 5746 8109 3118 63.1 MiB 0.15 0.00 3.65167 -103.348 -3.65167 3.65167 0.31 0.000656815 0.000608992 0.0517459 0.048035 -1 -1 -1 -1 30 2391 26 6.64007e+06 452088 526063. 1820.29 0.71 0.136006 0.120034 22546 126617 -1 1842 21 1098 2007 113299 28167 2.97317 2.97317 -100.808 -2.97317 0 0 666494. 2306.21 0.03 0.07 0.10 -1 -1 0.03 0.0272394 0.0237126 130 51 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_102.v common 2.84 vpr 62.82 MiB -1 -1 0.16 18264 1 0.03 -1 -1 30432 -1 -1 31 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64328 32 32 350 275 1 215 95 17 17 289 -1 unnamed_device 23.8 MiB 0.20 1238 11759 3130 7729 900 62.8 MiB 0.14 0.00 5.12264 -157.121 -5.12264 5.12264 0.31 0.000705322 0.000655159 0.0413169 0.0383528 -1 -1 -1 -1 30 2872 20 6.64007e+06 389298 526063. 1820.29 0.68 0.124517 0.109659 22546 126617 -1 2332 20 1512 2420 128301 30561 4.07588 4.07588 -141.785 -4.07588 0 0 666494. 2306.21 0.03 0.07 0.12 -1 -1 0.03 0.0280318 0.024467 157 34 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_103.v common 2.75 vpr 63.51 MiB -1 -1 0.16 18348 1 0.03 -1 -1 30076 -1 -1 42 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65036 32 32 386 307 1 195 106 17 17 289 -1 unnamed_device 23.8 MiB 0.13 1118 16856 4639 9867 2350 63.5 MiB 0.19 0.00 4.29207 -131.028 -4.29207 4.29207 0.31 0.000745147 0.000691805 0.0590137 0.0547729 -1 -1 -1 -1 28 2771 25 6.64007e+06 527436 500653. 1732.36 0.64 0.152811 0.135193 21970 115934 -1 2232 22 1473 2458 171773 41912 3.24756 3.24756 -122.119 -3.24756 0 0 612192. 2118.31 0.03 0.09 0.10 -1 -1 0.03 0.0326766 0.0284409 151 62 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_104.v common 2.35 vpr 62.91 MiB -1 -1 0.23 18128 1 0.02 -1 -1 30284 -1 -1 19 29 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64416 29 32 269 229 1 129 80 17 17 289 -1 unnamed_device 23.4 MiB 0.06 778 14184 4385 8482 1317 62.9 MiB 0.12 0.00 4.07075 -112.667 -4.07075 4.07075 0.32 0.000580699 0.000540923 0.0493007 0.0459016 -1 -1 -1 -1 28 1504 20 6.64007e+06 238602 500653. 1732.36 0.47 0.116766 0.103529 21970 115934 -1 1377 18 774 1155 75021 18193 2.75077 2.75077 -97.232 -2.75077 0 0 612192. 2118.31 0.03 0.05 0.07 -1 -1 0.03 0.020975 0.0182859 93 34 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_105.v common 2.71 vpr 62.80 MiB -1 -1 0.24 18332 1 0.03 -1 -1 30448 -1 -1 25 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64312 32 32 310 266 1 176 89 17 17 289 -1 unnamed_device 23.7 MiB 0.18 1008 13949 3776 8315 1858 62.8 MiB 0.13 0.00 4.57978 -129.405 -4.57978 4.57978 0.32 0.00063151 0.000586933 0.0463927 0.0431298 -1 -1 -1 -1 26 2049 24 6.64007e+06 313950 477104. 1650.88 0.57 0.124264 0.109558 21682 110474 -1 1787 23 1119 1542 99717 24464 3.33023 3.33023 -121.141 -3.33023 0 0 585099. 2024.56 0.03 0.06 0.09 -1 -1 0.03 0.0277593 0.0240193 122 58 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_106.v common 2.76 vpr 62.94 MiB -1 -1 0.23 18416 1 0.03 -1 -1 30536 -1 -1 42 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64452 31 32 326 261 1 177 105 17 17 289 -1 unnamed_device 23.9 MiB 0.07 1024 15666 4440 8933 2293 62.9 MiB 0.14 0.00 4.80044 -126.61 -4.80044 4.80044 0.32 0.000665995 0.000619056 0.0448001 0.0415297 -1 -1 -1 -1 26 2648 22 6.64007e+06 527436 477104. 1650.88 0.79 0.129778 0.11446 21682 110474 -1 2117 22 1383 2618 174651 40558 3.69763 3.69763 -123.591 -3.69763 0 0 585099. 2024.56 0.03 0.08 0.09 -1 -1 0.03 0.028875 0.0250672 137 33 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_107.v common 2.68 vpr 62.62 MiB -1 -1 0.20 18064 1 0.03 -1 -1 30432 -1 -1 27 29 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64124 29 32 262 224 1 168 88 17 17 289 -1 unnamed_device 23.5 MiB 0.20 847 8863 2227 5955 681 62.6 MiB 0.09 0.00 4.31301 -113.107 -4.31301 4.31301 0.32 0.000579564 0.000534241 0.0276143 0.025686 -1 -1 -1 -1 26 2115 21 6.64007e+06 339066 477104. 1650.88 0.58 0.0947231 0.0829346 21682 110474 -1 1780 21 1043 1394 90173 22397 3.32203 3.32203 -108.26 -3.32203 0 0 585099. 2024.56 0.02 0.03 0.06 -1 -1 0.02 0.0130991 0.0115568 116 31 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_108.v common 2.97 vpr 62.67 MiB -1 -1 0.21 18200 1 0.03 -1 -1 30128 -1 -1 19 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64176 32 32 278 238 1 148 83 17 17 289 -1 unnamed_device 23.6 MiB 0.16 785 12683 4483 5881 2319 62.7 MiB 0.12 0.00 3.88358 -117.678 -3.88358 3.88358 0.32 0.00060376 0.000561743 0.0445389 0.0414623 -1 -1 -1 -1 26 2436 37 6.64007e+06 238602 477104. 1650.88 0.89 0.131629 0.116039 21682 110474 -1 1800 19 1200 1979 139267 34801 3.02517 3.02517 -113.385 -3.02517 0 0 585099. 2024.56 0.03 0.07 0.09 -1 -1 0.03 0.0227137 0.0197715 111 34 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_109.v common 2.66 vpr 63.21 MiB -1 -1 0.26 18260 1 0.03 -1 -1 30432 -1 -1 40 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64732 31 32 373 300 1 181 103 17 17 289 -1 unnamed_device 24.2 MiB 0.12 994 11671 2882 8064 725 63.2 MiB 0.12 0.00 4.09378 -121.668 -4.09378 4.09378 0.32 0.000726427 0.000674778 0.0377137 0.034953 -1 -1 -1 -1 26 2376 23 6.64007e+06 502320 477104. 1650.88 0.55 0.125439 0.109976 21682 110474 -1 1958 22 1532 2565 145610 36094 3.06217 3.06217 -117.244 -3.06217 0 0 585099. 2024.56 0.05 0.08 0.10 -1 -1 0.05 0.0315397 0.0275332 141 64 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_110.v common 2.73 vpr 62.66 MiB -1 -1 0.23 18040 1 0.03 -1 -1 30328 -1 -1 25 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64164 31 32 265 230 1 163 88 17 17 289 -1 unnamed_device 23.7 MiB 0.16 891 10033 2595 6630 808 62.7 MiB 0.10 0.00 4.05756 -122.47 -4.05756 4.05756 0.32 0.000576971 0.000536748 0.0317137 0.029489 -1 -1 -1 -1 26 2157 24 6.64007e+06 313950 477104. 1650.88 0.58 0.107628 0.0941218 21682 110474 -1 1791 17 1028 1508 93693 23016 3.14183 3.14183 -112.031 -3.14183 0 0 585099. 2024.56 0.03 0.08 0.09 -1 -1 0.03 0.0322542 0.0280416 115 34 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_111.v common 2.61 vpr 62.85 MiB -1 -1 0.23 18464 1 0.03 -1 -1 30032 -1 -1 37 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64356 32 32 349 286 1 171 101 17 17 289 -1 unnamed_device 23.9 MiB 0.12 928 11851 2930 8165 756 62.8 MiB 0.12 0.00 3.6645 -107.626 -3.6645 3.6645 0.32 0.000692969 0.000644427 0.0379377 0.035255 -1 -1 -1 -1 32 2115 19 6.64007e+06 464646 554710. 1919.41 0.53 0.122566 0.10828 22834 132086 -1 1665 19 935 1662 86651 22815 2.90897 2.90897 -104.818 -2.90897 0 0 701300. 2426.64 0.03 0.06 0.11 -1 -1 0.03 0.0268623 0.0234903 131 57 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_112.v common 2.93 vpr 63.59 MiB -1 -1 0.27 18448 1 0.03 -1 -1 30300 -1 -1 36 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65116 31 32 396 325 1 183 99 17 17 289 -1 unnamed_device 23.9 MiB 0.22 976 13095 3017 8881 1197 63.6 MiB 0.16 0.00 4.0221 -123.818 -4.0221 4.0221 0.32 0.000756213 0.000702112 0.0516439 0.047975 -1 -1 -1 -1 30 2145 22 6.64007e+06 452088 526063. 1820.29 0.63 0.143583 0.126812 22546 126617 -1 1877 17 1096 1732 88550 22588 3.14957 3.14957 -120.621 -3.14957 0 0 666494. 2306.21 0.03 0.06 0.10 -1 -1 0.03 0.0260509 0.0228149 145 91 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_113.v common 2.56 vpr 62.58 MiB -1 -1 0.23 18156 1 0.03 -1 -1 30280 -1 -1 20 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64084 32 32 303 262 1 150 84 17 17 289 -1 unnamed_device 23.5 MiB 0.10 960 12162 3264 7675 1223 62.6 MiB 0.11 0.00 3.3869 -105.779 -3.3869 3.3869 0.32 0.000614672 0.000570831 0.0427904 0.0397298 -1 -1 -1 -1 30 1894 19 6.64007e+06 251160 526063. 1820.29 0.50 0.116751 0.103215 22546 126617 -1 1629 18 769 1207 61799 15365 2.74977 2.74977 -103.907 -2.74977 0 0 666494. 2306.21 0.03 0.05 0.12 -1 -1 0.03 0.0225046 0.0195903 111 57 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_114.v common 2.56 vpr 62.65 MiB -1 -1 0.23 18312 1 0.02 -1 -1 30292 -1 -1 26 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64152 32 32 290 244 1 177 90 17 17 289 -1 unnamed_device 23.5 MiB 0.19 925 8532 1785 6264 483 62.6 MiB 0.09 0.00 4.36984 -131.165 -4.36984 4.36984 0.31 0.00061324 0.000570288 0.0280339 0.026075 -1 -1 -1 -1 28 2708 24 6.64007e+06 326508 500653. 1732.36 0.64 0.104096 0.0910882 21970 115934 -1 1954 20 1359 2003 122646 30886 3.38923 3.38923 -122.625 -3.38923 0 0 612192. 2118.31 0.02 0.04 0.07 -1 -1 0.02 0.0135228 0.0119375 124 34 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_115.v common 2.77 vpr 62.77 MiB -1 -1 0.23 18380 1 0.03 -1 -1 30208 -1 -1 28 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64276 32 32 318 257 1 194 92 17 17 289 -1 unnamed_device 23.8 MiB 0.22 1138 15617 4303 9234 2080 62.8 MiB 0.15 0.00 4.77964 -132.452 -4.77964 4.77964 0.34 0.000658273 0.000609711 0.0519544 0.0481265 -1 -1 -1 -1 32 2299 20 6.64007e+06 351624 554710. 1919.41 0.55 0.12943 0.114511 22834 132086 -1 2021 21 1045 1511 98148 22991 3.72382 3.72382 -126.429 -3.72382 0 0 701300. 2426.64 0.03 0.06 0.11 -1 -1 0.03 0.0269217 0.0234482 138 30 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_116.v common 2.61 vpr 63.38 MiB -1 -1 0.25 18340 1 0.03 -1 -1 30112 -1 -1 36 29 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64896 29 32 324 268 1 168 97 17 17 289 -1 unnamed_device 23.9 MiB 0.14 1027 8089 1720 5536 833 63.4 MiB 0.08 0.00 4.38084 -119.914 -4.38084 4.38084 0.31 0.00065193 0.000606249 0.0259897 0.0241864 -1 -1 -1 -1 28 2224 20 6.64007e+06 452088 500653. 1732.36 0.49 0.101951 0.0892092 21970 115934 -1 1875 18 849 1396 79670 19823 3.16663 3.16663 -107.118 -3.16663 0 0 612192. 2118.31 0.03 0.06 0.10 -1 -1 0.03 0.0240837 0.0210767 129 55 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_117.v common 3.04 vpr 63.07 MiB -1 -1 0.24 18336 1 0.03 -1 -1 30404 -1 -1 30 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64588 32 32 393 312 1 213 94 17 17 289 -1 unnamed_device 23.9 MiB 0.24 1101 8401 1796 6209 396 63.1 MiB 0.11 0.00 5.62095 -173.541 -5.62095 5.62095 0.31 0.00075665 0.000703659 0.0326673 0.0303426 -1 -1 -1 -1 28 2936 26 6.64007e+06 376740 500653. 1732.36 0.68 0.129571 0.11365 21970 115934 -1 2403 22 1682 2416 167600 40775 4.26009 4.26009 -154.42 -4.26009 0 0 612192. 2118.31 0.03 0.08 0.10 -1 -1 0.03 0.032093 0.0279958 159 65 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_118.v common 2.27 vpr 62.84 MiB -1 -1 0.15 17952 1 0.02 -1 -1 30144 -1 -1 21 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64348 31 32 229 197 1 138 84 17 17 289 -1 unnamed_device 23.3 MiB 0.06 878 12345 3107 8061 1177 62.8 MiB 0.10 0.00 3.46127 -102.488 -3.46127 3.46127 0.32 0.000540828 0.000503904 0.0378018 0.0352175 -1 -1 -1 -1 26 1836 20 6.64007e+06 263718 477104. 1650.88 0.46 0.0997432 0.0881038 21682 110474 -1 1648 19 828 1379 92032 22149 2.88697 2.88697 -102.774 -2.88697 0 0 585099. 2024.56 0.03 0.05 0.09 -1 -1 0.03 0.0204358 0.0177958 100 4 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_119.v common 2.71 vpr 63.67 MiB -1 -1 0.30 18344 1 0.03 -1 -1 30260 -1 -1 37 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65200 32 32 412 334 1 190 101 17 17 289 -1 unnamed_device 23.9 MiB 0.12 1132 12791 3491 8287 1013 63.7 MiB 0.15 0.00 4.42516 -144.482 -4.42516 4.42516 0.32 0.000777421 0.000722358 0.0449905 0.0417837 -1 -1 -1 -1 32 2175 23 6.64007e+06 464646 554710. 1919.41 0.56 0.138643 0.121972 22834 132086 -1 1928 20 1161 1813 106830 26306 3.76183 3.76183 -135.978 -3.76183 0 0 701300. 2426.64 0.03 0.07 0.11 -1 -1 0.03 0.0308308 0.0269198 146 90 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_120.v common 2.52 vpr 62.92 MiB -1 -1 0.16 18316 1 0.03 -1 -1 30184 -1 -1 18 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64428 32 32 376 318 1 155 82 17 17 289 -1 unnamed_device 23.7 MiB 0.14 961 14678 5153 7870 1655 62.9 MiB 0.15 0.00 3.5251 -126.262 -3.5251 3.5251 0.32 0.000716805 0.000665017 0.061699 0.0573065 -1 -1 -1 -1 32 1789 17 6.64007e+06 226044 554710. 1919.41 0.53 0.141368 0.125423 22834 132086 -1 1636 19 1061 1511 101615 23343 2.65957 2.65957 -115.251 -2.65957 0 0 701300. 2426.64 0.03 0.06 0.11 -1 -1 0.03 0.0272319 0.0237407 116 96 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_121.v common 2.68 vpr 63.50 MiB -1 -1 0.15 18392 1 0.03 -1 -1 30252 -1 -1 35 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65024 32 32 360 293 1 179 99 17 17 289 -1 unnamed_device 23.8 MiB 0.14 1040 16059 4498 9094 2467 63.5 MiB 0.16 0.00 4.08563 -122.248 -4.08563 4.08563 0.32 0.000711584 0.000660221 0.0536532 0.0496695 -1 -1 -1 -1 32 2147 19 6.64007e+06 439530 554710. 1919.41 0.54 0.135243 0.119692 22834 132086 -1 1808 17 868 1394 77233 19535 2.86797 2.86797 -103.409 -2.86797 0 0 701300. 2426.64 0.03 0.06 0.11 -1 -1 0.03 0.0262874 0.0231714 134 60 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_122.v common 3.76 vpr 63.12 MiB -1 -1 0.24 18356 1 0.05 -1 -1 30316 -1 -1 34 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64640 32 32 396 299 1 236 98 17 17 289 -1 unnamed_device 24.1 MiB 0.28 1248 18773 5780 9423 3570 63.1 MiB 0.20 0.00 6.37984 -185.995 -6.37984 6.37984 0.31 0.000780551 0.00072581 0.0680795 0.0632119 -1 -1 -1 -1 36 2761 19 6.64007e+06 426972 612192. 2118.31 1.34 0.222467 0.195692 23410 145293 -1 2234 16 1457 2063 137885 35563 4.99954 4.99954 -163.566 -4.99954 0 0 782063. 2706.10 0.03 0.07 0.12 -1 -1 0.03 0.0263971 0.0232455 177 34 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_123.v common 2.60 vpr 62.75 MiB -1 -1 0.13 18124 1 0.03 -1 -1 30072 -1 -1 22 30 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64252 30 32 224 207 1 138 84 17 17 289 -1 unnamed_device 23.3 MiB 0.14 875 9783 2760 6082 941 62.7 MiB 0.08 0.00 3.31687 -101.206 -3.31687 3.31687 0.32 0.000501429 0.000467021 0.028543 0.0265577 -1 -1 -1 -1 26 1635 15 6.64007e+06 276276 477104. 1650.88 0.53 0.0837799 0.0736315 21682 110474 -1 1407 13 573 768 44589 11004 2.27497 2.27497 -90.5889 -2.27497 0 0 585099. 2024.56 0.03 0.04 0.09 -1 -1 0.03 0.0147089 0.0129252 92 34 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_124.v common 2.45 vpr 62.72 MiB -1 -1 0.23 18136 1 0.03 -1 -1 30324 -1 -1 19 30 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64228 30 32 286 239 1 134 81 17 17 289 -1 unnamed_device 23.3 MiB 0.06 689 6731 1618 4756 357 62.7 MiB 0.08 0.00 4.09512 -115.35 -4.09512 4.09512 0.32 0.000599086 0.000557828 0.0252094 0.023468 -1 -1 -1 -1 30 1441 21 6.64007e+06 238602 526063. 1820.29 0.50 0.0996073 0.0873472 22546 126617 -1 1294 18 678 1174 70897 17025 2.86577 2.86577 -104.274 -2.86577 0 0 666494. 2306.21 0.03 0.05 0.11 -1 -1 0.03 0.0219962 0.0192113 95 34 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_125.v common 2.63 vpr 62.67 MiB -1 -1 0.22 18180 1 0.03 -1 -1 30216 -1 -1 26 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64172 32 32 296 247 1 157 90 17 17 289 -1 unnamed_device 23.6 MiB 0.08 942 12552 3467 7974 1111 62.7 MiB 0.12 0.00 3.49427 -115.718 -3.49427 3.49427 0.32 0.000632151 0.000578248 0.041451 0.0384616 -1 -1 -1 -1 32 2080 20 6.64007e+06 326508 554710. 1919.41 0.62 0.114609 0.101229 22834 132086 -1 1868 22 1056 2009 127408 29897 2.69957 2.69957 -109.166 -2.69957 0 0 701300. 2426.64 0.03 0.07 0.11 -1 -1 0.03 0.0268929 0.0233414 119 34 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_126.v common 2.61 vpr 62.79 MiB -1 -1 0.22 18028 1 0.03 -1 -1 30192 -1 -1 31 25 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64296 25 32 216 194 1 122 88 17 17 289 -1 unnamed_device 23.3 MiB 0.06 601 13543 4375 6504 2664 62.8 MiB 0.10 0.00 3.43127 -79.9 -3.43127 3.43127 0.32 0.000479119 0.000444893 0.0348322 0.0323139 -1 -1 -1 -1 32 1432 18 6.64007e+06 389298 554710. 1919.41 0.70 0.0896739 0.0790814 22834 132086 -1 1208 16 588 1034 67545 16020 2.66257 2.66257 -76.6177 -2.66257 0 0 701300. 2426.64 0.03 0.04 0.11 -1 -1 0.03 0.0163147 0.0142554 93 29 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_127.v common 2.82 vpr 63.04 MiB -1 -1 0.25 18376 1 0.03 -1 -1 30224 -1 -1 24 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64548 32 32 376 307 1 185 88 17 17 289 -1 unnamed_device 24.0 MiB 0.16 989 17053 6066 7937 3050 63.0 MiB 0.18 0.00 4.31092 -130.251 -4.31092 4.31092 0.31 0.000731429 0.000679409 0.0669288 0.0621536 -1 -1 -1 -1 32 2483 22 6.64007e+06 301392 554710. 1919.41 0.58 0.153804 0.136564 22834 132086 -1 2014 19 1216 2250 133235 32112 3.97023 3.97023 -123.415 -3.97023 0 0 701300. 2426.64 0.03 0.07 0.11 -1 -1 0.03 0.0284099 0.0246596 137 72 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_128.v common 2.87 vpr 62.98 MiB -1 -1 0.26 18340 1 0.03 -1 -1 30340 -1 -1 42 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64496 31 32 409 331 1 191 105 17 17 289 -1 unnamed_device 23.8 MiB 0.14 990 19124 5738 10202 3184 63.0 MiB 0.18 0.00 4.03784 -128.727 -4.03784 4.03784 0.32 0.000592896 0.000545424 0.0601703 0.0557054 -1 -1 -1 -1 30 2237 23 6.64007e+06 527436 526063. 1820.29 0.61 0.143789 0.127519 22546 126617 -1 1757 16 1113 1717 94449 22971 2.92383 2.92383 -113.587 -2.92383 0 0 666494. 2306.21 0.03 0.06 0.10 -1 -1 0.03 0.0263136 0.0230906 148 90 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_001.v common 2.83 vpr 63.59 MiB -1 -1 0.25 18348 1 0.03 -1 -1 30064 -1 -1 35 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65120 32 32 354 285 1 202 99 17 17 289 -1 unnamed_device 24.2 MiB 0.17 1293 16743 4634 10568 1541 63.6 MiB 0.10 0.00 5.566 -161.813 -5.566 5.566 0.34 0.000331358 0.000304875 0.025734 0.0237042 -1 -1 -1 -1 32 2763 22 6.65987e+06 443730 554710. 1919.41 0.57 0.112732 0.0983887 22834 132086 -1 2449 19 1084 1699 139737 30053 4.09762 4.09762 -142.938 -4.09762 0 0 701300. 2426.64 0.03 0.07 0.11 -1 -1 0.03 0.0279861 0.0245724 153 50 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_002.v common 2.75 vpr 63.43 MiB -1 -1 0.26 18392 1 0.03 -1 -1 30440 -1 -1 30 30 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64956 30 32 363 293 1 196 92 17 17 289 -1 unnamed_device 23.7 MiB 0.09 1161 17066 4950 10267 1849 63.4 MiB 0.18 0.00 4.92316 -142.534 -4.92316 4.92316 0.32 0.000711495 0.000661377 0.0607483 0.05633 -1 -1 -1 -1 32 2317 19 6.65987e+06 380340 554710. 1919.41 0.56 0.14224 0.126171 22834 132086 -1 2201 20 1285 1969 141789 31778 3.96643 3.96643 -135.327 -3.96643 0 0 701300. 2426.64 0.03 0.07 0.11 -1 -1 0.03 0.0286017 0.0250073 147 63 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_003.v common 2.92 vpr 62.58 MiB -1 -1 0.23 18252 1 0.03 -1 -1 30424 -1 -1 31 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64084 32 32 299 247 1 188 95 17 17 289 -1 unnamed_device 23.4 MiB 0.10 1005 7223 1515 5389 319 62.6 MiB 0.08 0.00 4.5072 -115.093 -4.5072 4.5072 0.32 0.000638459 0.000593954 0.023343 0.021723 -1 -1 -1 -1 26 2482 19 6.65987e+06 393018 477104. 1650.88 0.57 0.096452 0.084355 21682 110474 -1 2175 22 1225 1807 128173 38231 3.65077 3.65077 -115.591 -3.65077 0 0 585099. 2024.56 0.03 0.07 0.09 -1 -1 0.03 0.0283391 0.0248207 129 29 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_004.v common 2.43 vpr 63.12 MiB -1 -1 0.17 18364 1 0.04 -1 -1 30272 -1 -1 31 29 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64640 29 32 308 248 1 169 92 17 17 289 -1 unnamed_device 23.3 MiB 0.04 1008 16445 5063 9076 2306 63.1 MiB 0.16 0.00 4.28955 -115.789 -4.28955 4.28955 0.31 0.000630792 0.000586242 0.0527628 0.0490015 -1 -1 -1 -1 32 2107 21 6.65987e+06 393018 554710. 1919.41 0.54 0.127475 0.112807 22834 132086 -1 1923 24 1162 2468 162514 37920 3.42191 3.42191 -111.417 -3.42191 0 0 701300. 2426.64 0.03 0.08 0.11 -1 -1 0.03 0.0300343 0.0260368 132 31 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_005.v common 2.88 vpr 62.64 MiB -1 -1 0.23 18404 1 0.03 -1 -1 30412 -1 -1 28 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64144 32 32 336 268 1 174 92 17 17 289 -1 unnamed_device 23.6 MiB 0.06 926 17066 4722 10092 2252 62.6 MiB 0.18 0.00 4.32246 -124.084 -4.32246 4.32246 0.31 0.000682381 0.000633432 0.0584903 0.0542653 -1 -1 -1 -1 28 2659 35 6.65987e+06 354984 500653. 1732.36 0.85 0.156528 0.138194 21970 115934 -1 1952 22 1359 2592 155691 39529 3.65631 3.65631 -123.935 -3.65631 0 0 612192. 2118.31 0.03 0.08 0.10 -1 -1 0.03 0.0292856 0.0255564 134 34 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_006.v common 2.51 vpr 62.75 MiB -1 -1 0.15 18452 1 0.03 -1 -1 30268 -1 -1 39 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64252 32 32 366 295 1 189 103 17 17 289 -1 unnamed_device 23.6 MiB 0.08 1006 10707 2558 7056 1093 62.7 MiB 0.11 0.00 3.2981 -110.874 -3.2981 3.2981 0.32 0.000715102 0.000664192 0.0344872 0.0320276 -1 -1 -1 -1 32 2059 17 6.65987e+06 494442 554710. 1919.41 0.52 0.114776 0.10094 22834 132086 -1 1766 16 1009 1653 81293 21469 2.93011 2.93011 -107.664 -2.93011 0 0 701300. 2426.64 0.03 0.06 0.11 -1 -1 0.03 0.0244838 0.0214969 145 58 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_007.v common 2.33 vpr 62.35 MiB -1 -1 0.16 18212 1 0.03 -1 -1 30572 -1 -1 21 27 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63844 27 32 259 221 1 130 80 17 17 289 -1 unnamed_device 23.0 MiB 0.05 662 8508 2183 5532 793 62.3 MiB 0.08 0.00 3.64612 -97.2036 -3.64612 3.64612 0.32 0.000556352 0.000518731 0.02948 0.0274761 -1 -1 -1 -1 26 1488 20 6.65987e+06 266238 477104. 1650.88 0.46 0.0948889 0.0832974 21682 110474 -1 1285 19 839 1443 84061 21350 2.55211 2.55211 -89.8292 -2.55211 0 0 585099. 2024.56 0.03 0.05 0.09 -1 -1 0.03 0.0217986 0.0189775 97 34 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_008.v common 2.55 vpr 62.41 MiB -1 -1 0.22 17868 1 0.03 -1 -1 30072 -1 -1 35 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63904 31 32 271 219 1 162 98 17 17 289 -1 unnamed_device 23.4 MiB 0.05 879 17198 5694 8745 2759 62.4 MiB 0.14 0.00 3.28184 -95.5565 -3.28184 3.28184 0.36 0.000595736 0.000552841 0.0478346 0.044364 -1 -1 -1 -1 32 2096 17 6.65987e+06 443730 554710. 1919.41 0.52 0.110623 0.0981322 22834 132086 -1 1775 20 943 1802 114464 28225 2.55445 2.55445 -90.648 -2.55445 0 0 701300. 2426.64 0.03 0.06 0.11 -1 -1 0.03 0.0241442 0.0210605 123 4 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_009.v common 2.40 vpr 62.57 MiB -1 -1 0.15 18384 1 0.03 -1 -1 30052 -1 -1 24 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64068 31 32 317 271 1 168 87 17 17 289 -1 unnamed_device 23.4 MiB 0.09 925 6807 1453 4944 410 62.6 MiB 0.08 0.00 3.3699 -114.313 -3.3699 3.3699 0.32 0.000493922 0.000454414 0.024486 0.0227415 -1 -1 -1 -1 28 2084 19 6.65987e+06 304272 500653. 1732.36 0.51 0.0981972 0.0857413 21970 115934 -1 1840 15 921 1353 95741 23607 2.83031 2.83031 -109.983 -2.83031 0 0 612192. 2118.31 0.03 0.05 0.10 -1 -1 0.03 0.0207326 0.0181803 117 64 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_010.v common 2.56 vpr 62.51 MiB -1 -1 0.22 18156 1 0.03 -1 -1 30016 -1 -1 19 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64008 32 32 298 248 1 156 83 17 17 289 -1 unnamed_device 23.4 MiB 0.09 817 6383 1432 4490 461 62.5 MiB 0.08 0.00 3.76232 -120.722 -3.76232 3.76232 0.32 0.000636848 0.000593635 0.024309 0.0226498 -1 -1 -1 -1 26 2054 21 6.65987e+06 240882 477104. 1650.88 0.54 0.0984567 0.0861078 21682 110474 -1 1799 19 1068 1672 105244 26336 2.74751 2.74751 -112.355 -2.74751 0 0 585099. 2024.56 0.03 0.06 0.09 -1 -1 0.03 0.024046 0.0210051 115 34 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_011.v common 2.55 vpr 62.52 MiB -1 -1 0.20 18352 1 0.03 -1 -1 30424 -1 -1 19 30 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64024 30 32 303 262 1 139 81 17 17 289 -1 unnamed_device 23.4 MiB 0.12 855 11106 3144 6574 1388 62.5 MiB 0.10 0.00 3.77152 -110.328 -3.77152 3.77152 0.34 0.000678385 0.000627002 0.0360956 0.0334026 -1 -1 -1 -1 32 1610 20 6.65987e+06 240882 554710. 1919.41 0.50 0.106565 0.093619 22834 132086 -1 1486 18 705 1168 66043 16527 2.64251 2.64251 -96.0214 -2.64251 0 0 701300. 2426.64 0.03 0.05 0.11 -1 -1 0.03 0.0227846 0.019903 101 63 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_012.v common 2.74 vpr 62.46 MiB -1 -1 0.23 18072 1 0.03 -1 -1 30144 -1 -1 23 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63964 32 32 276 237 1 167 87 17 17 289 -1 unnamed_device 23.4 MiB 0.09 923 15063 4954 7940 2169 62.5 MiB 0.14 0.00 3.60095 -114.988 -3.60095 3.60095 0.32 0.000589529 0.000548359 0.048608 0.0452215 -1 -1 -1 -1 28 2245 30 6.65987e+06 291594 500653. 1732.36 0.75 0.136128 0.120028 21970 115934 -1 1857 21 1021 1396 110915 26979 3.05825 3.05825 -111.367 -3.05825 0 0 612192. 2118.31 0.03 0.06 0.10 -1 -1 0.03 0.024645 0.0214555 111 34 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_013.v common 2.79 vpr 62.86 MiB -1 -1 0.24 18380 1 0.08 -1 -1 30308 -1 -1 29 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64372 32 32 344 272 1 202 93 17 17 289 -1 unnamed_device 23.8 MiB 0.11 1172 12063 3279 7731 1053 62.9 MiB 0.16 0.00 4.32078 -139.492 -4.32078 4.32078 0.33 0.000703373 0.000645846 0.0505267 0.04694 -1 -1 -1 -1 32 2466 23 6.65987e+06 367662 554710. 1919.41 0.56 0.135329 0.119646 22834 132086 -1 2158 23 1534 2364 144012 35379 3.01857 3.01857 -118.122 -3.01857 0 0 701300. 2426.64 0.03 0.08 0.11 -1 -1 0.03 0.0312134 0.027204 147 34 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_014.v common 2.74 vpr 62.80 MiB -1 -1 0.24 18376 1 0.03 -1 -1 30196 -1 -1 34 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64308 32 32 363 295 1 181 98 17 17 289 -1 unnamed_device 23.8 MiB 0.10 971 17873 5392 9032 3449 62.8 MiB 0.19 0.00 4.50383 -130.941 -4.50383 4.50383 0.33 0.000717123 0.000666062 0.0669834 0.0620637 -1 -1 -1 -1 32 2088 18 6.65987e+06 431052 554710. 1919.41 0.57 0.148521 0.131949 22834 132086 -1 1825 20 1420 2352 139941 35041 3.57251 3.57251 -121.811 -3.57251 0 0 701300. 2426.64 0.03 0.07 0.11 -1 -1 0.03 0.0286098 0.0250144 139 61 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_015.v common 2.47 vpr 62.38 MiB -1 -1 0.22 18052 1 0.03 -1 -1 30508 -1 -1 23 29 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63872 29 32 248 215 1 137 84 17 17 289 -1 unnamed_device 23.3 MiB 0.10 694 9600 2464 6430 706 62.4 MiB 0.08 0.00 2.92253 -85.631 -2.92253 2.92253 0.32 0.000543549 0.000506216 0.0305384 0.0284177 -1 -1 -1 -1 26 1711 20 6.65987e+06 291594 477104. 1650.88 0.48 0.0942953 0.0827929 21682 110474 -1 1601 22 1045 1797 119370 29179 2.51431 2.51431 -87.2887 -2.51431 0 0 585099. 2024.56 0.03 0.06 0.09 -1 -1 0.03 0.0234018 0.0202863 103 27 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_016.v common 2.88 vpr 63.29 MiB -1 -1 0.27 18480 1 0.03 -1 -1 30296 -1 -1 27 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64804 32 32 370 297 1 183 91 17 17 289 -1 unnamed_device 23.7 MiB 0.10 1152 16003 4822 9403 1778 63.3 MiB 0.16 0.00 4.09572 -126.446 -4.09572 4.09572 0.32 0.000716587 0.000665383 0.0595422 0.055318 -1 -1 -1 -1 32 2400 19 6.65987e+06 342306 554710. 1919.41 0.55 0.143212 0.12709 22834 132086 -1 2078 18 1135 2087 142666 37845 3.04917 3.04917 -116.306 -3.04917 0 0 701300. 2426.64 0.03 0.09 0.11 -1 -1 0.03 0.0348576 0.0302735 138 58 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_017.v common 2.65 vpr 62.60 MiB -1 -1 0.24 18544 1 0.03 -1 -1 30216 -1 -1 28 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64100 32 32 338 269 1 196 92 17 17 289 -1 unnamed_device 23.6 MiB 0.11 1125 12926 3639 7674 1613 62.6 MiB 0.14 0.00 4.394 -141.354 -4.394 4.394 0.32 0.000683149 0.000635418 0.0456382 0.0424188 -1 -1 -1 -1 32 2214 18 6.65987e+06 354984 554710. 1919.41 0.52 0.124369 0.109993 22834 132086 -1 1990 21 1041 1502 96457 23182 2.90037 2.90037 -115.361 -2.90037 0 0 701300. 2426.64 0.03 0.07 0.11 -1 -1 0.03 0.0301769 0.026598 144 34 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_018.v common 2.60 vpr 62.45 MiB -1 -1 0.23 18432 1 0.03 -1 -1 30280 -1 -1 34 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63944 32 32 323 276 1 153 98 17 17 289 -1 unnamed_device 23.4 MiB 0.10 916 7073 1434 5276 363 62.4 MiB 0.08 0.00 2.87664 -103.934 -2.87664 2.87664 0.32 0.000651927 0.000606239 0.0228193 0.0212013 -1 -1 -1 -1 30 1938 19 6.65987e+06 431052 526063. 1820.29 0.52 0.0977233 0.0852682 22546 126617 -1 1660 15 834 1444 83127 19598 2.00611 2.00611 -93.9149 -2.00611 0 0 666494. 2306.21 0.03 0.05 0.10 -1 -1 0.03 0.0208125 0.0182876 115 65 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_019.v common 2.38 vpr 62.62 MiB -1 -1 0.21 18120 1 0.03 -1 -1 30240 -1 -1 17 30 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64124 30 32 222 206 1 117 79 17 17 289 -1 unnamed_device 23.1 MiB 0.05 693 9543 2321 6568 654 62.6 MiB 0.08 0.00 2.23087 -76.8517 -2.23087 2.23087 0.32 0.000503255 0.000468022 0.0298973 0.0278301 -1 -1 -1 -1 28 1420 15 6.65987e+06 215526 500653. 1732.36 0.50 0.0841738 0.0740953 21970 115934 -1 1307 22 674 1015 82701 19377 1.74665 1.74665 -75.5759 -1.74665 0 0 612192. 2118.31 0.03 0.05 0.10 -1 -1 0.03 0.0211611 0.0183274 85 34 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_020.v common 2.98 vpr 62.58 MiB -1 -1 0.24 18392 1 0.03 -1 -1 30432 -1 -1 25 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64080 31 32 291 243 1 171 88 17 17 289 -1 unnamed_device 23.4 MiB 0.20 786 13738 3441 7180 3117 62.6 MiB 0.12 0.00 4.80308 -136.113 -4.80308 4.80308 0.31 0.000610132 0.000568245 0.0452547 0.0421109 -1 -1 -1 -1 32 2211 46 6.65987e+06 316950 554710. 1919.41 0.80 0.142447 0.124997 22834 132086 -1 1576 21 899 1285 88683 23465 3.84671 3.84671 -129.866 -3.84671 0 0 701300. 2426.64 0.03 0.06 0.11 -1 -1 0.03 0.0258407 0.0225526 127 34 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_021.v common 3.39 vpr 63.26 MiB -1 -1 0.23 18456 1 0.03 -1 -1 30396 -1 -1 37 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64776 32 32 342 271 1 179 101 17 17 289 -1 unnamed_device 23.6 MiB 0.07 1092 18196 6057 9791 2348 63.3 MiB 0.17 0.00 4.25196 -133.154 -4.25196 4.25196 0.31 0.000696776 0.000647631 0.0565156 0.0524726 -1 -1 -1 -1 28 2596 21 6.65987e+06 469086 500653. 1732.36 0.78 0.140877 0.125047 21970 115934 -1 2180 20 1359 2318 167321 39385 3.69683 3.69683 -128.953 -3.69683 0 0 612192. 2118.31 0.03 0.07 0.10 -1 -1 0.03 0.0280309 0.0245652 140 34 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_022.v common 3.33 vpr 62.74 MiB -1 -1 0.25 18336 1 0.03 -1 -1 30284 -1 -1 31 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64248 32 32 372 300 1 207 95 17 17 289 -1 unnamed_device 23.9 MiB 0.10 1229 17591 4978 10084 2529 62.7 MiB 0.19 0.00 4.43635 -136.819 -4.43635 4.43635 0.31 0.000723595 0.000672722 0.061937 0.0574339 -1 -1 -1 -1 32 2470 18 6.65987e+06 393018 554710. 1919.41 0.54 0.143942 0.127773 22834 132086 -1 2229 19 1285 1974 116123 28589 3.51771 3.51771 -123.874 -3.51771 0 0 701300. 2426.64 0.03 0.07 0.11 -1 -1 0.03 0.0285167 0.0249981 151 62 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_023.v common 2.43 vpr 62.46 MiB -1 -1 0.14 18020 1 0.02 -1 -1 30524 -1 -1 20 26 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63960 26 32 190 182 1 108 78 17 17 289 -1 unnamed_device 23.1 MiB 0.07 431 10536 3837 3941 2758 62.5 MiB 0.07 0.00 2.35224 -64.6209 -2.35224 2.35224 0.32 0.000426133 0.000395077 0.0283186 0.0262801 -1 -1 -1 -1 28 1419 31 6.65987e+06 253560 500653. 1732.36 0.63 0.086015 0.075317 21970 115934 -1 1051 21 675 978 69553 19630 2.18965 2.18965 -68.0366 -2.18965 0 0 612192. 2118.31 0.03 0.05 0.10 -1 -1 0.03 0.0179993 0.0156342 81 30 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_024.v common 2.46 vpr 63.06 MiB -1 -1 0.19 17944 1 0.03 -1 -1 30196 -1 -1 25 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64576 32 32 285 227 1 165 89 17 17 289 -1 unnamed_device 23.4 MiB 0.07 931 6623 1375 5033 215 63.1 MiB 0.07 0.00 4.36895 -119.052 -4.36895 4.36895 0.31 0.000615417 0.000572427 0.0229543 0.0213581 -1 -1 -1 -1 32 2111 24 6.65987e+06 316950 554710. 1919.41 0.56 0.0927906 0.081303 22834 132086 -1 1798 22 1076 2092 127185 31396 3.57251 3.57251 -117.08 -3.57251 0 0 701300. 2426.64 0.03 0.07 0.11 -1 -1 0.03 0.0267629 0.0233198 125 3 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_025.v common 2.41 vpr 62.42 MiB -1 -1 0.16 17732 1 0.02 -1 -1 29972 -1 -1 17 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63916 32 32 173 169 1 116 81 17 17 289 -1 unnamed_device 23.0 MiB 0.04 493 11281 3421 5023 2837 62.4 MiB 0.09 0.00 2.48647 -71.166 -2.48647 2.48647 0.32 0.000878455 0.000815259 0.0342384 0.0317749 -1 -1 -1 -1 26 1361 33 6.65987e+06 215526 477104. 1650.88 0.65 0.0940299 0.082807 21682 110474 -1 922 14 531 645 59854 21541 1.95531 1.95531 -69.4327 -1.95531 0 0 585099. 2024.56 0.03 0.04 0.09 -1 -1 0.03 0.0133639 0.0117264 82 3 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_026.v common 2.59 vpr 62.60 MiB -1 -1 0.16 18212 1 0.03 -1 -1 30044 -1 -1 31 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64104 32 32 300 245 1 165 95 17 17 289 -1 unnamed_device 23.5 MiB 0.09 898 10247 2366 7380 501 62.6 MiB 0.10 0.00 4.32789 -118.536 -4.32789 4.32789 0.32 0.000639255 0.000594623 0.0326551 0.0303542 -1 -1 -1 -1 26 2424 21 6.65987e+06 393018 477104. 1650.88 0.66 0.109099 0.0958696 21682 110474 -1 1959 20 1096 1916 134943 33891 3.50931 3.50931 -114.521 -3.50931 0 0 585099. 2024.56 0.03 0.07 0.09 -1 -1 0.03 0.0257508 0.0224904 126 24 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_027.v common 2.57 vpr 62.66 MiB -1 -1 0.18 17776 1 0.03 -1 -1 30360 -1 -1 39 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64164 32 32 297 233 1 177 103 17 17 289 -1 unnamed_device 23.7 MiB 0.06 986 15527 4364 9095 2068 62.7 MiB 0.15 0.00 3.58941 -102.662 -3.58941 3.58941 0.32 0.00064423 0.000597693 0.0438764 0.0407061 -1 -1 -1 -1 32 2052 20 6.65987e+06 494442 554710. 1919.41 0.53 0.118788 0.104869 22834 132086 -1 1757 21 995 1984 121842 28850 2.78377 2.78377 -93.9889 -2.78377 0 0 701300. 2426.64 0.03 0.07 0.11 -1 -1 0.03 0.0253086 0.0224502 136 3 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_028.v common 3.09 vpr 63.31 MiB -1 -1 0.15 18280 1 0.03 -1 -1 30412 -1 -1 35 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64828 32 32 338 277 1 179 99 17 17 289 -1 unnamed_device 23.7 MiB 0.08 1132 18339 5277 10722 2340 63.3 MiB 0.17 0.00 4.42603 -127.033 -4.42603 4.42603 0.32 0.000658681 0.000604043 0.0579563 0.0536309 -1 -1 -1 -1 26 2599 48 6.65987e+06 443730 477104. 1650.88 0.99 0.178629 0.157321 21682 110474 -1 2284 20 1343 2439 160763 40074 3.65545 3.65545 -127.111 -3.65545 0 0 585099. 2024.56 0.03 0.08 0.12 -1 -1 0.03 0.0273421 0.0238611 133 50 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_029.v common 2.53 vpr 62.61 MiB -1 -1 0.21 17996 1 0.03 -1 -1 30100 -1 -1 21 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64108 32 32 284 241 1 145 85 17 17 289 -1 unnamed_device 23.5 MiB 0.06 916 11803 2959 7646 1198 62.6 MiB 0.11 0.00 3.02073 -105.462 -3.02073 3.02073 0.32 0.000596715 0.000554699 0.0399084 0.0371012 -1 -1 -1 -1 32 1826 19 6.65987e+06 266238 554710. 1919.41 0.51 0.109723 0.0968338 22834 132086 -1 1610 19 733 1113 70945 17055 2.33411 2.33411 -97.2001 -2.33411 0 0 701300. 2426.64 0.03 0.05 0.11 -1 -1 0.03 0.0233963 0.0204376 107 34 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_030.v common 2.53 vpr 62.37 MiB -1 -1 0.23 18032 1 0.03 -1 -1 30212 -1 -1 28 30 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63864 30 32 262 227 1 135 90 17 17 289 -1 unnamed_device 23.1 MiB 0.07 668 7728 1645 5488 595 62.4 MiB 0.07 0.00 3.03787 -91.3278 -3.03787 3.03787 0.32 0.000583853 0.000535279 0.0239436 0.0222426 -1 -1 -1 -1 32 1487 23 6.65987e+06 354984 554710. 1919.41 0.52 0.092815 0.0810119 22834 132086 -1 1290 21 811 1389 92421 23927 2.68165 2.68165 -88.0109 -2.68165 0 0 701300. 2426.64 0.03 0.06 0.11 -1 -1 0.03 0.0236845 0.0205772 100 34 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_031.v common 2.47 vpr 62.33 MiB -1 -1 0.22 18144 1 0.03 -1 -1 30148 -1 -1 27 28 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63824 28 32 260 223 1 140 87 17 17 289 -1 unnamed_device 23.3 MiB 0.06 623 10647 2615 7437 595 62.3 MiB 0.07 0.00 3.37407 -92.2897 -3.37407 3.37407 0.27 0.000565958 0.000526854 0.0191172 0.0175962 -1 -1 -1 -1 32 1558 18 6.65987e+06 342306 554710. 1919.41 0.52 0.0829422 0.0719943 22834 132086 -1 1314 21 834 1522 86562 22322 2.71857 2.71857 -89.5843 -2.71857 0 0 701300. 2426.64 0.03 0.06 0.11 -1 -1 0.03 0.0232677 0.0202501 104 34 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_032.v common 2.70 vpr 62.44 MiB -1 -1 0.22 17840 1 0.03 -1 -1 30232 -1 -1 21 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63936 32 32 253 210 1 154 85 17 17 289 -1 unnamed_device 23.4 MiB 0.07 733 14035 5318 6638 2079 62.4 MiB 0.12 0.00 3.67009 -108.082 -3.67009 3.67009 0.32 0.000572926 0.000532536 0.0451769 0.0419649 -1 -1 -1 -1 32 1862 31 6.65987e+06 266238 554710. 1919.41 0.57 0.122063 0.107575 22834 132086 -1 1508 20 909 1486 90599 23830 2.64951 2.64951 -100.091 -2.64951 0 0 701300. 2426.64 0.04 0.06 0.10 -1 -1 0.04 0.0273808 0.0243873 116 3 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_033.v common 2.57 vpr 62.43 MiB -1 -1 0.24 18192 1 0.03 -1 -1 30544 -1 -1 33 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63928 31 32 271 231 1 148 96 17 17 289 -1 unnamed_device 23.3 MiB 0.06 765 8199 1674 6237 288 62.4 MiB 0.08 0.00 3.38101 -98.7431 -3.38101 3.38101 0.32 0.000579578 0.000540067 0.0238147 0.0221697 -1 -1 -1 -1 26 1967 21 6.65987e+06 418374 477104. 1650.88 0.55 0.0977505 0.0853359 21682 110474 -1 1633 20 906 1519 84512 22222 2.82071 2.82071 -102.673 -2.82071 0 0 585099. 2024.56 0.04 0.06 0.10 -1 -1 0.04 0.0264682 0.0233523 111 30 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_034.v common 2.70 vpr 62.84 MiB -1 -1 0.23 18384 1 0.03 -1 -1 30436 -1 -1 31 29 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64352 29 32 291 250 1 153 92 17 17 289 -1 unnamed_device 23.7 MiB 0.10 919 13961 3585 8809 1567 62.8 MiB 0.12 0.00 3.21564 -100.645 -3.21564 3.21564 0.32 0.000613384 0.000576201 0.0431614 0.0401718 -1 -1 -1 -1 32 1766 19 6.65987e+06 393018 554710. 1919.41 0.53 0.118447 0.104519 22834 132086 -1 1642 21 969 1515 100684 24375 2.21971 2.21971 -90.7495 -2.21971 0 0 701300. 2426.64 0.03 0.06 0.11 -1 -1 0.03 0.0246998 0.0214307 112 54 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_035.v common 3.00 vpr 63.46 MiB -1 -1 0.24 18424 1 0.03 -1 -1 30404 -1 -1 42 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64988 32 32 367 282 1 201 106 17 17 289 -1 unnamed_device 23.7 MiB 0.12 1278 14856 3856 9597 1403 63.5 MiB 0.14 0.00 4.04849 -118.625 -4.04849 4.04849 0.32 0.000738507 0.000685273 0.0468637 0.0434722 -1 -1 -1 -1 32 2520 23 6.65987e+06 532476 554710. 1919.41 0.66 0.128972 0.114192 22834 132086 -1 2343 20 1119 2110 130139 30403 3.27779 3.27779 -111.806 -3.27779 0 0 701300. 2426.64 0.04 0.07 0.11 -1 -1 0.04 0.0316226 0.0278407 158 29 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_036.v common 2.84 vpr 63.34 MiB -1 -1 0.25 18416 1 0.03 -1 -1 30184 -1 -1 41 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64856 32 32 391 311 1 192 105 17 17 289 -1 unnamed_device 23.6 MiB 0.12 1103 11467 2726 7797 944 63.3 MiB 0.13 0.00 3.86972 -129.413 -3.86972 3.86972 0.32 0.000757179 0.000703981 0.0381411 0.0354271 -1 -1 -1 -1 28 2395 30 6.65987e+06 519798 500653. 1732.36 0.64 0.13815 0.121188 21970 115934 -1 2157 18 1571 2541 147293 36924 2.81751 2.81751 -115.433 -2.81751 0 0 612192. 2118.31 0.03 0.07 0.10 -1 -1 0.03 0.0280166 0.0245656 150 65 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_037.v common 2.53 vpr 62.52 MiB -1 -1 0.22 18272 1 0.03 -1 -1 30232 -1 -1 23 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64024 31 32 279 237 1 161 86 17 17 289 -1 unnamed_device 23.4 MiB 0.09 916 12938 4123 6955 1860 62.5 MiB 0.12 0.00 4.11632 -122.804 -4.11632 4.11632 0.32 0.000592092 0.000550918 0.0429113 0.0399086 -1 -1 -1 -1 32 1802 19 6.65987e+06 291594 554710. 1919.41 0.50 0.112424 0.099407 22834 132086 -1 1621 21 899 1293 89858 21635 2.75411 2.75411 -103.631 -2.75411 0 0 701300. 2426.64 0.03 0.06 0.11 -1 -1 0.03 0.0251542 0.0219007 114 34 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_038.v common 2.66 vpr 62.81 MiB -1 -1 0.25 18388 1 0.03 -1 -1 30428 -1 -1 29 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64316 31 32 370 297 1 186 92 17 17 289 -1 unnamed_device 23.7 MiB 0.10 962 14375 4628 7389 2358 62.8 MiB 0.15 0.00 4.01529 -116.343 -4.01529 4.01529 0.31 0.000715968 0.000664875 0.0525152 0.0487842 -1 -1 -1 -1 32 2097 20 6.65987e+06 367662 554710. 1919.41 0.55 0.136711 0.120978 22834 132086 -1 1740 19 953 1608 91219 23548 2.83077 2.83077 -103.661 -2.83077 0 0 701300. 2426.64 0.03 0.06 0.11 -1 -1 0.03 0.0283605 0.0250845 145 61 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_039.v common 2.65 vpr 62.97 MiB -1 -1 0.26 18260 1 0.03 -1 -1 30408 -1 -1 36 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64480 31 32 377 302 1 234 99 17 17 289 -1 unnamed_device 24.1 MiB 0.07 1386 11043 2787 7293 963 63.0 MiB 0.13 0.00 5.91489 -170.972 -5.91489 5.91489 0.32 0.000736886 0.000685819 0.0385686 0.0358586 -1 -1 -1 -1 32 2873 20 6.65987e+06 456408 554710. 1919.41 0.57 0.124678 0.109747 22834 132086 -1 2486 19 1319 1924 126550 30073 4.39548 4.39548 -152.161 -4.39548 0 0 701300. 2426.64 0.03 0.07 0.11 -1 -1 0.03 0.0287112 0.0251583 178 64 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_040.v common 3.22 vpr 63.42 MiB -1 -1 0.26 18348 1 0.03 -1 -1 30388 -1 -1 32 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64944 31 32 383 305 1 209 95 17 17 289 -1 unnamed_device 23.9 MiB 0.62 1238 16511 4791 9794 1926 63.4 MiB 0.18 0.00 4.89912 -151.132 -4.89912 4.89912 0.31 0.000738637 0.000685826 0.0591119 0.0549134 -1 -1 -1 -1 30 2429 21 6.65987e+06 405696 526063. 1820.29 0.55 0.146965 0.130343 22546 126617 -1 2186 20 1080 1696 96861 24644 4.08163 4.08163 -142.785 -4.08163 0 0 666494. 2306.21 0.03 0.07 0.10 -1 -1 0.03 0.0299256 0.026234 167 64 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_041.v common 2.87 vpr 62.71 MiB -1 -1 0.19 18260 1 0.03 -1 -1 30456 -1 -1 37 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64216 31 32 352 285 1 184 100 17 17 289 -1 unnamed_device 23.6 MiB 0.11 1124 12628 3322 8289 1017 62.7 MiB 0.13 0.00 4.44275 -130.243 -4.44275 4.44275 0.32 0.000707565 0.000658454 0.0406386 0.0377729 -1 -1 -1 -1 26 2643 23 6.65987e+06 469086 477104. 1650.88 0.59 0.126404 0.111239 21682 110474 -1 2328 21 1374 2327 147048 36129 3.16471 3.16471 -119.273 -3.16471 0 0 585099. 2024.56 0.03 0.07 0.09 -1 -1 0.03 0.0291973 0.0254676 140 55 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_042.v common 2.83 vpr 62.69 MiB -1 -1 0.19 18456 1 0.03 -1 -1 30480 -1 -1 29 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64192 32 32 291 242 1 179 93 17 17 289 -1 unnamed_device 23.5 MiB 0.09 1082 11013 2473 7884 656 62.7 MiB 0.12 0.00 4.18181 -113.104 -4.18181 4.18181 0.32 0.000616948 0.000573587 0.03467 0.0322542 -1 -1 -1 -1 26 2738 25 6.65987e+06 367662 477104. 1650.88 0.84 0.114082 0.100194 21682 110474 -1 2132 19 1206 1813 126827 31200 3.29585 3.29585 -115.875 -3.29585 0 0 585099. 2024.56 0.03 0.06 0.11 -1 -1 0.03 0.024271 0.0212067 125 27 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_043.v common 3.21 vpr 63.68 MiB -1 -1 0.27 18528 1 0.05 -1 -1 30400 -1 -1 43 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65204 32 32 457 356 1 223 107 17 17 289 -1 unnamed_device 24.1 MiB 0.22 1325 20094 5499 11953 2642 63.7 MiB 0.21 0.00 4.90518 -159.197 -4.90518 4.90518 0.32 0.000863265 0.00080313 0.0721534 0.0670195 -1 -1 -1 -1 26 3343 24 6.65987e+06 545154 477104. 1650.88 0.81 0.185067 0.163997 21682 110474 -1 2628 21 1646 2583 167664 39327 3.86217 3.86217 -144.748 -3.86217 0 0 585099. 2024.56 0.03 0.09 0.09 -1 -1 0.03 0.0362174 0.0316235 176 87 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_044.v common 2.49 vpr 62.46 MiB -1 -1 0.23 18112 1 0.03 -1 -1 30172 -1 -1 23 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63956 31 32 261 225 1 142 86 17 17 289 -1 unnamed_device 23.4 MiB 0.09 737 9536 2387 5857 1292 62.5 MiB 0.09 0.00 3.48098 -96.6191 -3.48098 3.48098 0.32 0.000575726 0.000535589 0.0306291 0.0284653 -1 -1 -1 -1 30 1612 20 6.65987e+06 291594 526063. 1820.29 0.52 0.0958834 0.0841792 22546 126617 -1 1405 22 877 1491 83669 20744 2.47931 2.47931 -90.4761 -2.47931 0 0 666494. 2306.21 0.03 0.06 0.10 -1 -1 0.03 0.0247778 0.0215726 104 28 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_045.v common 3.00 vpr 62.80 MiB -1 -1 0.26 18284 1 0.03 -1 -1 30132 -1 -1 34 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64304 31 32 337 267 1 204 97 17 17 289 -1 unnamed_device 23.8 MiB 0.08 1249 13195 3658 8262 1275 62.8 MiB 0.14 0.00 4.79192 -144.824 -4.79192 4.79192 0.34 0.000683955 0.000635929 0.0433617 0.0402853 -1 -1 -1 -1 24 3134 28 6.65987e+06 431052 448715. 1552.65 0.88 0.138378 0.12188 21394 104001 -1 2453 22 1503 2172 141924 34169 4.03451 4.03451 -135.006 -4.03451 0 0 554710. 1919.41 0.02 0.07 0.11 -1 -1 0.02 0.0296631 0.0258945 149 34 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_046.v common 2.75 vpr 62.68 MiB -1 -1 0.24 18408 1 0.03 -1 -1 30420 -1 -1 38 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64180 32 32 349 284 1 183 102 17 17 289 -1 unnamed_device 23.6 MiB 0.09 1155 13906 3407 9168 1331 62.7 MiB 0.13 0.00 3.8576 -113.911 -3.8576 3.8576 0.32 0.00069067 0.000641422 0.0431406 0.0400046 -1 -1 -1 -1 26 2941 21 6.65987e+06 481764 477104. 1650.88 0.66 0.128273 0.112978 21682 110474 -1 2377 20 1326 2410 166916 39546 3.17931 3.17931 -112.137 -3.17931 0 0 585099. 2024.56 0.03 0.07 0.09 -1 -1 0.03 0.0274615 0.0239703 137 53 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_047.v common 2.85 vpr 62.54 MiB -1 -1 0.22 17876 1 0.03 -1 -1 30064 -1 -1 27 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64040 32 32 291 230 1 168 91 17 17 289 -1 unnamed_device 23.4 MiB 0.26 876 13147 4503 6169 2475 62.5 MiB 0.13 0.00 3.99841 -117.898 -3.99841 3.99841 0.32 0.000626788 0.000582687 0.043224 0.0401879 -1 -1 -1 -1 32 2071 32 6.65987e+06 342306 554710. 1919.41 0.59 0.127699 0.11235 22834 132086 -1 1695 23 1165 2183 127461 31331 3.47345 3.47345 -112.519 -3.47345 0 0 701300. 2426.64 0.03 0.07 0.11 -1 -1 0.03 0.0280871 0.0244558 127 3 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_048.v common 2.78 vpr 62.70 MiB -1 -1 0.25 18404 1 0.03 -1 -1 30280 -1 -1 30 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64204 32 32 353 287 1 198 94 17 17 289 -1 unnamed_device 23.6 MiB 0.17 1224 8827 1935 6242 650 62.7 MiB 0.11 0.00 4.61566 -135.209 -4.61566 4.61566 0.31 0.000712229 0.000661663 0.0318336 0.0295804 -1 -1 -1 -1 30 2511 23 6.65987e+06 380340 526063. 1820.29 0.53 0.117116 0.102706 22546 126617 -1 2136 19 928 1310 71774 17944 3.20951 3.20951 -118.608 -3.20951 0 0 666494. 2306.21 0.03 0.06 0.10 -1 -1 0.03 0.0274664 0.0240917 142 55 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_049.v common 2.77 vpr 63.24 MiB -1 -1 0.24 18424 1 0.03 -1 -1 30248 -1 -1 39 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64760 32 32 361 291 1 185 103 17 17 289 -1 unnamed_device 23.6 MiB 0.11 1054 11189 2726 7692 771 63.2 MiB 0.11 0.00 3.80886 -119.733 -3.80886 3.80886 0.32 0.000712435 0.000662528 0.0358288 0.03325 -1 -1 -1 -1 26 2598 27 6.65987e+06 494442 477104. 1650.88 0.67 0.129506 0.113587 21682 110474 -1 2114 19 1188 2061 125664 30609 3.03311 3.03311 -114.46 -3.03311 0 0 585099. 2024.56 0.03 0.06 0.09 -1 -1 0.03 0.0230767 0.020264 139 55 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_050.v common 2.81 vpr 62.77 MiB -1 -1 0.25 18280 1 0.03 -1 -1 30352 -1 -1 40 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64280 32 32 382 305 1 192 104 17 17 289 -1 unnamed_device 23.7 MiB 0.12 1186 14744 3810 9393 1541 62.8 MiB 0.15 0.00 4.08875 -126.488 -4.08875 4.08875 0.32 0.000742546 0.000689999 0.0475827 0.0441969 -1 -1 -1 -1 26 2813 24 6.65987e+06 507120 477104. 1650.88 0.66 0.141553 0.124844 21682 110474 -1 2375 21 1537 2519 161666 39095 3.04491 3.04491 -117.668 -3.04491 0 0 585099. 2024.56 0.03 0.08 0.09 -1 -1 0.03 0.0308635 0.0269302 149 62 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_051.v common 2.60 vpr 62.52 MiB -1 -1 0.22 17992 1 0.03 -1 -1 30320 -1 -1 36 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64024 32 32 306 248 1 166 100 17 17 289 -1 unnamed_device 23.4 MiB 0.09 1036 11932 2960 7977 995 62.5 MiB 0.11 0.00 3.95041 -117.901 -3.95041 3.95041 0.32 0.000629355 0.000583689 0.0352423 0.0326696 -1 -1 -1 -1 32 2001 21 6.65987e+06 456408 554710. 1919.41 0.54 0.112167 0.0985244 22834 132086 -1 1850 20 1003 1814 115866 27374 3.08765 3.08765 -108.602 -3.08765 0 0 701300. 2426.64 0.03 0.06 0.11 -1 -1 0.03 0.0250013 0.0219994 127 24 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_052.v common 2.52 vpr 63.28 MiB -1 -1 0.24 18388 1 0.03 -1 -1 30132 -1 -1 29 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64800 32 32 319 257 1 198 93 17 17 289 -1 unnamed_device 23.7 MiB 0.10 1087 10383 2461 6851 1071 63.3 MiB 0.12 0.00 4.72526 -131.624 -4.72526 4.72526 0.32 0.000654215 0.000608358 0.0348778 0.0324333 -1 -1 -1 -1 32 2215 22 6.65987e+06 367662 554710. 1919.41 0.53 0.113498 0.0997649 22834 132086 -1 1949 19 1182 1681 99807 25080 3.68471 3.68471 -122.409 -3.68471 0 0 701300. 2426.64 0.03 0.04 0.08 -1 -1 0.03 0.020965 0.0184721 138 29 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_053.v common 2.78 vpr 62.82 MiB -1 -1 0.26 18340 1 0.03 -1 -1 30256 -1 -1 30 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64324 31 32 373 299 1 205 93 17 17 289 -1 unnamed_device 24.0 MiB 0.10 1150 17733 5210 9615 2908 62.8 MiB 0.19 0.00 4.69532 -137.386 -4.69532 4.69532 0.32 0.000727343 0.000676045 0.0638798 0.0592796 -1 -1 -1 -1 32 2496 21 6.65987e+06 380340 554710. 1919.41 0.58 0.150245 0.133328 22834 132086 -1 2250 20 1300 2007 143463 32554 3.78891 3.78891 -127.851 -3.78891 0 0 701300. 2426.64 0.03 0.07 0.11 -1 -1 0.03 0.029378 0.0257092 152 62 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_054.v common 2.75 vpr 63.07 MiB -1 -1 0.26 18400 1 0.03 -1 -1 30340 -1 -1 25 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64584 32 32 387 315 1 189 89 17 17 289 -1 unnamed_device 24.0 MiB 0.10 1167 14147 4331 7961 1855 63.1 MiB 0.16 0.00 3.97858 -128.122 -3.97858 3.97858 0.31 0.000748689 0.000687482 0.05575 0.05163 -1 -1 -1 -1 32 2577 21 6.65987e+06 316950 554710. 1919.41 0.57 0.143557 0.126963 22834 132086 -1 2276 19 1356 2418 159825 36180 3.35705 3.35705 -121.283 -3.35705 0 0 701300. 2426.64 0.03 0.07 0.10 -1 -1 0.03 0.0287086 0.0251227 141 77 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_055.v common 2.28 vpr 62.30 MiB -1 -1 0.14 17988 1 0.03 -1 -1 30336 -1 -1 30 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63796 32 32 251 219 1 140 94 17 17 289 -1 unnamed_device 23.0 MiB 0.06 913 15643 4415 9418 1810 62.3 MiB 0.12 0.00 3.35098 -100.668 -3.35098 3.35098 0.32 0.000559149 0.0005199 0.0431236 0.0401111 -1 -1 -1 -1 32 1760 21 6.65987e+06 380340 554710. 1919.41 0.50 0.109026 0.0963947 22834 132086 -1 1658 17 804 1267 80945 19430 2.45125 2.45125 -90.1739 -2.45125 0 0 701300. 2426.64 0.03 0.05 0.11 -1 -1 0.03 0.0198175 0.0173259 101 23 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_056.v common 2.75 vpr 62.68 MiB -1 -1 0.25 18244 1 0.03 -1 -1 30092 -1 -1 27 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64188 32 32 341 285 1 189 91 17 17 289 -1 unnamed_device 23.7 MiB 0.08 996 17023 5758 8918 2347 62.7 MiB 0.17 0.00 3.96847 -134.773 -3.96847 3.96847 0.32 0.000673933 0.000625952 0.0586522 0.0544351 -1 -1 -1 -1 28 2722 23 6.65987e+06 342306 500653. 1732.36 0.70 0.142328 0.126048 21970 115934 -1 2070 19 1306 1855 127035 31021 3.38897 3.38897 -128.298 -3.38897 0 0 612192. 2118.31 0.03 0.07 0.10 -1 -1 0.03 0.0258283 0.0225418 133 65 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_057.v common 2.77 vpr 62.88 MiB -1 -1 0.24 18520 1 0.03 -1 -1 30352 -1 -1 35 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64392 32 32 387 293 1 234 99 17 17 289 -1 unnamed_device 23.9 MiB 0.11 1433 14463 4059 9245 1159 62.9 MiB 0.16 0.00 5.18108 -151.87 -5.18108 5.18108 0.32 0.000764555 0.000710159 0.0512314 0.0475868 -1 -1 -1 -1 32 3076 23 6.65987e+06 443730 554710. 1919.41 0.58 0.144273 0.127505 22834 132086 -1 2769 21 1634 2613 161131 38979 4.04551 4.04551 -142.419 -4.04551 0 0 701300. 2426.64 0.03 0.08 0.11 -1 -1 0.03 0.032354 0.0283413 174 31 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_058.v common 2.52 vpr 62.75 MiB -1 -1 0.24 18392 1 0.03 -1 -1 30380 -1 -1 38 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64256 32 32 340 270 1 181 102 17 17 289 -1 unnamed_device 23.7 MiB 0.08 1064 9622 2158 6803 661 62.8 MiB 0.10 0.00 4.25077 -131.82 -4.25077 4.25077 0.32 0.000689443 0.000641753 0.030528 0.0283813 -1 -1 -1 -1 26 2445 19 6.65987e+06 481764 477104. 1650.88 0.54 0.111197 0.0976738 21682 110474 -1 2100 20 1180 2009 122888 30587 2.98991 2.98991 -119.17 -2.98991 0 0 585099. 2024.56 0.03 0.07 0.09 -1 -1 0.03 0.0282445 0.0247036 141 34 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_059.v common 2.97 vpr 62.47 MiB -1 -1 0.22 18020 1 0.02 -1 -1 30388 -1 -1 33 30 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63972 30 32 278 235 1 148 95 17 17 289 -1 unnamed_device 23.4 MiB 0.06 873 7655 1741 5556 358 62.5 MiB 0.08 0.00 3.46801 -106.861 -3.46801 3.46801 0.29 0.000592529 0.000551119 0.0230086 0.0213939 -1 -1 -1 -1 26 1985 22 6.65987e+06 418374 477104. 1650.88 1.09 0.101588 0.0889863 21682 110474 -1 1566 19 872 1628 93100 23067 2.89891 2.89891 -101.232 -2.89891 0 0 585099. 2024.56 0.03 0.06 0.09 -1 -1 0.03 0.0227936 0.0198726 111 34 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_060.v common 3.74 vpr 63.60 MiB -1 -1 0.27 18632 1 0.03 -1 -1 30348 -1 -1 33 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65124 32 32 431 332 1 235 97 17 17 289 -1 unnamed_device 24.1 MiB 0.16 1373 17857 5541 9729 2587 63.6 MiB 0.21 0.00 6.00689 -175.284 -6.00689 6.00689 0.32 0.000829838 0.000770463 0.0699701 0.065028 -1 -1 -1 -1 26 3848 37 6.65987e+06 418374 477104. 1650.88 1.45 0.197086 0.174141 21682 110474 -1 3002 21 1997 2930 217962 52054 5.28897 5.28897 -171.079 -5.28897 0 0 585099. 2024.56 0.03 0.10 0.09 -1 -1 0.03 0.0353896 0.0309506 177 65 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_061.v common 2.72 vpr 62.68 MiB -1 -1 0.23 18428 1 0.03 -1 -1 30384 -1 -1 38 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64180 32 32 336 268 1 174 102 17 17 289 -1 unnamed_device 23.7 MiB 0.11 1017 19142 6169 10401 2572 62.7 MiB 0.18 0.00 4.49092 -134.922 -4.49092 4.49092 0.32 0.000688964 0.000639258 0.058669 0.0542224 -1 -1 -1 -1 32 2057 20 6.65987e+06 481764 554710. 1919.41 0.55 0.138961 0.123175 22834 132086 -1 1855 18 1006 1647 91104 22583 3.46031 3.46031 -122.488 -3.46031 0 0 701300. 2426.64 0.05 0.07 0.08 -1 -1 0.05 0.027125 0.0239429 136 34 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_062.v common 2.42 vpr 62.38 MiB -1 -1 0.20 17912 1 0.05 -1 -1 30352 -1 -1 29 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63880 32 32 231 199 1 140 93 17 17 289 -1 unnamed_device 23.1 MiB 0.06 757 14793 4373 7837 2583 62.4 MiB 0.13 0.00 3.29469 -92.947 -3.29469 3.29469 0.32 0.000538264 0.000501659 0.0461663 0.0429533 -1 -1 -1 -1 30 1671 23 6.65987e+06 367662 526063. 1820.29 0.50 0.111364 0.098657 22546 126617 -1 1389 20 700 1220 66685 16954 2.41305 2.41305 -85.9205 -2.41305 0 0 666494. 2306.21 0.03 0.05 0.10 -1 -1 0.03 0.021408 0.0186665 103 3 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_063.v common 2.75 vpr 63.34 MiB -1 -1 0.23 18472 1 0.04 -1 -1 30316 -1 -1 40 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64860 32 32 349 273 1 191 104 17 17 289 -1 unnamed_device 23.7 MiB 0.10 1150 19624 5000 12637 1987 63.3 MiB 0.19 0.00 5.1064 -126.138 -5.1064 5.1064 0.32 0.000704936 0.000655185 0.059793 0.055533 -1 -1 -1 -1 28 2459 23 6.65987e+06 507120 500653. 1732.36 0.57 0.147213 0.130679 21970 115934 -1 2168 22 1287 2791 166610 39959 3.96919 3.96919 -118.971 -3.96919 0 0 612192. 2118.31 0.03 0.08 0.12 -1 -1 0.03 0.0303989 0.0264907 147 29 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_064.v common 2.52 vpr 63.21 MiB -1 -1 0.22 17964 1 0.03 -1 -1 30112 -1 -1 23 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64728 32 32 247 207 1 147 87 17 17 289 -1 unnamed_device 23.4 MiB 0.06 872 15831 4931 8734 2166 63.2 MiB 0.14 0.00 3.5083 -107.383 -3.5083 3.5083 0.32 0.000561581 0.00052297 0.050766 0.0471046 -1 -1 -1 -1 32 1802 23 6.65987e+06 291594 554710. 1919.41 0.51 0.118787 0.105164 22834 132086 -1 1692 22 1001 1708 115538 28004 2.61951 2.61951 -100.831 -2.61951 0 0 701300. 2426.64 0.03 0.06 0.11 -1 -1 0.03 0.0241798 0.0210207 107 3 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_065.v common 2.78 vpr 62.54 MiB -1 -1 0.24 18124 1 0.03 -1 -1 30336 -1 -1 38 30 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64040 30 32 278 235 1 147 100 17 17 289 -1 unnamed_device 23.4 MiB 0.11 879 14252 3836 8169 2247 62.5 MiB 0.12 0.00 4.01069 -108.355 -4.01069 4.01069 0.34 0.000599354 0.000550843 0.0387901 0.0359731 -1 -1 -1 -1 26 2025 24 6.65987e+06 481764 477104. 1650.88 0.69 0.11377 0.100057 21682 110474 -1 1739 19 906 1763 110431 27178 2.97191 2.97191 -105.651 -2.97191 0 0 585099. 2024.56 0.03 0.06 0.07 -1 -1 0.03 0.0225145 0.0196321 110 34 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_066.v common 3.39 vpr 63.42 MiB -1 -1 0.25 18252 1 0.03 -1 -1 30480 -1 -1 32 29 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64944 29 32 355 287 1 198 93 17 17 289 -1 unnamed_device 23.7 MiB 0.10 935 10383 2371 7436 576 63.4 MiB 0.12 0.00 4.5774 -127.327 -4.5774 4.5774 0.32 0.000695523 0.000647079 0.0369925 0.0343684 -1 -1 -1 -1 26 3076 43 6.65987e+06 405696 477104. 1650.88 1.04 0.149016 0.130089 21682 110474 -1 2152 21 1391 2137 138462 37475 3.39717 3.39717 -116.441 -3.39717 0 0 585099. 2024.56 0.04 0.09 0.10 -1 -1 0.04 0.0365452 0.031807 146 62 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_067.v common 2.56 vpr 62.78 MiB -1 -1 0.24 18248 1 0.03 -1 -1 30348 -1 -1 27 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64288 32 32 358 289 1 175 91 17 17 289 -1 unnamed_device 23.8 MiB 0.09 929 8251 1789 6085 377 62.8 MiB 0.10 0.00 4.29907 -134.356 -4.29907 4.29907 0.32 0.000692743 0.000642667 0.0308125 0.0285985 -1 -1 -1 -1 32 2220 22 6.65987e+06 342306 554710. 1919.41 0.56 0.116133 0.101656 22834 132086 -1 1882 22 1411 2117 134488 33129 3.89817 3.89817 -131.246 -3.89817 0 0 701300. 2426.64 0.03 0.07 0.08 -1 -1 0.03 0.0309356 0.0270608 135 54 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_068.v common 2.62 vpr 63.35 MiB -1 -1 0.23 18572 1 0.04 -1 -1 30276 -1 -1 34 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64868 32 32 353 285 1 181 98 17 17 289 -1 unnamed_device 23.7 MiB 0.11 1075 15173 3870 9435 1868 63.3 MiB 0.15 0.00 4.58626 -136.867 -4.58626 4.58626 0.32 0.000705923 0.000655882 0.0503308 0.046744 -1 -1 -1 -1 32 2211 20 6.65987e+06 431052 554710. 1919.41 0.55 0.132979 0.11753 22834 132086 -1 1968 17 847 1531 91027 22240 3.35191 3.35191 -122.638 -3.35191 0 0 701300. 2426.64 0.03 0.06 0.11 -1 -1 0.03 0.0253636 0.0223258 136 51 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_069.v common 2.47 vpr 63.35 MiB -1 -1 0.25 18168 1 0.04 -1 -1 30140 -1 -1 22 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64872 32 32 276 237 1 160 86 17 17 289 -1 unnamed_device 23.7 MiB 0.10 901 6701 1571 4713 417 63.4 MiB 0.08 0.00 4.569 -127.264 -4.569 4.569 0.32 0.000598546 0.000556821 0.0231644 0.0215639 -1 -1 -1 -1 26 2033 20 6.65987e+06 278916 477104. 1650.88 0.48 0.0923268 0.0807068 21682 110474 -1 1721 21 882 1189 70078 18621 3.26691 3.26691 -112.036 -3.26691 0 0 585099. 2024.56 0.02 0.03 0.06 -1 -1 0.02 0.0140382 0.0124423 107 34 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_070.v common 2.64 vpr 62.48 MiB -1 -1 0.20 18340 1 0.03 -1 -1 30296 -1 -1 25 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63980 31 32 319 272 1 169 88 17 17 289 -1 unnamed_device 23.6 MiB 0.09 802 16273 4920 8724 2629 62.5 MiB 0.15 0.00 3.75784 -117.415 -3.75784 3.75784 0.32 0.000637111 0.000591828 0.0557216 0.0517767 -1 -1 -1 -1 32 1992 22 6.65987e+06 316950 554710. 1919.41 0.53 0.132251 0.11715 22834 132086 -1 1605 18 979 1470 76824 20417 2.97351 2.97351 -106.635 -2.97351 0 0 701300. 2426.64 0.03 0.06 0.08 -1 -1 0.03 0.0249297 0.0217531 117 64 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_071.v common 2.60 vpr 63.22 MiB -1 -1 0.24 18344 1 0.03 -1 -1 30272 -1 -1 36 30 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64736 30 32 329 273 1 166 98 17 17 289 -1 unnamed_device 23.6 MiB 0.10 889 16973 4879 9089 3005 63.2 MiB 0.15 0.00 3.33409 -93.1785 -3.33409 3.33409 0.32 0.000660544 0.000613972 0.0523942 0.048655 -1 -1 -1 -1 28 2254 24 6.65987e+06 456408 500653. 1732.36 0.56 0.134436 0.118707 21970 115934 -1 1914 19 1124 2027 125753 32278 2.56839 2.56839 -91.7219 -2.56839 0 0 612192. 2118.31 0.03 0.06 0.10 -1 -1 0.03 0.0254975 0.0222664 128 57 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_072.v common 2.70 vpr 63.16 MiB -1 -1 0.14 18152 1 0.03 -1 -1 30384 -1 -1 39 28 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64672 28 32 277 229 1 155 99 17 17 289 -1 unnamed_device 23.5 MiB 0.07 817 17427 4857 10073 2497 63.2 MiB 0.14 0.00 3.74992 -95.3542 -3.74992 3.74992 0.32 0.00058808 0.000547246 0.0470504 0.0437117 -1 -1 -1 -1 26 2053 33 6.65987e+06 494442 477104. 1650.88 0.77 0.128498 0.112971 21682 110474 -1 1725 24 1318 2503 168666 42857 3.34885 3.34885 -97.8664 -3.34885 0 0 585099. 2024.56 0.03 0.09 0.09 -1 -1 0.03 0.0326863 0.0282768 122 27 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_073.v common 2.74 vpr 62.59 MiB -1 -1 0.24 18356 1 0.02 -1 -1 30172 -1 -1 22 30 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64096 30 32 317 269 1 152 84 17 17 289 -1 unnamed_device 23.4 MiB 0.11 893 13809 4432 6991 2386 62.6 MiB 0.13 0.00 3.80155 -112.624 -3.80155 3.80155 0.32 0.000639961 0.000594619 0.0503891 0.0468642 -1 -1 -1 -1 32 1901 19 6.65987e+06 278916 554710. 1919.41 0.54 0.128986 0.114538 22834 132086 -1 1725 17 1082 1865 121154 29026 2.80571 2.80571 -108.587 -2.80571 0 0 701300. 2426.64 0.03 0.06 0.11 -1 -1 0.03 0.022801 0.0199622 115 63 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_074.v common 3.24 vpr 62.56 MiB -1 -1 0.26 18272 1 0.03 -1 -1 30104 -1 -1 26 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64064 32 32 335 282 1 184 90 17 17 289 -1 unnamed_device 23.6 MiB 0.10 976 8532 1791 6388 353 62.6 MiB 0.05 0.00 3.80404 -125.955 -3.80404 3.80404 0.33 0.000297142 0.000274077 0.0143566 0.0132378 -1 -1 -1 -1 32 2168 21 6.65987e+06 329628 554710. 1919.41 0.48 0.0866732 0.0751553 22834 132086 -1 1736 19 958 1411 91359 22142 3.07251 3.07251 -120.561 -3.07251 0 0 701300. 2426.64 0.03 0.06 0.11 -1 -1 0.03 0.0252589 0.022049 127 65 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_075.v common 3.11 vpr 62.89 MiB -1 -1 0.22 17928 1 0.03 -1 -1 30320 -1 -1 37 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64396 31 32 293 230 1 175 100 17 17 289 -1 unnamed_device 23.7 MiB 0.06 1091 10540 2548 6838 1154 62.9 MiB 0.11 0.00 4.26866 -122.654 -4.26866 4.26866 0.29 0.000634407 0.000589944 0.031125 0.0289309 -1 -1 -1 -1 28 2517 21 6.65987e+06 469086 500653. 1732.36 0.62 0.10807 0.0950411 21970 115934 -1 2180 23 1405 2540 172113 40649 3.40705 3.40705 -114.855 -3.40705 0 0 612192. 2118.31 0.03 0.08 0.10 -1 -1 0.03 0.0283837 0.0247165 134 4 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_076.v common 3.53 vpr 62.97 MiB -1 -1 0.23 18332 1 0.07 -1 -1 30300 -1 -1 30 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64484 32 32 350 275 1 209 94 17 17 289 -1 unnamed_device 24.2 MiB 0.12 1246 10957 2695 7343 919 63.0 MiB 0.14 0.00 4.99112 -158.75 -4.99112 4.99112 0.32 0.000702283 0.000653206 0.0389072 0.0361679 -1 -1 -1 -1 32 2654 21 6.65987e+06 380340 554710. 1919.41 0.57 0.124134 0.10938 22834 132086 -1 2391 19 1400 2095 119781 30173 3.76891 3.76891 -138.842 -3.76891 0 0 701300. 2426.64 0.03 0.07 0.11 -1 -1 0.03 0.0273598 0.0240069 151 34 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_077.v common 3.66 vpr 62.86 MiB -1 -1 0.15 18304 1 0.03 -1 -1 30268 -1 -1 37 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64372 32 32 385 308 1 182 101 17 17 289 -1 unnamed_device 23.7 MiB 0.10 1079 12086 3142 8350 594 62.9 MiB 0.13 0.00 4.38712 -137.823 -4.38712 4.38712 0.34 0.000739796 0.000684245 0.0423435 0.0392 -1 -1 -1 -1 26 3085 30 6.65987e+06 469086 477104. 1650.88 0.90 0.14435 0.126948 21682 110474 -1 2287 20 1476 2654 180213 42690 3.41471 3.41471 -132.144 -3.41471 0 0 585099. 2024.56 0.02 0.05 0.06 -1 -1 0.02 0.0171805 0.0153037 143 65 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_078.v common 3.43 vpr 63.40 MiB -1 -1 0.25 18444 1 0.03 -1 -1 30348 -1 -1 43 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64924 32 32 387 309 1 190 107 17 17 289 -1 unnamed_device 23.6 MiB 0.12 1123 22877 7503 11320 4054 63.4 MiB 0.18 0.00 4.30832 -134.467 -4.30832 4.30832 0.31 0.000750956 0.000697579 0.0704916 0.0653897 -1 -1 -1 -1 30 3178 41 6.65987e+06 545154 526063. 1820.29 1.23 0.194275 0.172022 22546 126617 -1 2210 20 1341 2401 169392 39910 3.57111 3.57111 -125.638 -3.57111 0 0 666494. 2306.21 0.03 0.08 0.10 -1 -1 0.03 0.0298434 0.0261358 147 65 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_079.v common 2.59 vpr 63.26 MiB -1 -1 0.23 18128 1 0.03 -1 -1 30188 -1 -1 21 30 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64776 30 32 272 232 1 147 83 17 17 289 -1 unnamed_device 23.7 MiB 0.11 704 8363 1755 6223 385 63.3 MiB 0.09 0.00 3.74343 -108.246 -3.74343 3.74343 0.31 0.000579714 0.000539557 0.0290906 0.0270951 -1 -1 -1 -1 32 1650 19 6.65987e+06 266238 554710. 1919.41 0.52 0.0923774 0.0813121 22834 132086 -1 1345 19 836 1444 76832 20508 2.45585 2.45585 -90.9532 -2.45585 0 0 701300. 2426.64 0.04 0.06 0.13 -1 -1 0.04 0.0289157 0.0251587 109 34 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_080.v common 2.81 vpr 62.67 MiB -1 -1 0.26 18508 1 0.03 -1 -1 30404 -1 -1 27 30 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64176 30 32 375 299 1 187 89 17 17 289 -1 unnamed_device 23.6 MiB 0.13 1064 12365 3291 6967 2107 62.7 MiB 0.13 0.00 4.67895 -138.029 -4.67895 4.67895 0.31 0.000725007 0.000674131 0.0480908 0.0447495 -1 -1 -1 -1 28 2343 23 6.65987e+06 342306 500653. 1732.36 0.62 0.136452 0.120796 21970 115934 -1 1980 22 1486 2399 145841 36399 3.50937 3.50937 -127.985 -3.50937 0 0 612192. 2118.31 0.03 0.08 0.10 -1 -1 0.03 0.0317457 0.027759 147 63 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_081.v common 2.65 vpr 63.50 MiB -1 -1 0.23 18316 1 0.03 -1 -1 30344 -1 -1 30 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65028 32 32 340 270 1 200 94 17 17 289 -1 unnamed_device 23.8 MiB 0.10 1145 13939 3986 8000 1953 63.5 MiB 0.15 0.00 5.09463 -149.184 -5.09463 5.09463 0.29 0.000696151 0.000641679 0.0475882 0.0442297 -1 -1 -1 -1 30 2536 25 6.65987e+06 380340 526063. 1820.29 0.55 0.133121 0.117514 22546 126617 -1 2135 21 1195 1902 103374 25035 3.52651 3.52651 -127.669 -3.52651 0 0 666494. 2306.21 0.03 0.07 0.10 -1 -1 0.03 0.0288516 0.0252219 145 34 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_082.v common 3.16 vpr 62.95 MiB -1 -1 0.25 18368 1 0.03 -1 -1 30256 -1 -1 35 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64464 31 32 340 275 1 196 98 17 17 289 -1 unnamed_device 23.9 MiB 0.18 1110 13148 3427 8545 1176 63.0 MiB 0.13 0.00 5.06667 -144.178 -5.06667 5.06667 0.32 0.000692547 0.00064179 0.0430229 0.0399631 -1 -1 -1 -1 34 2291 34 6.65987e+06 443730 585099. 2024.56 0.95 0.190217 0.165664 23122 138558 -1 2068 20 1254 2153 127671 32495 3.93437 3.93437 -132.32 -3.93437 0 0 742403. 2568.87 0.03 0.07 0.11 -1 -1 0.03 0.0277139 0.0242435 151 47 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_083.v common 3.18 vpr 63.29 MiB -1 -1 0.25 18368 1 0.03 -1 -1 30392 -1 -1 38 30 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64808 30 32 377 310 1 177 100 17 17 289 -1 unnamed_device 23.6 MiB 0.48 1101 17500 4849 10565 2086 63.3 MiB 0.18 0.00 4.57218 -136.411 -4.57218 4.57218 0.32 0.000708472 0.000656727 0.0563314 0.0522355 -1 -1 -1 -1 32 2218 20 6.65987e+06 481764 554710. 1919.41 0.57 0.140582 0.124466 22834 132086 -1 1948 18 856 1457 86125 21283 2.99737 2.99737 -113.429 -2.99737 0 0 701300. 2426.64 0.03 0.06 0.11 -1 -1 0.03 0.0270237 0.0236907 144 83 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_084.v common 2.62 vpr 62.48 MiB -1 -1 0.23 18356 1 0.03 -1 -1 30296 -1 -1 25 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63980 32 32 365 294 1 185 89 17 17 289 -1 unnamed_device 23.5 MiB 0.06 1122 13553 4012 8179 1362 62.5 MiB 0.15 0.00 4.81329 -139.106 -4.81329 4.81329 0.32 0.000714193 0.000663522 0.0516073 0.0479635 -1 -1 -1 -1 32 2281 22 6.65987e+06 316950 554710. 1919.41 0.55 0.136853 0.120971 22834 132086 -1 2146 22 1289 2236 137417 32546 3.53711 3.53711 -130.489 -3.53711 0 0 701300. 2426.64 0.03 0.07 0.11 -1 -1 0.03 0.0309713 0.0270326 141 57 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_085.v common 2.70 vpr 62.69 MiB -1 -1 0.27 18380 1 0.03 -1 -1 30324 -1 -1 39 29 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64192 29 32 378 310 1 177 100 17 17 289 -1 unnamed_device 23.6 MiB 0.10 929 10076 2437 6533 1106 62.7 MiB 0.11 0.00 4.01172 -111.251 -4.01172 4.01172 0.31 0.000712445 0.000662323 0.0336174 0.0312492 -1 -1 -1 -1 30 1926 20 6.65987e+06 494442 526063. 1820.29 0.52 0.116714 0.10236 22546 126617 -1 1620 16 857 1390 66199 17216 2.81965 2.81965 -101.818 -2.81965 0 0 666494. 2306.21 0.03 0.05 0.10 -1 -1 0.03 0.0244566 0.0214747 137 85 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_086.v common 2.43 vpr 62.31 MiB -1 -1 0.21 17984 1 0.02 -1 -1 30384 -1 -1 19 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63808 32 32 243 205 1 139 83 17 17 289 -1 unnamed_device 23.1 MiB 0.10 885 6923 1715 4767 441 62.3 MiB 0.07 0.00 3.77952 -113.03 -3.77952 3.77952 0.32 0.000553392 0.000515609 0.0230724 0.0214826 -1 -1 -1 -1 26 1838 17 6.65987e+06 240882 477104. 1650.88 0.52 0.0857542 0.0752007 21682 110474 -1 1658 19 797 1244 78852 19566 2.69545 2.69545 -103.315 -2.69545 0 0 585099. 2024.56 0.03 0.07 0.09 -1 -1 0.03 0.0288758 0.0251878 99 3 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_087.v common 2.84 vpr 62.77 MiB -1 -1 0.25 18268 1 0.04 -1 -1 30308 -1 -1 35 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64272 32 32 373 302 1 176 99 17 17 289 -1 unnamed_device 23.7 MiB 0.14 1014 14691 4446 7278 2967 62.8 MiB 0.14 0.00 4.39152 -132.525 -4.39152 4.39152 0.32 0.000727586 0.00067249 0.0500078 0.046285 -1 -1 -1 -1 32 2332 30 6.65987e+06 443730 554710. 1919.41 0.69 0.146265 0.128769 22834 132086 -1 1872 23 1191 1892 138049 33056 3.67671 3.67671 -122.883 -3.67671 0 0 701300. 2426.64 0.03 0.08 0.11 -1 -1 0.03 0.0328304 0.0289108 135 65 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_088.v common 2.92 vpr 62.82 MiB -1 -1 0.27 18284 1 0.04 -1 -1 30228 -1 -1 25 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64324 32 32 397 314 1 196 89 17 17 289 -1 unnamed_device 23.9 MiB 0.24 1125 9989 2357 6341 1291 62.8 MiB 0.12 0.00 4.65798 -147.06 -4.65798 4.65798 0.32 0.000769917 0.000714125 0.0415759 0.0386249 -1 -1 -1 -1 32 2196 23 6.65987e+06 316950 554710. 1919.41 0.57 0.134357 0.118291 22834 132086 -1 1980 20 1409 2358 138276 34236 3.43517 3.43517 -131.636 -3.43517 0 0 701300. 2426.64 0.03 0.08 0.11 -1 -1 0.03 0.0306802 0.0268235 155 65 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_089.v common 2.71 vpr 62.58 MiB -1 -1 0.12 18084 1 0.03 -1 -1 30480 -1 -1 25 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64084 32 32 269 231 1 170 89 17 17 289 -1 unnamed_device 23.5 MiB 0.10 914 12761 3862 6624 2275 62.6 MiB 0.11 0.00 3.89235 -110.098 -3.89235 3.89235 0.32 0.000582899 0.00054225 0.0401361 0.0373356 -1 -1 -1 -1 28 2332 25 6.65987e+06 316950 500653. 1732.36 0.77 0.115487 0.101784 21970 115934 -1 1903 16 902 1209 98404 26607 3.12777 3.12777 -108.549 -3.12777 0 0 612192. 2118.31 0.03 0.05 0.10 -1 -1 0.03 0.019943 0.0174639 117 29 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_090.v common 2.65 vpr 62.34 MiB -1 -1 0.11 17992 1 0.03 -1 -1 30428 -1 -1 23 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63832 31 32 245 205 1 150 86 17 17 289 -1 unnamed_device 23.0 MiB 0.08 859 10103 2730 6499 874 62.3 MiB 0.10 0.00 3.85255 -110.207 -3.85255 3.85255 0.32 0.000555437 0.00051737 0.0315507 0.0293549 -1 -1 -1 -1 32 1661 23 6.65987e+06 291594 554710. 1919.41 0.52 0.0986549 0.0866031 22834 132086 -1 1578 19 919 1562 92559 23224 2.59051 2.59051 -97.3557 -2.59051 0 0 701300. 2426.64 0.03 0.05 0.11 -1 -1 0.03 0.0214232 0.0186898 110 4 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_091.v common 2.94 vpr 62.69 MiB -1 -1 0.25 18408 1 0.05 -1 -1 30416 -1 -1 31 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64196 32 32 348 274 1 211 95 17 17 289 -1 unnamed_device 23.9 MiB 0.08 1109 10031 2519 6610 902 62.7 MiB 0.11 0.00 4.87104 -146.551 -4.87104 4.87104 0.29 0.000698444 0.00064888 0.0352578 0.0327197 -1 -1 -1 -1 28 2980 22 6.65987e+06 393018 500653. 1732.36 0.73 0.127295 0.112131 21970 115934 -1 2316 20 1466 1984 138805 34064 3.84923 3.84923 -141.858 -3.84923 0 0 612192. 2118.31 0.03 0.07 0.10 -1 -1 0.03 0.0282332 0.0247056 151 34 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_092.v common 3.22 vpr 63.35 MiB -1 -1 0.23 18512 1 0.03 -1 -1 30308 -1 -1 37 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64868 32 32 356 289 1 202 101 17 17 289 -1 unnamed_device 23.9 MiB 0.18 1270 17021 5150 9608 2263 63.3 MiB 0.16 0.00 5.06049 -146.913 -5.06049 5.06049 0.32 0.000326262 0.000301131 0.0486664 0.0450209 -1 -1 -1 -1 26 2988 41 6.65987e+06 469086 477104. 1650.88 0.74 0.159099 0.140044 21682 110474 -1 2434 19 1509 2359 161130 37560 4.17677 4.17677 -139.903 -4.17677 0 0 585099. 2024.56 0.03 0.07 0.09 -1 -1 0.03 0.0275016 0.0240929 157 56 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_093.v common 3.13 vpr 63.51 MiB -1 -1 0.16 18148 1 0.03 -1 -1 30108 -1 -1 43 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65036 32 32 349 260 1 204 107 17 17 289 -1 unnamed_device 24.0 MiB 0.09 1310 18070 5249 10836 1985 63.5 MiB 0.18 0.00 5.25009 -142.167 -5.25009 5.25009 0.33 0.000717635 0.000666772 0.0540006 0.0501412 -1 -1 -1 -1 30 2632 26 6.65987e+06 545154 526063. 1820.29 0.63 0.147014 0.130114 22546 126617 -1 2281 21 1345 2651 147508 35512 4.20957 4.20957 -132.922 -4.20957 0 0 666494. 2306.21 0.03 0.08 0.10 -1 -1 0.03 0.0303179 0.0265724 162 3 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_094.v common 2.58 vpr 62.57 MiB -1 -1 0.24 18272 1 0.03 -1 -1 30508 -1 -1 35 30 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64072 30 32 316 264 1 162 97 17 17 289 -1 unnamed_device 23.4 MiB 0.09 934 10531 2543 7170 818 62.6 MiB 0.10 0.00 3.47521 -102.746 -3.47521 3.47521 0.31 0.000642962 0.000598177 0.0327091 0.0304142 -1 -1 -1 -1 26 2134 21 6.65987e+06 443730 477104. 1650.88 0.52 0.108155 0.0949242 21682 110474 -1 1889 19 1136 2017 124547 30766 2.91491 2.91491 -103.283 -2.91491 0 0 585099. 2024.56 0.03 0.06 0.09 -1 -1 0.03 0.025205 0.0220948 124 52 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_095.v common 2.44 vpr 62.41 MiB -1 -1 0.23 18092 1 0.03 -1 -1 30328 -1 -1 25 27 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63912 27 32 255 219 1 132 84 17 17 289 -1 unnamed_device 23.1 MiB 0.06 785 11430 3670 6156 1604 62.4 MiB 0.09 0.00 3.4653 -96.6417 -3.4653 3.4653 0.32 0.00055453 0.000517011 0.0363306 0.0338398 -1 -1 -1 -1 28 1602 21 6.65987e+06 316950 500653. 1732.36 0.48 0.101316 0.0892106 21970 115934 -1 1425 17 804 1293 92891 21943 2.58157 2.58157 -90.7565 -2.58157 0 0 612192. 2118.31 0.03 0.05 0.12 -1 -1 0.03 0.0197648 0.0172594 100 34 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_096.v common 3.26 vpr 63.04 MiB -1 -1 0.26 18600 1 0.03 -1 -1 30316 -1 -1 34 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64556 32 32 421 327 1 232 98 17 17 289 -1 unnamed_device 24.2 MiB 0.11 1363 12248 2996 8404 848 63.0 MiB 0.15 0.00 4.3132 -136.557 -4.3132 4.3132 0.33 0.000803131 0.000747134 0.0468158 0.0435051 -1 -1 -1 -1 26 3971 29 6.65987e+06 431052 477104. 1650.88 1.11 0.159017 0.14008 21682 110474 -1 2900 23 2053 3629 243596 58549 3.77365 3.77365 -132.773 -3.77365 0 0 585099. 2024.56 0.04 0.07 0.10 -1 -1 0.04 0.0224005 0.0199829 176 65 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_097.v common 3.09 vpr 62.79 MiB -1 -1 0.27 18324 1 0.03 -1 -1 30420 -1 -1 27 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64292 31 32 365 296 1 193 90 17 17 289 -1 unnamed_device 23.7 MiB 0.44 973 17175 6014 8082 3079 62.8 MiB 0.17 0.00 5.18035 -150.464 -5.18035 5.18035 0.32 0.00070932 0.00065886 0.0637335 0.0591838 -1 -1 -1 -1 30 2403 24 6.65987e+06 342306 526063. 1820.29 0.64 0.151557 0.134524 22546 126617 -1 1847 18 1178 1814 98515 25469 4.49437 4.49437 -139.894 -4.49437 0 0 666494. 2306.21 0.03 0.06 0.10 -1 -1 0.03 0.0266933 0.0234329 151 64 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_098.v common 2.91 vpr 63.18 MiB -1 -1 0.24 18388 1 0.03 -1 -1 30424 -1 -1 23 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64696 32 32 331 280 1 175 87 17 17 289 -1 unnamed_device 23.4 MiB 0.40 1020 11991 3560 6392 2039 63.2 MiB 0.15 0.00 4.25169 -136.039 -4.25169 4.25169 0.32 0.000864673 0.000803635 0.0533516 0.0496012 -1 -1 -1 -1 32 2019 16 6.65987e+06 291594 554710. 1919.41 0.53 0.127172 0.112926 22834 132086 -1 1798 18 782 1100 71252 17324 3.25897 3.25897 -123.619 -3.25897 0 0 701300. 2426.64 0.03 0.05 0.11 -1 -1 0.03 0.0245208 0.0215202 131 65 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_099.v common 2.95 vpr 62.66 MiB -1 -1 0.24 18380 1 0.03 -1 -1 30324 -1 -1 36 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64168 32 32 326 263 1 176 100 17 17 289 -1 unnamed_device 23.7 MiB 0.09 1117 12164 3459 7844 861 62.7 MiB 0.12 0.00 4.92174 -128.183 -4.92174 4.92174 0.31 0.00066283 0.000615913 0.0374864 0.0347847 -1 -1 -1 -1 26 2516 22 6.65987e+06 456408 477104. 1650.88 0.54 0.119342 0.104951 21682 110474 -1 2181 18 1043 1793 114022 27754 3.30585 3.30585 -116.367 -3.30585 0 0 585099. 2024.56 0.03 0.06 0.09 -1 -1 0.03 0.0251273 0.0220676 133 34 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_100.v common 3.01 vpr 63.32 MiB -1 -1 0.20 18484 1 0.04 -1 -1 30424 -1 -1 38 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64840 31 32 373 294 1 196 101 17 17 289 -1 unnamed_device 23.8 MiB 0.09 1058 9971 2285 7156 530 63.3 MiB 0.12 0.00 4.48315 -116.972 -4.48315 4.48315 0.31 0.000741538 0.000688786 0.0339044 0.0314509 -1 -1 -1 -1 26 2520 24 6.65987e+06 481764 477104. 1650.88 0.66 0.124359 0.108952 21682 110474 -1 2232 24 1463 2428 150433 38162 3.79065 3.79065 -118.424 -3.79065 0 0 585099. 2024.56 0.03 0.08 0.09 -1 -1 0.03 0.0340227 0.0296695 151 50 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_101.v common 3.16 vpr 63.19 MiB -1 -1 0.26 18300 1 0.04 -1 -1 30248 -1 -1 36 30 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64704 30 32 325 268 1 171 98 17 17 289 -1 unnamed_device 23.7 MiB 0.05 942 16973 5403 7874 3696 63.2 MiB 0.16 0.00 3.53041 -100.229 -3.53041 3.53041 0.32 0.000653301 0.000605919 0.0516592 0.0479737 -1 -1 -1 -1 30 2372 36 6.65987e+06 456408 526063. 1820.29 0.98 0.16203 0.144241 22546 126617 -1 1915 21 1116 2063 128410 33008 2.85691 2.85691 -95.9916 -2.85691 0 0 666494. 2306.21 0.03 0.07 0.10 -1 -1 0.03 0.0273585 0.023878 130 51 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_102.v common 3.26 vpr 62.72 MiB -1 -1 0.21 18384 1 0.38 -1 -1 30292 -1 -1 31 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64228 32 32 350 275 1 215 95 17 17 289 -1 unnamed_device 23.9 MiB 0.12 1172 11111 2816 7554 741 62.7 MiB 0.13 0.00 4.87932 -149.985 -4.87932 4.87932 0.31 0.000704536 0.000655125 0.039028 0.0362615 -1 -1 -1 -1 30 2465 23 6.65987e+06 393018 526063. 1820.29 0.61 0.12583 0.110773 22546 126617 -1 2098 20 1422 2275 121154 29090 3.80811 3.80811 -133.242 -3.80811 0 0 666494. 2306.21 0.03 0.07 0.10 -1 -1 0.03 0.0288944 0.0253451 157 34 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_103.v common 2.80 vpr 63.50 MiB -1 -1 0.25 18400 1 0.03 -1 -1 30040 -1 -1 42 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65024 32 32 386 307 1 195 106 17 17 289 -1 unnamed_device 24.0 MiB 0.11 1068 16856 4579 8928 3349 63.5 MiB 0.14 0.00 4.17081 -125.313 -4.17081 4.17081 0.32 0.000746376 0.000693057 0.0533797 0.0495831 -1 -1 -1 -1 32 2577 35 6.65987e+06 532476 554710. 1919.41 0.67 0.159111 0.140204 22834 132086 -1 2028 24 1434 2300 146117 37601 2.97097 2.97097 -114.135 -2.97097 0 0 701300. 2426.64 0.03 0.09 0.11 -1 -1 0.03 0.034841 0.0304283 151 62 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_104.v common 2.34 vpr 62.36 MiB -1 -1 0.11 18144 1 0.03 -1 -1 30284 -1 -1 19 29 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63860 29 32 269 229 1 129 80 17 17 289 -1 unnamed_device 23.4 MiB 0.05 783 14184 4630 8014 1540 62.4 MiB 0.12 0.00 4.07075 -112.394 -4.07075 4.07075 0.32 0.000576339 0.000535755 0.0495872 0.0461609 -1 -1 -1 -1 32 1449 20 6.65987e+06 240882 554710. 1919.41 0.49 0.116661 0.103432 22834 132086 -1 1346 20 716 1069 69828 16923 2.81477 2.81477 -95.7948 -2.81477 0 0 701300. 2426.64 0.03 0.05 0.11 -1 -1 0.03 0.0229956 0.0200317 93 34 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_105.v common 2.80 vpr 62.46 MiB -1 -1 0.24 18388 1 0.03 -1 -1 30332 -1 -1 25 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63964 32 32 310 266 1 175 89 17 17 289 -1 unnamed_device 23.3 MiB 0.08 1007 13949 3952 8258 1739 62.5 MiB 0.12 0.00 4.24766 -126.418 -4.24766 4.24766 0.32 0.000481589 0.000443594 0.0432888 0.0401085 -1 -1 -1 -1 32 1793 18 6.65987e+06 316950 554710. 1919.41 0.52 0.11537 0.101824 22834 132086 -1 1672 14 756 1020 62601 15811 3.06877 3.06877 -112.763 -3.06877 0 0 701300. 2426.64 0.03 0.05 0.11 -1 -1 0.03 0.0198489 0.017478 122 58 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_106.v common 3.17 vpr 63.25 MiB -1 -1 0.14 18252 1 0.03 -1 -1 30304 -1 -1 42 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64764 31 32 326 261 1 177 105 17 17 289 -1 unnamed_device 23.7 MiB 0.08 926 12208 3208 7327 1673 63.2 MiB 0.12 0.00 4.58372 -118.506 -4.58372 4.58372 0.32 0.000667937 0.000620673 0.0353145 0.0327327 -1 -1 -1 -1 26 2937 44 6.65987e+06 532476 477104. 1650.88 1.20 0.138033 0.120779 21682 110474 -1 2199 22 1468 2656 200310 48980 3.35491 3.35491 -114.974 -3.35491 0 0 585099. 2024.56 0.03 0.08 0.09 -1 -1 0.03 0.0289022 0.0251966 137 33 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_107.v common 2.43 vpr 62.43 MiB -1 -1 0.25 18116 1 0.03 -1 -1 30216 -1 -1 27 29 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63924 29 32 262 224 1 168 88 17 17 289 -1 unnamed_device 23.3 MiB 0.07 896 15103 4215 9146 1742 62.4 MiB 0.13 0.00 4.17458 -112.81 -4.17458 4.17458 0.32 0.000565255 0.00052655 0.0458425 0.0426624 -1 -1 -1 -1 26 2150 22 6.65987e+06 342306 477104. 1650.88 0.56 0.115868 0.102438 21682 110474 -1 1818 17 869 1145 81501 19964 3.11697 3.11697 -104.705 -3.11697 0 0 585099. 2024.56 0.03 0.05 0.09 -1 -1 0.03 0.0201079 0.0175635 116 31 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_108.v common 2.77 vpr 62.43 MiB -1 -1 0.23 18156 1 0.03 -1 -1 30128 -1 -1 19 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63924 32 32 278 238 1 148 83 17 17 289 -1 unnamed_device 23.4 MiB 0.11 798 11243 4185 5675 1383 62.4 MiB 0.11 0.00 3.71146 -112.967 -3.71146 3.71146 0.31 0.000604244 0.000562734 0.0399845 0.0372544 -1 -1 -1 -1 28 2050 48 6.65987e+06 240882 500653. 1732.36 0.81 0.135941 0.119249 21970 115934 -1 1636 23 1302 2195 133693 34634 2.95805 2.95805 -111.835 -2.95805 0 0 612192. 2118.31 0.03 0.07 0.10 -1 -1 0.03 0.0268582 0.0233235 111 34 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_109.v common 2.34 vpr 63.27 MiB -1 -1 0.25 18380 1 0.03 -1 -1 30168 -1 -1 40 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64788 31 32 373 300 1 181 103 17 17 289 -1 unnamed_device 23.6 MiB 0.11 943 8779 1827 6626 326 63.3 MiB 0.06 0.00 4.01172 -118.652 -4.01172 4.01172 0.29 0.000338799 0.000305712 0.0146354 0.0133262 -1 -1 -1 -1 30 1947 20 6.65987e+06 507120 526063. 1820.29 0.43 0.0819746 0.0711925 22546 126617 -1 1728 19 1148 1951 98929 24137 3.06517 3.06517 -108.924 -3.06517 0 0 666494. 2306.21 0.03 0.06 0.10 -1 -1 0.03 0.0279109 0.024443 141 64 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_110.v common 2.43 vpr 62.47 MiB -1 -1 0.23 18124 1 0.03 -1 -1 30340 -1 -1 25 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63972 31 32 265 230 1 163 88 17 17 289 -1 unnamed_device 23.3 MiB 0.07 930 10228 2669 6535 1024 62.5 MiB 0.10 0.00 3.8161 -117.091 -3.8161 3.8161 0.32 0.000591034 0.000543686 0.0323042 0.0300571 -1 -1 -1 -1 32 1836 21 6.65987e+06 316950 554710. 1919.41 0.49 0.100283 0.0881994 22834 132086 -1 1638 17 808 1220 76603 18529 2.93457 2.93457 -107.171 -2.93457 0 0 701300. 2426.64 0.03 0.05 0.11 -1 -1 0.03 0.0213134 0.0187932 115 34 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_111.v common 2.63 vpr 62.65 MiB -1 -1 0.23 18412 1 0.03 -1 -1 30008 -1 -1 37 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64156 32 32 349 286 1 171 101 17 17 289 -1 unnamed_device 23.6 MiB 0.11 1077 18196 4934 11069 2193 62.7 MiB 0.16 0.00 3.54324 -109.963 -3.54324 3.54324 0.32 0.000538895 0.000495325 0.0514617 0.0475687 -1 -1 -1 -1 32 2182 22 6.65987e+06 469086 554710. 1919.41 0.56 0.134851 0.118993 22834 132086 -1 1852 21 982 1748 107334 25210 2.76771 2.76771 -104.243 -2.76771 0 0 701300. 2426.64 0.03 0.07 0.11 -1 -1 0.03 0.0290857 0.025433 131 57 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_112.v common 2.95 vpr 63.34 MiB -1 -1 0.25 18248 1 0.03 -1 -1 30416 -1 -1 36 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64856 31 32 396 325 1 183 99 17 17 289 -1 unnamed_device 23.6 MiB 0.43 972 13779 3191 9639 949 63.3 MiB 0.14 0.00 3.95996 -122.236 -3.95996 3.95996 0.32 0.000747206 0.000693562 0.0474696 0.044021 -1 -1 -1 -1 28 2311 22 6.65987e+06 456408 500653. 1732.36 0.56 0.141858 0.125311 21970 115934 -1 2026 23 1471 2170 141402 36233 3.06423 3.06423 -122.172 -3.06423 0 0 612192. 2118.31 0.03 0.09 0.10 -1 -1 0.03 0.0405449 0.0360275 145 91 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_113.v common 2.71 vpr 62.60 MiB -1 -1 0.24 18320 1 0.03 -1 -1 30252 -1 -1 20 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64104 32 32 303 262 1 150 84 17 17 289 -1 unnamed_device 23.5 MiB 0.11 931 10149 2799 6536 814 62.6 MiB 0.10 0.00 3.26564 -102.038 -3.26564 3.26564 0.31 0.000623729 0.00058006 0.0365945 0.0339944 -1 -1 -1 -1 32 1792 21 6.65987e+06 253560 554710. 1919.41 0.51 0.112588 0.0993539 22834 132086 -1 1603 17 732 1143 64605 16743 2.62971 2.62971 -101.046 -2.62971 0 0 701300. 2426.64 0.03 0.05 0.12 -1 -1 0.03 0.0221088 0.0193181 111 57 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_114.v common 2.48 vpr 62.46 MiB -1 -1 0.22 18348 1 0.02 -1 -1 30420 -1 -1 26 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63956 32 32 290 244 1 177 90 17 17 289 -1 unnamed_device 23.3 MiB 0.08 852 6924 1415 4674 835 62.5 MiB 0.07 0.00 4.16652 -123.951 -4.16652 4.16652 0.32 0.000611583 0.00056898 0.0232007 0.0215469 -1 -1 -1 -1 30 2146 23 6.65987e+06 329628 526063. 1820.29 0.60 0.0975585 0.0850677 22546 126617 -1 1676 20 1036 1560 84668 22482 3.03051 3.03051 -112.2 -3.03051 0 0 666494. 2306.21 0.03 0.06 0.09 -1 -1 0.03 0.0244389 0.0213206 124 34 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_115.v common 2.98 vpr 62.71 MiB -1 -1 0.24 18244 1 0.03 -1 -1 30184 -1 -1 28 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64212 32 32 318 257 1 194 92 17 17 289 -1 unnamed_device 23.7 MiB 0.10 1091 8579 1943 6143 493 62.7 MiB 0.09 0.00 4.54938 -126.236 -4.54938 4.54938 0.36 0.000668476 0.000621141 0.0296112 0.0275522 -1 -1 -1 -1 26 2549 22 6.65987e+06 354984 477104. 1650.88 0.56 0.111992 0.0982032 21682 110474 -1 2178 22 1223 1795 118510 28680 3.58451 3.58451 -120.815 -3.58451 0 0 585099. 2024.56 0.03 0.07 0.09 -1 -1 0.03 0.0288121 0.0251317 138 30 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_116.v common 2.56 vpr 62.76 MiB -1 -1 0.25 18384 1 0.03 -1 -1 30248 -1 -1 36 29 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64268 29 32 324 268 1 168 97 17 17 289 -1 unnamed_device 23.5 MiB 0.11 1042 6535 1424 4454 657 62.8 MiB 0.07 0.00 4.20872 -115.808 -4.20872 4.20872 0.31 0.000653114 0.000605773 0.021466 0.0199964 -1 -1 -1 -1 30 1967 16 6.65987e+06 456408 526063. 1820.29 0.50 0.0934942 0.0815178 22546 126617 -1 1808 19 714 1267 68406 16641 2.71491 2.71491 -97.6025 -2.71491 0 0 666494. 2306.21 0.03 0.06 0.10 -1 -1 0.03 0.0257432 0.0225677 129 55 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_117.v common 2.87 vpr 63.45 MiB -1 -1 0.23 18276 1 0.03 -1 -1 30480 -1 -1 30 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64968 32 32 393 312 1 213 94 17 17 289 -1 unnamed_device 23.8 MiB 0.11 1136 17773 5438 9801 2534 63.4 MiB 0.19 0.00 5.18709 -160.79 -5.18709 5.18709 0.32 0.000751899 0.000698984 0.0661306 0.0614276 -1 -1 -1 -1 32 2400 22 6.65987e+06 380340 554710. 1919.41 0.61 0.167742 0.148709 22834 132086 -1 2213 22 1428 1987 125431 30881 3.96237 3.96237 -142.636 -3.96237 0 0 701300. 2426.64 0.04 0.10 0.11 -1 -1 0.04 0.0400136 0.0353947 159 65 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_118.v common 2.46 vpr 62.59 MiB -1 -1 0.23 17952 1 0.03 -1 -1 30084 -1 -1 21 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64092 31 32 229 197 1 138 84 17 17 289 -1 unnamed_device 23.3 MiB 0.07 877 10515 2651 6990 874 62.6 MiB 0.10 0.00 3.28101 -98.7222 -3.28101 3.28101 0.34 0.000534255 0.000496925 0.0325397 0.0303173 -1 -1 -1 -1 26 1877 19 6.65987e+06 266238 477104. 1650.88 0.50 0.0939242 0.0826791 21682 110474 -1 1635 20 877 1459 98976 23834 2.63371 2.63371 -97.6023 -2.63371 0 0 585099. 2024.56 0.03 0.05 0.10 -1 -1 0.03 0.0218513 0.0190899 100 4 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_119.v common 2.65 vpr 62.72 MiB -1 -1 0.24 18344 1 0.03 -1 -1 30248 -1 -1 37 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64228 32 32 412 334 1 190 101 17 17 289 -1 unnamed_device 23.8 MiB 0.09 1128 13026 3490 8482 1054 62.7 MiB 0.15 0.00 4.18264 -138.84 -4.18264 4.18264 0.32 0.00077668 0.000721567 0.0462737 0.0429443 -1 -1 -1 -1 32 2113 19 6.65987e+06 469086 554710. 1919.41 0.54 0.135721 0.119721 22834 132086 -1 1946 19 1104 1594 96411 24003 3.39911 3.39911 -128.845 -3.39911 0 0 701300. 2426.64 0.03 0.07 0.11 -1 -1 0.03 0.0296925 0.0260202 146 90 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_120.v common 2.64 vpr 62.69 MiB -1 -1 0.24 18448 1 0.03 -1 -1 30108 -1 -1 18 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64192 32 32 376 318 1 156 82 17 17 289 -1 unnamed_device 23.7 MiB 0.11 914 11474 3086 6952 1436 62.7 MiB 0.13 0.00 3.54227 -124.771 -3.54227 3.54227 0.32 0.000718606 0.000667277 0.049602 0.046095 -1 -1 -1 -1 32 1720 17 6.65987e+06 228204 554710. 1919.41 0.53 0.129159 0.114224 22834 132086 -1 1578 21 1236 1858 105693 26868 2.87077 2.87077 -119.337 -2.87077 0 0 701300. 2426.64 0.03 0.07 0.11 -1 -1 0.03 0.0294216 0.0256661 117 96 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_121.v common 2.69 vpr 63.28 MiB -1 -1 0.15 18304 1 0.03 -1 -1 30320 -1 -1 35 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64796 32 32 360 293 1 179 99 17 17 289 -1 unnamed_device 23.6 MiB 0.09 987 16059 4384 8773 2902 63.3 MiB 0.15 0.00 3.84552 -115.819 -3.84552 3.84552 0.33 0.000588113 0.000522126 0.0529609 0.0491666 -1 -1 -1 -1 32 2087 20 6.65987e+06 443730 554710. 1919.41 0.55 0.136764 0.121046 22834 132086 -1 1731 18 919 1426 73695 19390 2.62331 2.62331 -97.5338 -2.62331 0 0 701300. 2426.64 0.03 0.06 0.11 -1 -1 0.03 0.0269736 0.023685 134 60 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_122.v common 3.78 vpr 63.52 MiB -1 -1 0.15 18496 1 0.03 -1 -1 30488 -1 -1 34 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65040 32 32 396 299 1 236 98 17 17 289 -1 unnamed_device 23.9 MiB 0.16 1229 18773 5439 9701 3633 63.5 MiB 0.18 0.00 6.00689 -176.035 -6.00689 6.00689 0.34 0.000348158 0.00032017 0.0661284 0.0613889 -1 -1 -1 -1 36 2968 23 6.65987e+06 431052 612192. 2118.31 1.43 0.227075 0.199663 23410 145293 -1 2288 21 1763 2474 164498 42055 4.85537 4.85537 -153.246 -4.85537 0 0 782063. 2706.10 0.04 0.07 0.11 -1 -1 0.04 0.0231769 0.0207501 177 34 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_123.v common 2.52 vpr 62.36 MiB -1 -1 0.16 18020 1 0.03 -1 -1 30244 -1 -1 22 30 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63860 30 32 224 207 1 138 84 17 17 289 -1 unnamed_device 23.1 MiB 0.06 852 12894 3845 7396 1653 62.4 MiB 0.10 0.00 3.23481 -100.258 -3.23481 3.23481 0.34 0.000510384 0.000474865 0.0371748 0.0345906 -1 -1 -1 -1 26 1611 17 6.65987e+06 278916 477104. 1650.88 0.51 0.0938904 0.0829793 21682 110474 -1 1486 21 811 1082 72254 17229 2.47811 2.47811 -92.0662 -2.47811 0 0 585099. 2024.56 0.03 0.05 0.09 -1 -1 0.03 0.0207099 0.0179707 92 34 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_124.v common 2.53 vpr 62.52 MiB -1 -1 0.22 18088 1 0.03 -1 -1 30344 -1 -1 19 30 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64024 30 32 286 239 1 134 81 17 17 289 -1 unnamed_device 23.4 MiB 0.13 726 6206 1469 4338 399 62.5 MiB 0.07 0.00 3.83543 -111.011 -3.83543 3.83543 0.37 0.000605709 0.000564518 0.0236706 0.0220708 -1 -1 -1 -1 26 1610 20 6.65987e+06 240882 477104. 1650.88 0.53 0.0949303 0.0830353 21682 110474 -1 1409 23 974 1626 100425 25629 2.75671 2.75671 -100.414 -2.75671 0 0 585099. 2024.56 0.03 0.06 0.09 -1 -1 0.03 0.0268728 0.0233444 95 34 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_125.v common 2.42 vpr 62.57 MiB -1 -1 0.22 18080 1 0.03 -1 -1 30224 -1 -1 26 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64068 32 32 296 247 1 157 90 17 17 289 -1 unnamed_device 23.4 MiB 0.04 895 10743 2661 7468 614 62.6 MiB 0.11 0.00 3.40601 -112.209 -3.40601 3.40601 0.32 0.00062309 0.000578838 0.035642 0.0331161 -1 -1 -1 -1 30 1998 21 6.65987e+06 329628 526063. 1820.29 0.53 0.109538 0.0962499 22546 126617 -1 1787 19 1000 1863 116906 27007 2.62131 2.62131 -107.844 -2.62131 0 0 666494. 2306.21 0.03 0.06 0.11 -1 -1 0.03 0.0239702 0.0209204 119 34 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_126.v common 2.34 vpr 62.84 MiB -1 -1 0.18 18092 1 0.03 -1 -1 30204 -1 -1 31 25 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64344 25 32 216 194 1 122 88 17 17 289 -1 unnamed_device 23.3 MiB 0.05 585 13543 5050 6010 2483 62.8 MiB 0.09 0.00 3.20881 -76.0367 -3.20881 3.20881 0.31 0.000476823 0.000443446 0.0348307 0.0323661 -1 -1 -1 -1 32 1282 22 6.65987e+06 393018 554710. 1919.41 0.48 0.093598 0.0826235 22834 132086 -1 1105 18 667 1079 58646 15667 2.41205 2.41205 -71.6142 -2.41205 0 0 701300. 2426.64 0.04 0.04 0.11 -1 -1 0.04 0.0162517 0.0144498 93 29 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_127.v common 2.76 vpr 62.72 MiB -1 -1 0.25 18368 1 0.03 -1 -1 30276 -1 -1 24 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64228 32 32 376 307 1 185 88 17 17 289 -1 unnamed_device 23.7 MiB 0.10 1096 16858 5655 8603 2600 62.7 MiB 0.19 0.00 4.02912 -126.938 -4.02912 4.02912 0.34 0.000728074 0.000676381 0.0716169 0.0664747 -1 -1 -1 -1 32 2481 19 6.65987e+06 304272 554710. 1919.41 0.57 0.157198 0.140094 22834 132086 -1 2115 20 1266 2266 138051 33347 3.36005 3.36005 -118.607 -3.36005 0 0 701300. 2426.64 0.03 0.07 0.11 -1 -1 0.03 0.029559 0.0258418 137 72 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_128.v common 2.87 vpr 62.85 MiB -1 -1 0.26 18272 1 0.04 -1 -1 30256 -1 -1 42 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64356 31 32 409 331 1 191 105 17 17 289 -1 unnamed_device 23.9 MiB 0.11 987 19124 5334 10330 3460 62.8 MiB 0.19 0.00 3.91658 -124.769 -3.91658 3.91658 0.32 0.000756341 0.000701237 0.0615584 0.0570229 -1 -1 -1 -1 32 2113 20 6.65987e+06 532476 554710. 1919.41 0.60 0.154524 0.136607 22834 132086 -1 1837 19 1226 1995 117145 29196 2.79751 2.79751 -109.839 -2.79751 0 0 701300. 2426.64 0.03 0.07 0.11 -1 -1 0.03 0.0292829 0.0256389 148 90 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_001.v common 11.61 vpr 64.05 MiB -1 -1 0.24 18320 1 0.03 -1 -1 30228 -1 -1 24 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65588 32 32 354 285 1 191 88 17 17 289 -1 unnamed_device 24.5 MiB 1.20 903 15298 5538 7704 2056 64.1 MiB 0.13 0.00 5.15265 -149.781 -5.15265 5.15265 0.35 0.000701928 0.000652099 0.0579569 0.0538537 -1 -1 -1 -1 40 2487 22 6.95648e+06 347416 706193. 2443.58 8.24 0.381864 0.330066 26914 176310 -1 2069 20 1681 2521 193589 46028 4.70236 4.70236 -152.72 -4.70236 0 0 926341. 3205.33 0.04 0.08 0.14 -1 -1 0.04 0.0283789 0.0248703 85 50 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_002.v common 6.23 vpr 63.55 MiB -1 -1 0.25 18552 1 0.03 -1 -1 30328 -1 -1 18 30 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65072 30 32 363 293 1 187 80 17 17 289 -1 unnamed_device 24.5 MiB 1.72 822 9540 3866 5233 441 63.5 MiB 0.10 0.00 4.21658 -127.866 -4.21658 4.21658 0.35 0.000715716 0.00066455 0.0428595 0.0398403 -1 -1 -1 -1 40 2503 31 6.95648e+06 260562 706193. 2443.58 1.90 0.201124 0.174937 26914 176310 -1 2075 22 1955 2787 228608 53991 4.26192 4.26192 -142.656 -4.26192 0 0 926341. 3205.33 0.04 0.09 0.15 -1 -1 0.04 0.0315981 0.0277047 79 63 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_003.v common 9.49 vpr 63.92 MiB -1 -1 0.12 18316 1 0.03 -1 -1 30420 -1 -1 18 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65456 32 32 299 247 1 182 82 17 17 289 -1 unnamed_device 24.2 MiB 0.81 857 12542 4298 6587 1657 63.9 MiB 0.11 0.00 3.78245 -113.708 -3.78245 3.78245 0.33 0.000620895 0.000576964 0.0461334 0.0428945 -1 -1 -1 -1 38 2559 29 6.95648e+06 260562 678818. 2348.85 6.65 0.331323 0.286653 26626 170182 -1 1862 21 1299 1736 126709 31550 3.72492 3.72492 -120.57 -3.72492 0 0 902133. 3121.57 0.04 0.07 0.14 -1 -1 0.04 0.0271238 0.023716 74 29 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_004.v common 4.01 vpr 64.01 MiB -1 -1 0.24 18400 1 0.03 -1 -1 30284 -1 -1 23 29 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65548 29 32 308 248 1 162 84 17 17 289 -1 unnamed_device 24.3 MiB 0.21 713 12894 4756 6364 1774 64.0 MiB 0.11 0.00 3.96328 -113.694 -3.96328 3.96328 0.33 0.000637533 0.000592304 0.046852 0.043548 -1 -1 -1 -1 36 2424 31 6.95648e+06 332941 648988. 2245.63 1.85 0.192789 0.167961 26050 158493 -1 1795 24 1592 2700 214858 50665 4.07691 4.07691 -125.389 -4.07691 0 0 828058. 2865.25 0.03 0.05 0.09 -1 -1 0.03 0.0184205 0.016334 73 31 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_005.v common 4.13 vpr 63.91 MiB -1 -1 0.24 18416 1 0.03 -1 -1 30432 -1 -1 21 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65440 32 32 336 268 1 167 85 17 17 289 -1 unnamed_device 24.2 MiB 0.30 799 12919 4266 6230 2423 63.9 MiB 0.14 0.00 3.92082 -123.639 -3.92082 3.92082 0.33 0.000689843 0.000640891 0.0579711 0.053704 -1 -1 -1 -1 40 2419 26 6.95648e+06 303989 706193. 2443.58 1.73 0.195597 0.171434 26914 176310 -1 1974 23 1432 2633 220972 49560 4.01942 4.01942 -133.562 -4.01942 0 0 926341. 3205.33 0.04 0.09 0.14 -1 -1 0.04 0.0306242 0.026712 76 34 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_006.v common 4.55 vpr 63.35 MiB -1 -1 0.25 18324 1 0.03 -1 -1 30296 -1 -1 25 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64868 32 32 366 295 1 182 89 17 17 289 -1 unnamed_device 24.5 MiB 0.40 1004 13949 3867 8912 1170 63.3 MiB 0.13 0.00 3.1127 -117.428 -3.1127 3.1127 0.33 0.000898578 0.000838343 0.0537559 0.0498994 -1 -1 -1 -1 34 2773 40 6.95648e+06 361892 618332. 2139.56 2.07 0.217268 0.189412 25762 151098 -1 2255 18 1337 2010 155622 35041 3.22637 3.22637 -127.705 -3.22637 0 0 787024. 2723.27 0.03 0.07 0.12 -1 -1 0.03 0.0266073 0.0233266 81 58 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_007.v common 6.63 vpr 63.88 MiB -1 -1 0.23 18196 1 0.03 -1 -1 30616 -1 -1 14 27 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65412 27 32 259 221 1 124 73 17 17 289 -1 unnamed_device 24.3 MiB 2.35 446 7825 3025 3749 1051 63.9 MiB 0.07 0.00 3.35433 -89.8611 -3.35433 3.35433 0.33 0.000554723 0.000515636 0.0305449 0.028442 -1 -1 -1 -1 36 1857 48 6.95648e+06 202660 648988. 2245.63 2.33 0.16939 0.146242 26050 158493 -1 1247 22 1095 1726 134988 35763 3.23827 3.23827 -101.735 -3.23827 0 0 828058. 2865.25 0.03 0.06 0.13 -1 -1 0.03 0.0242115 0.0210147 52 34 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_008.v common 4.37 vpr 63.25 MiB -1 -1 0.23 17708 1 0.03 -1 -1 30068 -1 -1 27 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64772 31 32 271 219 1 157 90 17 17 289 -1 unnamed_device 24.3 MiB 0.18 837 12552 4747 6820 985 63.3 MiB 0.09 0.00 2.9854 -94.3513 -2.9854 2.9854 0.32 0.000606549 0.000563903 0.0345449 0.0320468 -1 -1 -1 -1 38 2223 36 6.95648e+06 390843 678818. 2348.85 2.18 0.173002 0.150128 26626 170182 -1 1775 22 1069 1744 163155 43059 2.85332 2.85332 -102.02 -2.85332 0 0 902133. 3121.57 0.03 0.07 0.14 -1 -1 0.03 0.0257753 0.0224497 69 4 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_009.v common 4.65 vpr 63.92 MiB -1 -1 0.25 18508 1 0.03 -1 -1 30100 -1 -1 14 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65456 31 32 317 271 1 163 77 17 17 289 -1 unnamed_device 24.2 MiB 1.29 692 10020 3492 4756 1772 63.9 MiB 0.09 0.00 3.0607 -105.45 -3.0607 3.0607 0.33 0.0006448 0.000599995 0.0416218 0.0387606 -1 -1 -1 -1 44 1959 43 6.95648e+06 202660 787024. 2723.27 1.23 0.171561 0.149167 27778 195446 -1 1416 30 1474 2113 157739 39570 3.33877 3.33877 -112.874 -3.33877 0 0 997811. 3452.63 0.04 0.08 0.16 -1 -1 0.04 0.0348234 0.0301099 63 64 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_010.v common 3.92 vpr 63.82 MiB -1 -1 0.20 18068 1 0.03 -1 -1 29996 -1 -1 11 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65348 32 32 298 248 1 150 75 17 17 289 -1 unnamed_device 24.4 MiB 0.82 631 10503 4334 5853 316 63.8 MiB 0.10 0.00 3.30308 -115.551 -3.30308 3.30308 0.33 0.0006312 0.000584843 0.0439573 0.0408989 -1 -1 -1 -1 42 1721 25 6.95648e+06 159232 744469. 2576.02 1.03 0.17109 0.149045 27202 183097 -1 1354 19 1057 1489 99641 25380 3.14782 3.14782 -113.598 -3.14782 0 0 949917. 3286.91 0.04 0.06 0.15 -1 -1 0.04 0.0240878 0.0210586 60 34 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_011.v common 4.30 vpr 63.69 MiB -1 -1 0.24 18432 1 0.03 -1 -1 30336 -1 -1 13 30 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65216 30 32 303 262 1 135 75 17 17 289 -1 unnamed_device 24.3 MiB 0.89 501 7975 2162 4189 1624 63.7 MiB 0.07 0.00 3.32418 -98.7921 -3.32418 3.32418 0.33 0.000626842 0.000583299 0.033361 0.031035 -1 -1 -1 -1 42 1361 50 6.95648e+06 188184 744469. 2576.02 1.38 0.180268 0.155588 27202 183097 -1 1018 21 1057 1561 93379 26253 2.99162 2.99162 -104.394 -2.99162 0 0 949917. 3286.91 0.04 0.06 0.15 -1 -1 0.04 0.0261378 0.022782 54 63 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_012.v common 4.57 vpr 63.32 MiB -1 -1 0.23 18088 1 0.03 -1 -1 30204 -1 -1 13 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64844 32 32 276 237 1 161 77 17 17 289 -1 unnamed_device 24.3 MiB 1.18 717 11487 4799 6349 339 63.3 MiB 0.05 0.00 3.36853 -108.171 -3.36853 3.36853 0.32 0.000263884 0.000242125 0.0203308 0.0187078 -1 -1 -1 -1 42 2258 41 6.95648e+06 188184 744469. 2576.02 1.40 0.152874 0.131337 27202 183097 -1 1691 23 1303 1654 162426 40261 3.05107 3.05107 -115.385 -3.05107 0 0 949917. 3286.91 0.04 0.07 0.14 -1 -1 0.04 0.0263999 0.0229264 61 34 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_013.v common 11.03 vpr 63.34 MiB -1 -1 0.25 18344 1 0.03 -1 -1 30272 -1 -1 17 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64864 32 32 344 272 1 194 81 17 17 289 -1 unnamed_device 24.4 MiB 1.33 963 14256 6124 7652 480 63.3 MiB 0.13 0.00 4.10048 -133.291 -4.10048 4.10048 0.33 0.000688322 0.000638252 0.0586569 0.0544325 -1 -1 -1 -1 52 2682 48 6.95648e+06 246087 926341. 3205.33 7.55 0.399651 0.344428 29218 227130 -1 2046 22 1527 2342 196802 44603 3.49922 3.49922 -129.355 -3.49922 0 0 1.14541e+06 3963.36 0.05 0.09 0.18 -1 -1 0.05 0.0310755 0.02722 80 34 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_014.v common 11.11 vpr 63.53 MiB -1 -1 0.14 18364 1 0.03 -1 -1 30292 -1 -1 25 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65052 32 32 363 295 1 174 89 17 17 289 -1 unnamed_device 24.5 MiB 0.37 807 13751 4140 6609 3002 63.5 MiB 0.12 0.00 4.30188 -129.441 -4.30188 4.30188 0.34 0.000722024 0.000670873 0.0521037 0.0484003 -1 -1 -1 -1 42 2744 33 6.95648e+06 361892 744469. 2576.02 8.61 0.359569 0.310163 27202 183097 -1 1947 24 1856 2848 247962 58594 4.34321 4.34321 -142.631 -4.34321 0 0 949917. 3286.91 0.04 0.10 0.15 -1 -1 0.04 0.0323478 0.0281415 78 61 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_015.v common 4.18 vpr 63.60 MiB -1 -1 0.22 18040 1 0.03 -1 -1 30504 -1 -1 18 29 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65124 29 32 248 215 1 132 79 17 17 289 -1 unnamed_device 24.2 MiB 0.43 542 11064 3839 5079 2146 63.6 MiB 0.10 0.00 2.93656 -85.9547 -2.93656 2.93656 0.33 0.000543369 0.000504995 0.0449064 0.0417544 -1 -1 -1 -1 38 1739 25 6.95648e+06 260562 678818. 2348.85 1.60 0.163141 0.142452 26626 170182 -1 1156 20 930 1476 86830 22287 2.86467 2.86467 -90.2809 -2.86467 0 0 902133. 3121.57 0.03 0.05 0.14 -1 -1 0.03 0.0219637 0.0191139 55 27 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_016.v common 9.89 vpr 64.18 MiB -1 -1 0.25 18480 1 0.03 -1 -1 30292 -1 -1 17 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65720 32 32 370 297 1 178 81 17 17 289 -1 unnamed_device 24.6 MiB 0.55 1116 11456 4128 5618 1710 64.2 MiB 0.11 0.00 3.1427 -121.494 -3.1427 3.1427 0.33 0.000717433 0.000666227 0.0497802 0.0462674 -1 -1 -1 -1 38 2695 25 6.95648e+06 246087 678818. 2348.85 7.13 0.321783 0.277821 26626 170182 -1 2317 20 1511 2426 195538 40467 3.13107 3.13107 -128.649 -3.13107 0 0 902133. 3121.57 0.03 0.08 0.14 -1 -1 0.03 0.029045 0.0253744 77 58 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_017.v common 5.39 vpr 64.05 MiB -1 -1 0.23 18332 1 0.03 -1 -1 30084 -1 -1 17 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65592 32 32 338 269 1 190 81 17 17 289 -1 unnamed_device 24.2 MiB 1.49 1015 13031 4708 5937 2386 64.1 MiB 0.12 0.00 3.87402 -125.064 -3.87402 3.87402 0.34 0.000692755 0.000644535 0.0542598 0.0504807 -1 -1 -1 -1 36 2757 49 6.95648e+06 246087 648988. 2245.63 1.76 0.226187 0.197378 26050 158493 -1 2291 25 1915 2601 250174 70472 3.35447 3.35447 -133.03 -3.35447 0 0 828058. 2865.25 0.03 0.11 0.13 -1 -1 0.03 0.0331884 0.0289165 78 34 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_018.v common 3.96 vpr 63.38 MiB -1 -1 0.24 18420 1 0.03 -1 -1 30336 -1 -1 23 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64896 32 32 323 276 1 148 87 17 17 289 -1 unnamed_device 24.3 MiB 0.59 786 10071 3578 4718 1775 63.4 MiB 0.09 0.00 2.31531 -95.0474 -2.31531 2.31531 0.34 0.000651323 0.000604716 0.0365085 0.0338373 -1 -1 -1 -1 40 1891 23 6.95648e+06 332941 706193. 2443.58 1.30 0.171573 0.148913 26914 176310 -1 1667 24 1362 2073 174745 41485 2.52138 2.52138 -102.073 -2.52138 0 0 926341. 3205.33 0.04 0.08 0.14 -1 -1 0.04 0.0295211 0.02561 65 65 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_019.v common 3.21 vpr 63.24 MiB -1 -1 0.21 18132 1 0.03 -1 -1 30076 -1 -1 11 30 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64760 30 32 222 206 1 114 73 17 17 289 -1 unnamed_device 23.7 MiB 0.15 430 7217 2897 3955 365 63.2 MiB 0.06 0.00 2.19546 -77.9644 -2.19546 2.19546 0.34 0.000496364 0.000461914 0.0252717 0.023525 -1 -1 -1 -1 38 1129 22 6.95648e+06 159232 678818. 2348.85 1.10 0.125104 0.108162 26626 170182 -1 802 21 683 938 55231 15482 2.06418 2.06418 -79.525 -2.06418 0 0 902133. 3121.57 0.04 0.05 0.14 -1 -1 0.04 0.0206062 0.0179189 44 34 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_020.v common 4.62 vpr 63.34 MiB -1 -1 0.24 18252 1 0.03 -1 -1 30452 -1 -1 14 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64860 31 32 291 243 1 166 77 17 17 289 -1 unnamed_device 24.2 MiB 1.53 1007 11976 3355 7225 1396 63.3 MiB 0.10 0.00 4.40603 -142.381 -4.40603 4.40603 0.33 0.000608611 0.000566303 0.0470857 0.043836 -1 -1 -1 -1 34 2380 24 6.95648e+06 202660 618332. 2139.56 1.06 0.169043 0.147544 25762 151098 -1 2003 20 1207 1675 119064 27189 3.98032 3.98032 -146.92 -3.98032 0 0 787024. 2723.27 0.03 0.06 0.12 -1 -1 0.03 0.0247293 0.0215758 68 34 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_021.v common 4.70 vpr 63.46 MiB -1 -1 0.26 18472 1 0.03 -1 -1 30432 -1 -1 27 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64984 32 32 342 271 1 172 91 17 17 289 -1 unnamed_device 24.5 MiB 0.23 777 13351 4773 6428 2150 63.5 MiB 0.11 0.00 3.69009 -122.34 -3.69009 3.69009 0.33 0.000688999 0.000639455 0.047794 0.0443687 -1 -1 -1 -1 40 2451 40 6.95648e+06 390843 706193. 2443.58 2.28 0.208193 0.181318 26914 176310 -1 1989 23 1600 2424 223141 68263 3.89406 3.89406 -135.843 -3.89406 0 0 926341. 3205.33 0.04 0.12 0.15 -1 -1 0.04 0.0334966 0.029147 79 34 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_022.v common 4.94 vpr 63.62 MiB -1 -1 0.25 18268 1 0.03 -1 -1 30280 -1 -1 16 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65148 32 32 372 300 1 200 80 17 17 289 -1 unnamed_device 24.6 MiB 1.09 929 10228 2968 5474 1786 63.6 MiB 0.10 0.00 4.43786 -126.086 -4.43786 4.43786 0.33 0.000725922 0.000674137 0.0459557 0.042749 -1 -1 -1 -1 52 2444 39 6.95648e+06 231611 926341. 3205.33 1.71 0.211794 0.184632 29218 227130 -1 1697 21 1603 2467 172559 43849 3.84822 3.84822 -125.024 -3.84822 0 0 1.14541e+06 3963.36 0.04 0.08 0.18 -1 -1 0.04 0.0302014 0.0263891 82 62 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_023.v common 2.81 vpr 63.27 MiB -1 -1 0.22 18188 1 0.02 -1 -1 30624 -1 -1 14 26 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64784 26 32 190 182 1 104 72 17 17 289 -1 unnamed_device 23.9 MiB 0.33 469 6926 2796 3691 439 63.3 MiB 0.05 0.00 2.27636 -67.9936 -2.27636 2.27636 0.35 0.000429337 0.000398799 0.0215449 0.020025 -1 -1 -1 -1 32 1196 21 6.95648e+06 202660 586450. 2029.24 0.59 0.0725739 0.0635235 25474 144626 -1 953 24 615 774 90885 31923 2.28603 2.28603 -73.7824 -2.28603 0 0 744469. 2576.02 0.03 0.06 0.12 -1 -1 0.03 0.0199648 0.017303 43 30 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_024.v common 8.18 vpr 63.14 MiB -1 -1 0.15 17796 1 0.03 -1 -1 30324 -1 -1 17 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64656 32 32 285 227 1 159 81 17 17 289 -1 unnamed_device 24.1 MiB 0.45 719 9531 2772 5216 1543 63.1 MiB 0.09 0.00 4.35141 -115.734 -4.35141 4.35141 0.34 0.00062324 0.000578477 0.03622 0.0336562 -1 -1 -1 -1 42 2136 41 6.95648e+06 246087 744469. 2576.02 5.73 0.308778 0.265688 27202 183097 -1 1474 23 1312 2219 179928 44050 4.15656 4.15656 -120.492 -4.15656 0 0 949917. 3286.91 0.04 0.08 0.15 -1 -1 0.04 0.0278794 0.0242966 66 3 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_025.v common 2.64 vpr 63.15 MiB -1 -1 0.11 17612 1 0.03 -1 -1 29988 -1 -1 10 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64664 32 32 173 169 1 111 74 17 17 289 -1 unnamed_device 23.8 MiB 0.10 456 10459 4198 5595 666 63.1 MiB 0.07 0.00 2.13126 -69.3153 -2.13126 2.13126 0.31 0.00042468 0.000394535 0.0302253 0.0280834 -1 -1 -1 -1 36 1204 23 6.95648e+06 144757 648988. 2245.63 0.91 0.11542 0.100517 26050 158493 -1 915 21 632 749 65534 16835 2.05118 2.05118 -75.2428 -2.05118 0 0 828058. 2865.25 0.03 0.05 0.13 -1 -1 0.03 0.0176879 0.0153969 43 3 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_026.v common 3.91 vpr 63.34 MiB -1 -1 0.23 18124 1 0.03 -1 -1 30152 -1 -1 19 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64864 32 32 300 245 1 159 83 17 17 289 -1 unnamed_device 24.2 MiB 0.46 705 11063 3344 5374 2345 63.3 MiB 0.09 0.00 4.42909 -119.059 -4.42909 4.42909 0.34 0.000632235 0.000588523 0.0414738 0.0385764 -1 -1 -1 -1 42 1926 27 6.95648e+06 275038 744469. 2576.02 1.35 0.176041 0.153466 27202 183097 -1 1512 20 1112 1881 126839 32424 3.69636 3.69636 -116.75 -3.69636 0 0 949917. 3286.91 0.04 0.07 0.15 -1 -1 0.04 0.0258126 0.0225697 67 24 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_027.v common 3.35 vpr 63.43 MiB -1 -1 0.22 17828 1 0.03 -1 -1 30316 -1 -1 27 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64956 32 32 297 233 1 170 91 17 17 289 -1 unnamed_device 24.2 MiB 0.18 1111 14983 4654 8769 1560 63.4 MiB 0.12 0.00 2.9965 -108.481 -2.9965 2.9965 0.33 0.000637683 0.000592435 0.0491689 0.0456907 -1 -1 -1 -1 36 2380 21 6.95648e+06 390843 648988. 2245.63 1.14 0.174104 0.152271 26050 158493 -1 2077 22 1257 1942 162231 34962 3.00062 3.00062 -113.678 -3.00062 0 0 828058. 2865.25 0.03 0.07 0.13 -1 -1 0.03 0.0273556 0.0238501 77 3 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_028.v common 4.13 vpr 64.05 MiB -1 -1 0.25 18384 1 0.03 -1 -1 30268 -1 -1 23 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65592 32 32 338 277 1 172 87 17 17 289 -1 unnamed_device 24.3 MiB 0.61 815 11991 3979 6088 1924 64.1 MiB 0.06 0.00 4.25013 -125.291 -4.25013 4.25013 0.25 0.00030205 0.000277272 0.0210826 0.0194187 -1 -1 -1 -1 44 2504 50 6.95648e+06 332941 787024. 2723.27 1.53 0.179622 0.15507 27778 195446 -1 1851 23 1415 2385 195085 45432 4.07246 4.07246 -131.405 -4.07246 0 0 997811. 3452.63 0.06 0.10 0.16 -1 -1 0.06 0.0384545 0.0340278 74 50 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_029.v common 3.59 vpr 63.65 MiB -1 -1 0.18 18148 1 0.03 -1 -1 30076 -1 -1 15 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65176 32 32 284 241 1 139 79 17 17 289 -1 unnamed_device 24.3 MiB 0.44 636 11740 4501 5598 1641 63.6 MiB 0.10 0.00 2.8872 -98.3416 -2.8872 2.8872 0.33 0.000600815 0.000558186 0.0439891 0.0409118 -1 -1 -1 -1 36 2014 26 6.95648e+06 217135 648988. 2245.63 1.18 0.166398 0.144912 26050 158493 -1 1620 23 1058 1616 135085 32903 3.47502 3.47502 -113.126 -3.47502 0 0 828058. 2865.25 0.03 0.07 0.13 -1 -1 0.03 0.0266523 0.0231135 57 34 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_030.v common 3.40 vpr 63.58 MiB -1 -1 0.14 18124 1 0.03 -1 -1 30096 -1 -1 22 30 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65108 30 32 262 227 1 134 84 17 17 289 -1 unnamed_device 24.0 MiB 0.24 598 12894 4167 6970 1757 63.6 MiB 0.10 0.00 3.17414 -94.0877 -3.17414 3.17414 0.34 0.000573241 0.00052658 0.0418466 0.0387546 -1 -1 -1 -1 38 1729 50 6.95648e+06 318465 678818. 2348.85 1.28 0.180547 0.156592 26626 170182 -1 1167 20 965 1502 93858 23736 2.85952 2.85952 -93.9328 -2.85952 0 0 902133. 3121.57 0.04 0.06 0.14 -1 -1 0.04 0.0228669 0.0198687 60 34 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_031.v common 3.67 vpr 63.50 MiB -1 -1 0.17 18060 1 0.03 -1 -1 30096 -1 -1 21 28 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65028 28 32 260 223 1 135 81 17 17 289 -1 unnamed_device 23.9 MiB 0.20 526 9881 3467 4910 1504 63.5 MiB 0.08 0.00 2.9041 -89.8524 -2.9041 2.9041 0.35 0.000561846 0.000519378 0.0338285 0.0314291 -1 -1 -1 -1 44 1510 25 6.95648e+06 303989 787024. 2723.27 1.54 0.153363 0.133271 27778 195446 -1 1252 20 976 1638 120916 31896 3.14012 3.14012 -100.347 -3.14012 0 0 997811. 3452.63 0.04 0.06 0.16 -1 -1 0.04 0.0226749 0.0197469 60 34 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_032.v common 3.36 vpr 63.54 MiB -1 -1 0.20 17740 1 0.02 -1 -1 30304 -1 -1 13 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65060 32 32 253 210 1 149 77 17 17 289 -1 unnamed_device 23.9 MiB 0.12 872 7412 1986 4690 736 63.5 MiB 0.07 0.00 3.33963 -114.641 -3.33963 3.33963 0.34 0.000569591 0.000529726 0.0281963 0.026277 -1 -1 -1 -1 36 2003 21 6.95648e+06 188184 648988. 2245.63 1.37 0.144816 0.125617 26050 158493 -1 1836 21 1303 1920 176626 40606 3.03682 3.03682 -116.712 -3.03682 0 0 828058. 2865.25 0.03 0.07 0.13 -1 -1 0.03 0.0242923 0.0211886 59 3 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_033.v common 3.55 vpr 63.59 MiB -1 -1 0.23 18256 1 0.03 -1 -1 30228 -1 -1 25 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65120 31 32 271 231 1 143 88 17 17 289 -1 unnamed_device 24.3 MiB 0.20 648 8278 1868 6118 292 63.6 MiB 0.08 0.00 3.26818 -103.77 -3.26818 3.26818 0.34 0.000593505 0.000551506 0.0271878 0.0252563 -1 -1 -1 -1 38 2153 30 6.95648e+06 361892 678818. 2348.85 1.39 0.152159 0.131517 26626 170182 -1 1564 20 1067 1757 135431 31600 3.25942 3.25942 -106.518 -3.25942 0 0 902133. 3121.57 0.04 0.06 0.14 -1 -1 0.04 0.0239767 0.0209029 64 30 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_034.v common 4.42 vpr 63.29 MiB -1 -1 0.23 18468 1 0.03 -1 -1 30364 -1 -1 20 29 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64812 29 32 291 250 1 148 81 17 17 289 -1 unnamed_device 24.3 MiB 0.59 689 10931 4549 5926 456 63.3 MiB 0.09 0.00 2.41246 -88.2683 -2.41246 2.41246 0.33 0.000602501 0.000557259 0.0397933 0.0369758 -1 -1 -1 -1 40 1875 45 6.95648e+06 289514 706193. 2443.58 1.73 0.181929 0.157764 26914 176310 -1 1563 42 1500 2246 323184 138737 2.60743 2.60743 -96.5026 -2.60743 0 0 926341. 3205.33 0.04 0.16 0.11 -1 -1 0.04 0.0441744 0.0379057 63 54 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_035.v common 4.57 vpr 64.26 MiB -1 -1 0.26 18484 1 0.03 -1 -1 30504 -1 -1 33 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65800 32 32 367 282 1 193 97 17 17 289 -1 unnamed_device 24.6 MiB 0.36 911 15193 4522 7149 3522 64.3 MiB 0.12 0.00 4.10963 -121.284 -4.10963 4.10963 0.35 0.000733576 0.00068136 0.0533783 0.0495534 -1 -1 -1 -1 46 2654 40 6.95648e+06 477698 828058. 2865.25 1.98 0.238984 0.209506 28066 200906 -1 2029 21 1409 2479 179633 42774 3.83601 3.83601 -125.609 -3.83601 0 0 1.01997e+06 3529.29 0.04 0.08 0.14 -1 -1 0.04 0.0318055 0.0278818 91 29 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_036.v common 4.86 vpr 63.55 MiB -1 -1 0.24 18284 1 0.03 -1 -1 30264 -1 -1 32 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65076 32 32 391 311 1 184 96 17 17 289 -1 unnamed_device 24.4 MiB 0.67 852 12579 4217 6162 2200 63.6 MiB 0.11 0.00 3.29124 -119.942 -3.29124 3.29124 0.34 0.000754507 0.000699971 0.0463982 0.0429819 -1 -1 -1 -1 42 2741 45 6.95648e+06 463222 744469. 2576.02 1.76 0.231627 0.201417 27202 183097 -1 1995 26 2374 3598 278943 63812 3.29522 3.29522 -125.452 -3.29522 0 0 949917. 3286.91 0.04 0.11 0.15 -1 -1 0.04 0.0369752 0.032182 88 65 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_037.v common 4.32 vpr 63.72 MiB -1 -1 0.23 18492 1 0.03 -1 -1 30088 -1 -1 14 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65252 31 32 279 237 1 159 77 17 17 289 -1 unnamed_device 24.1 MiB 1.07 923 4641 970 3392 279 63.7 MiB 0.05 0.00 3.45953 -115.111 -3.45953 3.45953 0.34 0.00059312 0.000551745 0.0189438 0.0176431 -1 -1 -1 -1 38 2198 25 6.95648e+06 202660 678818. 2348.85 1.20 0.138612 0.119344 26626 170182 -1 1870 18 1282 1896 144452 30973 3.28127 3.28127 -120.235 -3.28127 0 0 902133. 3121.57 0.04 0.08 0.14 -1 -1 0.04 0.0271805 0.0236815 65 34 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_038.v common 4.39 vpr 63.48 MiB -1 -1 0.19 18352 1 0.03 -1 -1 30488 -1 -1 19 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65004 31 32 370 297 1 179 82 17 17 289 -1 unnamed_device 24.5 MiB 0.36 1030 14678 5373 7408 1897 63.5 MiB 0.14 0.00 3.54403 -122.101 -3.54403 3.54403 0.33 0.000726016 0.000673707 0.0622537 0.0578277 -1 -1 -1 -1 36 2898 48 6.95648e+06 275038 648988. 2245.63 1.97 0.237133 0.206369 26050 158493 -1 2366 22 1701 2645 238663 49339 3.48312 3.48312 -126.498 -3.48312 0 0 828058. 2865.25 0.03 0.09 0.13 -1 -1 0.03 0.0312003 0.0272047 78 61 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_039.v common 6.58 vpr 64.27 MiB -1 -1 0.22 18396 1 0.03 -1 -1 30336 -1 -1 21 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65816 31 32 377 302 1 231 84 17 17 289 -1 unnamed_device 24.8 MiB 1.38 1092 14907 5405 6951 2551 64.3 MiB 0.14 0.00 5.13305 -160.198 -5.13305 5.13305 0.33 0.000728982 0.000677645 0.0620603 0.0576185 -1 -1 -1 -1 38 3641 48 6.95648e+06 303989 678818. 2348.85 3.11 0.241231 0.210654 26626 170182 -1 2709 23 2659 3824 318166 75097 5.90996 5.90996 -188.043 -5.90996 0 0 902133. 3121.57 0.04 0.11 0.14 -1 -1 0.04 0.0342497 0.0299672 99 64 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_040.v common 5.22 vpr 63.68 MiB -1 -1 0.15 18344 1 0.03 -1 -1 30392 -1 -1 18 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65204 31 32 383 305 1 201 81 17 17 289 -1 unnamed_device 24.6 MiB 1.54 963 8831 3600 4974 257 63.7 MiB 0.10 0.00 4.51849 -147.607 -4.51849 4.51849 0.33 0.000740302 0.000686927 0.040084 0.0372635 -1 -1 -1 -1 46 2550 23 6.95648e+06 260562 828058. 2865.25 1.84 0.197759 0.172316 28066 200906 -1 2108 24 1754 2724 244803 58671 4.58496 4.58496 -156.736 -4.58496 0 0 1.01997e+06 3529.29 0.04 0.06 0.11 -1 -1 0.04 0.0192974 0.0171528 89 64 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_041.v common 4.29 vpr 64.19 MiB -1 -1 0.25 18336 1 0.05 -1 -1 30464 -1 -1 23 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65732 31 32 352 285 1 177 86 17 17 289 -1 unnamed_device 24.6 MiB 0.69 836 15584 6637 8372 575 64.2 MiB 0.14 0.00 3.50353 -115.007 -3.50353 3.50353 0.34 0.000696254 0.000646077 0.0603413 0.0560609 -1 -1 -1 -1 46 2226 24 6.95648e+06 332941 828058. 2865.25 1.49 0.206267 0.180772 28066 200906 -1 1859 21 1547 2459 208487 51447 3.12967 3.12967 -112.688 -3.12967 0 0 1.01997e+06 3529.29 0.04 0.09 0.16 -1 -1 0.04 0.0298209 0.0260802 79 55 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_042.v common 4.17 vpr 63.23 MiB -1 -1 0.23 18408 1 0.03 -1 -1 30400 -1 -1 17 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64752 32 32 291 242 1 173 81 17 17 289 -1 unnamed_device 24.1 MiB 0.75 1029 7256 2117 3919 1220 63.2 MiB 0.07 0.00 4.07128 -119.484 -4.07128 4.07128 0.36 0.000615249 0.000572005 0.0277902 0.0258835 -1 -1 -1 -1 38 2561 25 6.95648e+06 246087 678818. 2348.85 1.21 0.152102 0.131659 26626 170182 -1 2189 23 1367 1911 149552 32388 4.21512 4.21512 -128.327 -4.21512 0 0 902133. 3121.57 0.03 0.07 0.14 -1 -1 0.03 0.0279136 0.0243103 69 27 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_043.v common 12.22 vpr 63.87 MiB -1 -1 0.27 18584 1 0.03 -1 -1 30348 -1 -1 28 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65400 32 32 457 356 1 214 92 17 17 289 -1 unnamed_device 24.8 MiB 1.04 993 12305 3758 6533 2014 63.9 MiB 0.13 0.00 4.26748 -142.244 -4.26748 4.26748 0.34 0.000866113 0.00080433 0.0550432 0.051201 -1 -1 -1 -1 44 2869 47 6.95648e+06 405319 787024. 2723.27 8.68 0.442398 0.381185 27778 195446 -1 2145 24 2037 3184 220920 50840 4.15842 4.15842 -145.994 -4.15842 0 0 997811. 3452.63 0.04 0.10 0.16 -1 -1 0.04 0.0399153 0.0347213 97 87 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_044.v common 3.04 vpr 63.49 MiB -1 -1 0.24 18092 1 0.03 -1 -1 30148 -1 -1 17 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65016 31 32 261 225 1 138 80 17 17 289 -1 unnamed_device 23.8 MiB 0.31 805 10572 3473 6003 1096 63.5 MiB 0.08 0.00 3.0387 -100.92 -3.0387 3.0387 0.35 0.00057442 0.000534081 0.0371536 0.0345751 -1 -1 -1 -1 32 1865 27 6.95648e+06 246087 586450. 2029.24 0.67 0.110966 0.0974875 25474 144626 -1 1628 23 1288 1954 156469 34849 3.10717 3.10717 -108.749 -3.10717 0 0 744469. 2576.02 0.03 0.07 0.12 -1 -1 0.03 0.0255948 0.0221712 58 28 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_045.v common 4.64 vpr 64.12 MiB -1 -1 0.25 18444 1 0.03 -1 -1 30096 -1 -1 18 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65660 31 32 337 267 1 199 81 17 17 289 -1 unnamed_device 24.5 MiB 0.94 959 12331 4573 6293 1465 64.1 MiB 0.12 0.00 4.35599 -133.204 -4.35599 4.35599 0.33 0.000690774 0.000642342 0.050665 0.0471173 -1 -1 -1 -1 44 2687 37 6.95648e+06 260562 787024. 2723.27 1.57 0.201815 0.176115 27778 195446 -1 2152 22 1733 2506 224250 51913 4.21236 4.21236 -139.359 -4.21236 0 0 997811. 3452.63 0.04 0.09 0.15 -1 -1 0.04 0.0297026 0.0259228 82 34 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_046.v common 4.36 vpr 63.39 MiB -1 -1 0.25 18488 1 0.03 -1 -1 30348 -1 -1 26 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64916 32 32 349 284 1 175 90 17 17 289 -1 unnamed_device 24.2 MiB 0.44 1076 13557 4204 7841 1512 63.4 MiB 0.12 0.00 3.1047 -113.61 -3.1047 3.1047 0.34 0.000697786 0.000646852 0.0494433 0.0459023 -1 -1 -1 -1 40 2543 44 6.95648e+06 376368 706193. 2443.58 1.74 0.218193 0.190007 26914 176310 -1 2184 21 1482 2483 204735 44012 3.10107 3.10107 -117.005 -3.10107 0 0 926341. 3205.33 0.04 0.08 0.14 -1 -1 0.04 0.0301622 0.026338 78 53 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_047.v common 4.11 vpr 63.94 MiB -1 -1 0.22 17896 1 0.03 -1 -1 30096 -1 -1 19 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65476 32 32 291 230 1 161 83 17 17 289 -1 unnamed_device 24.3 MiB 0.30 727 11963 4343 5980 1640 63.9 MiB 0.11 0.00 4.01417 -117.763 -4.01417 4.01417 0.33 0.000633235 0.000588118 0.0441457 0.0410352 -1 -1 -1 -1 40 2427 48 6.95648e+06 275038 706193. 2443.58 1.81 0.195609 0.170038 26914 176310 -1 1865 20 1354 2376 180066 45075 4.48126 4.48126 -138.269 -4.48126 0 0 926341. 3205.33 0.04 0.08 0.12 -1 -1 0.04 0.0257634 0.0225155 70 3 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_048.v common 7.61 vpr 64.06 MiB -1 -1 0.24 18376 1 0.03 -1 -1 30228 -1 -1 16 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65600 32 32 353 287 1 190 80 17 17 289 -1 unnamed_device 24.5 MiB 1.44 1085 12464 3736 7369 1359 64.1 MiB 0.13 0.00 4.30115 -139.934 -4.30115 4.30115 0.33 0.00069795 0.000648122 0.0532962 0.0495798 -1 -1 -1 -1 36 2878 26 6.95648e+06 231611 648988. 2245.63 3.98 0.290157 0.251288 26050 158493 -1 2375 20 1401 1873 167467 38936 3.65736 3.65736 -139.409 -3.65736 0 0 828058. 2865.25 0.03 0.08 0.13 -1 -1 0.03 0.0283154 0.0247331 76 55 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_049.v common 4.43 vpr 64.17 MiB -1 -1 0.24 18416 1 0.03 -1 -1 30200 -1 -1 29 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65712 32 32 361 291 1 178 93 17 17 289 -1 unnamed_device 24.5 MiB 0.61 1039 16053 5362 8641 2050 64.2 MiB 0.14 0.00 3.1427 -116.449 -3.1427 3.1427 0.33 0.000712805 0.000662165 0.0575263 0.0534164 -1 -1 -1 -1 38 2540 50 6.95648e+06 419795 678818. 2348.85 1.64 0.235934 0.205898 26626 170182 -1 2207 19 1301 2060 151516 33109 3.13107 3.13107 -122.236 -3.13107 0 0 902133. 3121.57 0.04 0.07 0.14 -1 -1 0.04 0.0280609 0.0245724 81 55 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_050.v common 3.96 vpr 64.15 MiB -1 -1 0.26 18388 1 0.03 -1 -1 30300 -1 -1 29 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65688 32 32 382 305 1 184 93 17 17 289 -1 unnamed_device 24.5 MiB 0.29 1111 12693 3643 7264 1786 64.1 MiB 0.12 0.00 3.72599 -128.052 -3.72599 3.72599 0.33 0.000745259 0.000691766 0.0478964 0.0445264 -1 -1 -1 -1 38 2710 39 6.95648e+06 419795 678818. 2348.85 1.56 0.214278 0.18655 26626 170182 -1 2296 18 1570 2524 191579 41155 3.34267 3.34267 -126.01 -3.34267 0 0 902133. 3121.57 0.03 0.08 0.14 -1 -1 0.03 0.0273508 0.0239439 87 62 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_051.v common 3.83 vpr 63.89 MiB -1 -1 0.23 18064 1 0.03 -1 -1 30284 -1 -1 22 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65424 32 32 306 248 1 160 86 17 17 289 -1 unnamed_device 24.2 MiB 0.41 714 10859 2768 5884 2207 63.9 MiB 0.09 0.00 4.21985 -115.841 -4.21985 4.21985 0.33 0.00064033 0.000594103 0.0392175 0.0364135 -1 -1 -1 -1 42 2281 32 6.95648e+06 318465 744469. 2576.02 1.40 0.175454 0.152417 27202 183097 -1 1639 21 1114 1829 140230 35033 4.10836 4.10836 -123.57 -4.10836 0 0 949917. 3286.91 0.04 0.07 0.15 -1 -1 0.04 0.0269904 0.0236075 70 24 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_052.v common 5.19 vpr 63.96 MiB -1 -1 0.16 18348 1 0.03 -1 -1 30124 -1 -1 16 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65500 32 32 319 257 1 191 80 17 17 289 -1 unnamed_device 24.2 MiB 0.86 1059 13152 4245 6889 2018 64.0 MiB 0.12 0.00 4.15748 -130.263 -4.15748 4.15748 0.33 0.000667581 0.000621682 0.0528544 0.0491721 -1 -1 -1 -1 34 2912 47 6.95648e+06 231611 618332. 2139.56 1.80 0.211665 0.184749 25762 151098 -1 2333 20 1653 2232 196885 51361 4.39542 4.39542 -149.722 -4.39542 0 0 787024. 2723.27 0.03 0.08 0.12 -1 -1 0.03 0.0269171 0.0235683 78 29 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_053.v common 4.67 vpr 63.55 MiB -1 -1 0.25 18368 1 0.03 -1 -1 30284 -1 -1 17 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65080 31 32 373 299 1 197 80 17 17 289 -1 unnamed_device 24.5 MiB 1.00 930 10056 4133 5588 335 63.6 MiB 0.11 0.00 4.17558 -133.773 -4.17558 4.17558 0.34 0.000725494 0.00067284 0.0454953 0.0422525 -1 -1 -1 -1 46 2784 27 6.95648e+06 246087 828058. 2865.25 1.56 0.202735 0.177121 28066 200906 -1 1972 20 1520 2492 179289 40356 4.07152 4.07152 -139.959 -4.07152 0 0 1.01997e+06 3529.29 0.04 0.08 0.16 -1 -1 0.04 0.029942 0.0262333 84 62 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_054.v common 4.49 vpr 63.43 MiB -1 -1 0.25 18360 1 0.03 -1 -1 30308 -1 -1 15 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64952 32 32 387 315 1 182 79 17 17 289 -1 unnamed_device 24.4 MiB 0.70 906 10726 4447 5934 345 63.4 MiB 0.11 0.00 3.8179 -122.23 -3.8179 3.8179 0.34 0.000737511 0.000683925 0.0498462 0.046247 -1 -1 -1 -1 46 2708 36 6.95648e+06 217135 828058. 2865.25 1.72 0.212921 0.185283 28066 200906 -1 2190 21 1496 2540 204415 45926 4.18392 4.18392 -139.028 -4.18392 0 0 1.01997e+06 3529.29 0.04 0.08 0.16 -1 -1 0.04 0.0313957 0.027475 76 77 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_055.v common 3.37 vpr 63.43 MiB -1 -1 0.22 18028 1 0.03 -1 -1 30400 -1 -1 17 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64956 32 32 251 219 1 136 81 17 17 289 -1 unnamed_device 23.9 MiB 0.16 825 9006 2482 5890 634 63.4 MiB 0.08 0.00 3.18828 -101.201 -3.18828 3.18828 0.33 0.000558565 0.000519336 0.0306682 0.0285554 -1 -1 -1 -1 34 2046 39 6.95648e+06 246087 618332. 2139.56 1.30 0.155921 0.134887 25762 151098 -1 1776 21 1160 1871 162256 35070 2.90052 2.90052 -107.072 -2.90052 0 0 787024. 2723.27 0.03 0.07 0.12 -1 -1 0.03 0.0231961 0.020156 57 23 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_056.v common 4.57 vpr 63.92 MiB -1 -1 0.24 18288 1 0.03 -1 -1 30140 -1 -1 15 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65452 32 32 341 285 1 183 79 17 17 289 -1 unnamed_device 24.2 MiB 0.89 876 11740 4893 6611 236 63.9 MiB 0.11 0.00 3.1615 -120.209 -3.1615 3.1615 0.33 0.000675863 0.000627489 0.0490628 0.0456216 -1 -1 -1 -1 42 2500 26 6.95648e+06 217135 744469. 2576.02 1.50 0.18957 0.165472 27202 183097 -1 2089 22 1764 2523 256092 54542 3.40957 3.40957 -131.031 -3.40957 0 0 949917. 3286.91 0.04 0.09 0.15 -1 -1 0.04 0.0290865 0.0252833 73 65 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_057.v common 6.03 vpr 64.38 MiB -1 -1 0.26 18368 1 0.03 -1 -1 30288 -1 -1 19 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65928 32 32 387 293 1 226 83 17 17 289 -1 unnamed_device 24.8 MiB 0.86 1199 13043 4951 6384 1708 64.4 MiB 0.14 0.00 4.83158 -154.41 -4.83158 4.83158 0.33 0.000761004 0.000707532 0.0579942 0.0539095 -1 -1 -1 -1 40 3671 50 6.95648e+06 275038 706193. 2443.58 2.97 0.248745 0.217467 26914 176310 -1 2860 23 2338 3633 357287 82327 5.18966 5.18966 -163.933 -5.18966 0 0 926341. 3205.33 0.04 0.11 0.14 -1 -1 0.04 0.0345315 0.0302061 96 31 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_058.v common 4.34 vpr 63.66 MiB -1 -1 0.24 18432 1 0.03 -1 -1 30448 -1 -1 20 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65188 32 32 340 270 1 174 84 17 17 289 -1 unnamed_device 24.7 MiB 0.65 977 13809 5452 7559 798 63.7 MiB 0.13 0.00 3.62421 -126.101 -3.62421 3.62421 0.33 0.000696071 0.00064728 0.0547412 0.0508797 -1 -1 -1 -1 34 2540 40 6.95648e+06 289514 618332. 2139.56 1.60 0.212862 0.185771 25762 151098 -1 2157 21 1625 2352 204917 48862 3.21102 3.21102 -133.772 -3.21102 0 0 787024. 2723.27 0.03 0.09 0.13 -1 -1 0.03 0.029578 0.0259059 75 34 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_059.v common 6.78 vpr 63.18 MiB -1 -1 0.14 18116 1 0.03 -1 -1 30456 -1 -1 26 30 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64700 30 32 278 235 1 143 88 17 17 289 -1 unnamed_device 24.2 MiB 0.19 867 11593 3047 7327 1219 63.2 MiB 0.09 0.00 2.9573 -106.081 -2.9573 2.9573 0.33 0.000589669 0.000547262 0.0372024 0.0345632 -1 -1 -1 -1 30 2368 41 6.95648e+06 376368 556674. 1926.21 4.46 0.269464 0.231618 25186 138497 -1 1972 22 1259 2046 175864 37744 3.03062 3.03062 -114.694 -3.03062 0 0 706193. 2443.58 0.03 0.07 0.11 -1 -1 0.03 0.0256528 0.0222828 65 34 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_060.v common 5.03 vpr 64.48 MiB -1 -1 0.15 18580 1 0.03 -1 -1 30400 -1 -1 18 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 66024 32 32 431 332 1 227 82 17 17 289 -1 unnamed_device 24.8 MiB 1.43 1077 13076 5478 7292 306 64.5 MiB 0.14 0.00 5.30235 -160.109 -5.30235 5.30235 0.33 0.000839666 0.00078032 0.064804 0.0602835 -1 -1 -1 -1 46 3075 31 6.95648e+06 260562 828058. 2865.25 1.52 0.244686 0.214294 28066 200906 -1 2516 23 2235 3373 300793 65578 4.88325 4.88325 -159.437 -4.88325 0 0 1.01997e+06 3529.29 0.04 0.11 0.16 -1 -1 0.04 0.0373225 0.0326244 95 65 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_061.v common 4.87 vpr 63.32 MiB -1 -1 0.15 18504 1 0.03 -1 -1 30536 -1 -1 25 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64840 32 32 336 268 1 169 89 17 17 289 -1 unnamed_device 24.4 MiB 0.98 769 14543 4279 7650 2614 63.3 MiB 0.13 0.00 4.37605 -128.976 -4.37605 4.37605 0.33 0.00068609 0.000637719 0.0529336 0.0491554 -1 -1 -1 -1 36 2640 45 6.95648e+06 361892 648988. 2245.63 1.95 0.220043 0.191748 26050 158493 -1 1899 19 1368 2103 168161 39340 4.52236 4.52236 -147.419 -4.52236 0 0 828058. 2865.25 0.03 0.07 0.13 -1 -1 0.03 0.0268261 0.0234869 75 34 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_062.v common 3.23 vpr 63.44 MiB -1 -1 0.21 17720 1 0.03 -1 -1 30332 -1 -1 17 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64964 32 32 231 199 1 136 81 17 17 289 -1 unnamed_device 23.9 MiB 0.17 862 10581 3669 5472 1440 63.4 MiB 0.08 0.00 2.966 -103.091 -2.966 2.966 0.33 0.000535623 0.000498652 0.0341868 0.0318378 -1 -1 -1 -1 34 2090 46 6.95648e+06 246087 618332. 2139.56 1.15 0.159354 0.137994 25762 151098 -1 1817 19 973 1591 134001 28878 2.85037 2.85037 -106.975 -2.85037 0 0 787024. 2723.27 0.03 0.06 0.12 -1 -1 0.03 0.0206185 0.0179498 55 3 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_063.v common 9.87 vpr 63.93 MiB -1 -1 0.25 18488 1 0.03 -1 -1 30120 -1 -1 31 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65464 32 32 349 273 1 184 95 17 17 289 -1 unnamed_device 24.1 MiB 0.34 1079 15647 5481 7915 2251 63.9 MiB 0.14 0.00 4.80547 -133.695 -4.80547 4.80547 0.34 0.000706749 0.000655878 0.0539142 0.0500534 -1 -1 -1 -1 36 3258 49 6.95648e+06 448746 648988. 2245.63 7.26 0.323114 0.280424 26050 158493 -1 2539 33 2032 3613 445607 138907 4.93896 4.93896 -147.631 -4.93896 0 0 828058. 2865.25 0.03 0.17 0.13 -1 -1 0.03 0.0442362 0.0384999 85 29 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_064.v common 2.85 vpr 63.78 MiB -1 -1 0.22 17988 1 0.03 -1 -1 30204 -1 -1 16 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65308 32 32 247 207 1 142 80 17 17 289 -1 unnamed_device 24.2 MiB 0.24 726 11088 4552 6360 176 63.8 MiB 0.09 0.00 2.9793 -102.962 -2.9793 2.9793 0.33 0.000555866 0.000516817 0.0383305 0.035649 -1 -1 -1 -1 32 2182 43 6.95648e+06 231611 586450. 2029.24 0.75 0.122287 0.107128 25474 144626 -1 1659 22 1307 1969 160538 36320 3.10097 3.10097 -116.017 -3.10097 0 0 744469. 2576.02 0.03 0.04 0.08 -1 -1 0.03 0.0134192 0.0118545 58 3 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_065.v common 4.25 vpr 63.77 MiB -1 -1 0.22 18148 1 0.03 -1 -1 30204 -1 -1 25 30 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65304 30 32 278 235 1 141 87 17 17 289 -1 unnamed_device 24.3 MiB 0.57 775 12567 4624 6004 1939 63.8 MiB 0.10 0.00 3.23198 -106.153 -3.23198 3.23198 0.35 0.000590718 0.000549282 0.0409618 0.0381017 -1 -1 -1 -1 36 1945 49 6.95648e+06 361892 648988. 2245.63 1.58 0.19865 0.172724 26050 158493 -1 1651 24 1219 1928 159003 35682 3.51472 3.51472 -122.539 -3.51472 0 0 828058. 2865.25 0.03 0.07 0.13 -1 -1 0.03 0.0269613 0.0233639 64 34 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_066.v common 5.16 vpr 63.41 MiB -1 -1 0.25 18380 1 0.03 -1 -1 30368 -1 -1 19 29 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64936 29 32 355 287 1 191 80 17 17 289 -1 unnamed_device 24.5 MiB 1.05 862 13840 5371 6156 2313 63.4 MiB 0.13 0.00 3.49789 -109.385 -3.49789 3.49789 0.33 0.000692113 0.000642977 0.05874 0.0545889 -1 -1 -1 -1 42 2967 32 6.95648e+06 275038 744469. 2576.02 1.93 0.213693 0.18699 27202 183097 -1 2258 20 1883 2806 223583 51789 3.35977 3.35977 -120.027 -3.35977 0 0 949917. 3286.91 0.04 0.08 0.15 -1 -1 0.04 0.0279475 0.0244354 81 62 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_067.v common 3.65 vpr 63.48 MiB -1 -1 0.25 18396 1 0.03 -1 -1 30320 -1 -1 19 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65000 32 32 358 289 1 171 83 17 17 289 -1 unnamed_device 24.5 MiB 0.52 803 13763 3951 8222 1590 63.5 MiB 0.13 0.00 4.16158 -131.727 -4.16158 4.16158 0.33 0.000704942 0.00065495 0.0566393 0.0526354 -1 -1 -1 -1 36 2250 32 6.95648e+06 275038 648988. 2245.63 1.05 0.205864 0.179723 26050 158493 -1 1841 23 1629 2363 177966 42287 4.23702 4.23702 -141.59 -4.23702 0 0 828058. 2865.25 0.03 0.08 0.13 -1 -1 0.03 0.031816 0.0277356 74 54 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_068.v common 4.55 vpr 63.49 MiB -1 -1 0.26 18396 1 0.03 -1 -1 30200 -1 -1 20 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65012 32 32 353 285 1 175 84 17 17 289 -1 unnamed_device 24.5 MiB 0.59 796 11064 4038 5325 1701 63.5 MiB 0.10 0.00 4.14068 -130.872 -4.14068 4.14068 0.33 0.000702369 0.000652314 0.0451848 0.0419956 -1 -1 -1 -1 42 2677 27 6.95648e+06 289514 744469. 2576.02 1.44 0.192639 0.167021 27202 183097 -1 2130 23 1519 2391 190633 45446 4.10536 4.10536 -140.291 -4.10536 0 0 949917. 3286.91 0.03 0.08 0.11 -1 -1 0.03 0.0309734 0.0270106 77 51 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_069.v common 4.60 vpr 63.23 MiB -1 -1 0.21 18088 1 0.03 -1 -1 30048 -1 -1 13 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64748 32 32 276 237 1 153 77 17 17 289 -1 unnamed_device 24.1 MiB 1.51 644 10998 3795 5035 2168 63.2 MiB 0.09 0.00 3.61925 -109.264 -3.61925 3.61925 0.33 0.000591765 0.000550792 0.0421395 0.0392308 -1 -1 -1 -1 52 1752 22 6.95648e+06 188184 926341. 3205.33 1.11 0.157691 0.137524 29218 227130 -1 1433 19 929 1291 99211 26281 3.68382 3.68382 -115.861 -3.68382 0 0 1.14541e+06 3963.36 0.04 0.06 0.18 -1 -1 0.04 0.0228021 0.0199362 60 34 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_070.v common 10.07 vpr 63.38 MiB -1 -1 0.24 18568 1 0.02 -1 -1 30416 -1 -1 15 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64896 31 32 319 272 1 165 78 17 17 289 -1 unnamed_device 24.2 MiB 1.36 768 11366 3602 6339 1425 63.4 MiB 0.10 0.00 3.45953 -112.445 -3.45953 3.45953 0.33 0.000648061 0.000602589 0.0466726 0.0434327 -1 -1 -1 -1 40 2406 47 6.95648e+06 217135 706193. 2443.58 6.67 0.308184 0.265354 26914 176310 -1 1941 30 1706 2536 269805 79255 3.50087 3.50087 -130.33 -3.50087 0 0 926341. 3205.33 0.04 0.12 0.14 -1 -1 0.04 0.0358129 0.0310119 66 64 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_071.v common 3.25 vpr 63.91 MiB -1 -1 0.27 18412 1 0.03 -1 -1 30368 -1 -1 29 30 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65448 30 32 329 273 1 160 91 17 17 289 -1 unnamed_device 24.2 MiB 0.30 947 13759 4019 7787 1953 63.9 MiB 0.11 0.00 2.9573 -99.2289 -2.9573 2.9573 0.34 0.000661364 0.000614221 0.0471044 0.0437249 -1 -1 -1 -1 32 2590 25 6.95648e+06 419795 586450. 2029.24 0.86 0.131695 0.116029 25474 144626 -1 2085 20 1160 1918 151534 33503 3.03382 3.03382 -110.522 -3.03382 0 0 744469. 2576.02 0.03 0.07 0.12 -1 -1 0.03 0.0264776 0.0230774 75 57 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_072.v common 3.73 vpr 63.32 MiB -1 -1 0.24 18084 1 0.03 -1 -1 30444 -1 -1 30 28 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64840 28 32 277 229 1 150 90 17 17 289 -1 unnamed_device 24.3 MiB 0.26 699 13155 4215 6513 2427 63.3 MiB 0.10 0.00 3.68024 -100.002 -3.68024 3.68024 0.34 0.000590512 0.000547588 0.0402274 0.037299 -1 -1 -1 -1 36 2022 23 6.95648e+06 434271 648988. 2245.63 1.45 0.163824 0.142288 26050 158493 -1 1707 21 1234 2106 175260 41349 3.82796 3.82796 -108.147 -3.82796 0 0 828058. 2865.25 0.03 0.07 0.13 -1 -1 0.03 0.0247938 0.0215583 69 27 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_073.v common 3.49 vpr 63.47 MiB -1 -1 0.25 18336 1 0.03 -1 -1 30352 -1 -1 13 30 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64992 30 32 317 269 1 146 75 17 17 289 -1 unnamed_device 24.4 MiB 0.47 863 6237 1531 4215 491 63.5 MiB 0.07 0.00 3.28908 -113.416 -3.28908 3.28908 0.36 0.000632647 0.00058805 0.0274035 0.0255013 -1 -1 -1 -1 32 2274 24 6.95648e+06 188184 586450. 2029.24 0.86 0.112217 0.0983551 25474 144626 -1 1886 23 1489 2223 236171 61675 3.44752 3.44752 -129.56 -3.44752 0 0 744469. 2576.02 0.03 0.10 0.12 -1 -1 0.03 0.0294956 0.0257525 60 63 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_074.v common 5.55 vpr 63.37 MiB -1 -1 0.25 18420 1 0.03 -1 -1 30096 -1 -1 15 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64888 32 32 335 282 1 178 79 17 17 289 -1 unnamed_device 24.2 MiB 1.20 725 9881 3314 4760 1807 63.4 MiB 0.09 0.00 3.0705 -110.978 -3.0705 3.0705 0.34 0.000673844 0.000626056 0.0414273 0.0385157 -1 -1 -1 -1 44 2495 39 6.95648e+06 217135 787024. 2723.27 2.23 0.198114 0.17215 27778 195446 -1 1640 24 1491 2155 161809 43797 3.51007 3.51007 -123.578 -3.51007 0 0 997811. 3452.63 0.04 0.08 0.16 -1 -1 0.04 0.0307449 0.0267196 70 65 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_075.v common 8.95 vpr 63.89 MiB -1 -1 0.13 17924 1 0.03 -1 -1 30500 -1 -1 28 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65420 31 32 293 230 1 168 91 17 17 289 -1 unnamed_device 24.2 MiB 0.15 787 13759 4114 7119 2526 63.9 MiB 0.12 0.00 4.03897 -120.276 -4.03897 4.03897 0.36 0.000630466 0.000586078 0.0472538 0.0439103 -1 -1 -1 -1 52 2014 22 6.95648e+06 405319 926341. 3205.33 6.73 0.30885 0.266386 29218 227130 -1 1705 23 1115 1939 162852 38854 3.74066 3.74066 -117.496 -3.74066 0 0 1.14541e+06 3963.36 0.04 0.07 0.18 -1 -1 0.04 0.0284226 0.0247776 77 4 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_076.v common 5.40 vpr 64.13 MiB -1 -1 0.24 18324 1 0.03 -1 -1 30380 -1 -1 17 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65672 32 32 350 275 1 201 81 17 17 289 -1 unnamed_device 24.5 MiB 1.27 1129 13906 5547 6652 1707 64.1 MiB 0.15 0.00 4.25269 -145.404 -4.25269 4.25269 0.33 0.00070617 0.000655642 0.0622307 0.0578098 -1 -1 -1 -1 46 2914 38 6.95648e+06 246087 828058. 2865.25 1.96 0.211017 0.18524 28066 200906 -1 2416 22 1670 2541 234855 47792 4.12906 4.12906 -150.919 -4.12906 0 0 1.01997e+06 3529.29 0.04 0.09 0.16 -1 -1 0.04 0.0305654 0.0267071 83 34 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_077.v common 4.62 vpr 63.66 MiB -1 -1 0.15 18396 1 0.03 -1 -1 30276 -1 -1 27 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65184 32 32 385 308 1 176 91 17 17 289 -1 unnamed_device 24.6 MiB 0.98 819 15595 5661 7312 2622 63.7 MiB 0.14 0.00 4.05218 -132.756 -4.05218 4.05218 0.33 0.000744849 0.00069013 0.0600742 0.0556082 -1 -1 -1 -1 50 2360 27 6.95648e+06 390843 902133. 3121.57 1.67 0.221979 0.194369 28642 213929 -1 2023 22 1637 2772 246418 56349 3.87666 3.87666 -139.479 -3.87666 0 0 1.08113e+06 3740.92 0.04 0.07 0.13 -1 -1 0.04 0.0252435 0.0222256 81 65 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_078.v common 16.43 vpr 63.55 MiB -1 -1 0.26 18480 1 0.03 -1 -1 30332 -1 -1 34 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65080 32 32 387 309 1 182 98 17 17 289 -1 unnamed_device 24.6 MiB 0.62 897 14273 4946 6877 2450 63.6 MiB 0.12 0.00 4.00566 -132.318 -4.00566 4.00566 0.33 0.000753265 0.00069524 0.0504883 0.0467258 -1 -1 -1 -1 46 2857 41 6.95648e+06 492173 828058. 2865.25 13.84 0.393268 0.33942 28066 200906 -1 2104 30 1911 3270 292350 77784 3.73756 3.73756 -133.991 -3.73756 0 0 1.01997e+06 3529.29 0.04 0.07 0.11 -1 -1 0.04 0.0215404 0.0189431 88 65 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_079.v common 4.01 vpr 63.94 MiB -1 -1 0.23 18160 1 0.03 -1 -1 30144 -1 -1 13 30 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65476 30 32 272 232 1 142 75 17 17 289 -1 unnamed_device 24.6 MiB 0.55 593 8133 2655 3990 1488 63.9 MiB 0.08 0.00 3.61927 -103.264 -3.61927 3.61927 0.33 0.000582506 0.000541803 0.0320934 0.0298794 -1 -1 -1 -1 40 1549 26 6.95648e+06 188184 706193. 2443.58 1.39 0.15244 0.132209 26914 176310 -1 1374 30 1432 2394 215506 77818 3.10862 3.10862 -103.255 -3.10862 0 0 926341. 3205.33 0.04 0.10 0.14 -1 -1 0.04 0.032189 0.0277808 58 34 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_080.v common 4.30 vpr 64.10 MiB -1 -1 0.25 18376 1 0.05 -1 -1 30372 -1 -1 17 30 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65636 30 32 375 299 1 179 79 17 17 289 -1 unnamed_device 24.5 MiB 0.35 822 12247 5095 6655 497 64.1 MiB 0.12 0.00 4.01528 -131.428 -4.01528 4.01528 0.33 0.000729912 0.000678291 0.055437 0.051534 -1 -1 -1 -1 38 2443 47 6.95648e+06 246087 678818. 2348.85 1.82 0.230194 0.200509 26626 170182 -1 1798 26 1987 2874 247580 69494 4.01446 4.01446 -137.671 -4.01446 0 0 902133. 3121.57 0.03 0.11 0.14 -1 -1 0.03 0.0354639 0.0308171 79 63 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_081.v common 5.45 vpr 63.60 MiB -1 -1 0.25 18300 1 0.04 -1 -1 30276 -1 -1 18 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65128 32 32 340 270 1 193 82 17 17 289 -1 unnamed_device 24.7 MiB 1.18 893 10762 4413 5950 399 63.6 MiB 0.10 0.00 4.53151 -135.826 -4.53151 4.53151 0.34 0.000687293 0.000638631 0.0444127 0.041307 -1 -1 -1 -1 44 2872 50 6.95648e+06 260562 787024. 2723.27 2.17 0.218431 0.190231 27778 195446 -1 2052 21 1735 2824 235601 56350 4.03512 4.03512 -138.699 -4.03512 0 0 997811. 3452.63 0.04 0.09 0.16 -1 -1 0.04 0.0293526 0.0257142 80 34 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_082.v common 4.77 vpr 64.19 MiB -1 -1 0.26 18356 1 0.03 -1 -1 30112 -1 -1 16 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65728 31 32 340 275 1 188 79 17 17 289 -1 unnamed_device 24.6 MiB 1.18 809 10557 4353 5772 432 64.2 MiB 0.10 0.00 5.4697 -148.249 -5.4697 5.4697 0.34 0.000674967 0.000626424 0.0447159 0.041509 -1 -1 -1 -1 46 2258 27 6.95648e+06 231611 828058. 2865.25 1.38 0.19357 0.168978 28066 200906 -1 1792 22 1471 2281 155452 36845 4.49291 4.49291 -139.015 -4.49291 0 0 1.01997e+06 3529.29 0.04 0.08 0.16 -1 -1 0.04 0.0297389 0.0260022 81 47 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_083.v common 5.64 vpr 64.16 MiB -1 -1 0.25 18372 1 0.03 -1 -1 30316 -1 -1 25 30 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65696 30 32 377 310 1 169 87 17 17 289 -1 unnamed_device 24.5 MiB 1.85 828 12183 4288 5697 2198 64.2 MiB 0.11 0.00 4.07348 -128.624 -4.07348 4.07348 0.33 0.000722386 0.000671113 0.0486037 0.045149 -1 -1 -1 -1 42 2545 40 6.95648e+06 361892 744469. 2576.02 1.70 0.212745 0.18515 27202 183097 -1 1869 21 1189 1829 151869 35413 3.28672 3.28672 -121.376 -3.28672 0 0 949917. 3286.91 0.04 0.08 0.15 -1 -1 0.04 0.0298338 0.0260451 76 83 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_084.v common 5.05 vpr 64.02 MiB -1 -1 0.24 18500 1 0.03 -1 -1 30344 -1 -1 16 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65552 32 32 365 294 1 177 80 17 17 289 -1 unnamed_device 24.5 MiB 0.46 1023 14184 5117 6833 2234 64.0 MiB 0.14 0.00 4.17368 -136.691 -4.17368 4.17368 0.33 0.000716408 0.000665585 0.0621141 0.0577054 -1 -1 -1 -1 36 2809 30 6.95648e+06 231611 648988. 2245.63 2.43 0.221147 0.193836 26050 158493 -1 2429 27 2001 3437 348254 79029 4.18562 4.18562 -151.633 -4.18562 0 0 828058. 2865.25 0.03 0.12 0.13 -1 -1 0.03 0.0374475 0.0325502 75 57 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_085.v common 4.69 vpr 63.45 MiB -1 -1 0.18 18268 1 0.03 -1 -1 30220 -1 -1 25 29 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64972 29 32 378 310 1 170 86 17 17 289 -1 unnamed_device 24.4 MiB 0.65 761 11048 4050 5112 1886 63.4 MiB 0.10 0.00 3.45953 -109.092 -3.45953 3.45953 0.33 0.00071549 0.000663573 0.0445526 0.0413859 -1 -1 -1 -1 36 2656 42 6.95648e+06 361892 648988. 2245.63 2.06 0.211083 0.183304 26050 158493 -1 2025 23 1711 2675 260514 63101 3.36572 3.36572 -118.625 -3.36572 0 0 828058. 2865.25 0.03 0.10 0.13 -1 -1 0.03 0.0319609 0.0278008 78 85 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_086.v common 3.67 vpr 63.50 MiB -1 -1 0.21 17852 1 0.03 -1 -1 30432 -1 -1 12 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65024 32 32 243 205 1 140 76 17 17 289 -1 unnamed_device 23.9 MiB 0.62 631 7916 2533 3644 1739 63.5 MiB 0.07 0.00 3.37543 -105.078 -3.37543 3.37543 0.34 0.000557086 0.000517598 0.0302229 0.0281436 -1 -1 -1 -1 36 1928 35 6.95648e+06 173708 648988. 2245.63 1.08 0.134647 0.116993 26050 158493 -1 1572 21 1088 1579 130575 31333 2.97567 2.97567 -108.699 -2.97567 0 0 828058. 2865.25 0.03 0.06 0.13 -1 -1 0.03 0.0238637 0.0206275 55 3 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_087.v common 6.31 vpr 64.27 MiB -1 -1 0.24 18476 1 0.03 -1 -1 30208 -1 -1 27 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65816 32 32 373 302 1 170 91 17 17 289 -1 unnamed_device 24.6 MiB 2.58 966 14983 5125 7592 2266 64.3 MiB 0.13 0.00 4.09512 -134.157 -4.09512 4.09512 0.33 0.000729222 0.00067549 0.0568329 0.0526316 -1 -1 -1 -1 40 2364 26 6.95648e+06 390843 706193. 2443.58 1.66 0.207163 0.18114 26914 176310 -1 2242 21 1682 2831 271843 58192 3.95176 3.95176 -140.031 -3.95176 0 0 926341. 3205.33 0.04 0.10 0.14 -1 -1 0.04 0.0280642 0.024833 77 65 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_088.v common 3.71 vpr 64.22 MiB -1 -1 0.24 18552 1 0.03 -1 -1 30264 -1 -1 15 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65764 32 32 397 314 1 188 79 17 17 289 -1 unnamed_device 24.6 MiB 0.44 935 9205 3203 4382 1620 64.2 MiB 0.10 0.00 3.95902 -138.777 -3.95902 3.95902 0.33 0.000760295 0.000705497 0.044331 0.0412448 -1 -1 -1 -1 42 2045 22 6.95648e+06 217135 744469. 2576.02 1.16 0.204094 0.177496 27202 183097 -1 1789 22 1663 2452 165404 44310 4.13066 4.13066 -149.629 -4.13066 0 0 949917. 3286.91 0.04 0.08 0.15 -1 -1 0.04 0.0334537 0.0292227 81 65 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_089.v common 4.48 vpr 63.90 MiB -1 -1 0.23 18232 1 0.03 -1 -1 30408 -1 -1 14 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65436 32 32 269 231 1 163 78 17 17 289 -1 unnamed_device 24.4 MiB 0.71 737 12528 5238 7008 282 63.9 MiB 0.10 0.00 4.02538 -120.478 -4.02538 4.02538 0.33 0.000578199 0.000537592 0.0458987 0.0426853 -1 -1 -1 -1 40 1817 24 6.95648e+06 202660 706193. 2443.58 1.33 0.16213 0.141492 26914 176310 -1 1590 23 1190 1516 146177 48533 3.34602 3.34602 -114.785 -3.34602 0 0 926341. 3205.33 0.04 0.08 0.14 -1 -1 0.04 0.0262131 0.0228482 64 29 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_090.v common 2.86 vpr 63.47 MiB -1 -1 0.22 17944 1 0.03 -1 -1 30304 -1 -1 16 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64992 31 32 245 205 1 144 79 17 17 289 -1 unnamed_device 23.9 MiB 0.21 813 9543 2639 6153 751 63.5 MiB 0.08 0.00 3.28943 -107.171 -3.28943 3.28943 0.33 0.000552058 0.000513941 0.0332108 0.0309347 -1 -1 -1 -1 30 2091 23 6.95648e+06 231611 556674. 1926.21 0.75 0.101378 0.0892292 25186 138497 -1 1788 22 1361 2041 160912 34813 2.97572 2.97572 -111.872 -2.97572 0 0 706193. 2443.58 0.03 0.07 0.11 -1 -1 0.03 0.0241773 0.0210133 59 4 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_091.v common 4.99 vpr 64.19 MiB -1 -1 0.24 18380 1 0.03 -1 -1 30480 -1 -1 18 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65732 32 32 348 274 1 203 82 17 17 289 -1 unnamed_device 24.6 MiB 1.05 911 13788 5176 6984 1628 64.2 MiB 0.13 0.00 4.12648 -135.504 -4.12648 4.12648 0.33 0.000699074 0.000649372 0.0567967 0.0528143 -1 -1 -1 -1 42 2629 45 6.95648e+06 260562 744469. 2576.02 1.88 0.220087 0.192147 27202 183097 -1 1945 23 2032 2844 200495 50646 3.92702 3.92702 -143.111 -3.92702 0 0 949917. 3286.91 0.03 0.05 0.11 -1 -1 0.03 0.0177332 0.0156956 82 34 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_092.v common 5.22 vpr 64.19 MiB -1 -1 0.15 18440 1 0.03 -1 -1 30296 -1 -1 23 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65728 32 32 356 289 1 195 87 17 17 289 -1 unnamed_device 24.6 MiB 0.74 1160 14487 4690 8180 1617 64.2 MiB 0.13 0.00 4.82888 -148.206 -4.82888 4.82888 0.33 0.000712138 0.000661648 0.0557283 0.0517813 -1 -1 -1 -1 34 3080 48 6.95648e+06 332941 618332. 2139.56 2.48 0.235318 0.205766 25762 151098 -1 2599 30 2158 3120 284278 71454 4.92206 4.92206 -162.846 -4.92206 0 0 787024. 2723.27 0.03 0.12 0.12 -1 -1 0.03 0.0391423 0.0339394 84 56 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_093.v common 3.98 vpr 63.39 MiB -1 -1 0.24 18200 1 0.03 -1 -1 30160 -1 -1 29 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64912 32 32 349 260 1 195 93 17 17 289 -1 unnamed_device 24.4 MiB 0.22 1004 12903 4488 6360 2055 63.4 MiB 0.12 0.00 4.68117 -141.413 -4.68117 4.68117 0.33 0.000720343 0.00066916 0.0469684 0.0436423 -1 -1 -1 -1 46 2499 25 6.95648e+06 419795 828058. 2865.25 1.60 0.19455 0.170056 28066 200906 -1 2004 22 1773 2931 237482 50990 4.37331 4.37331 -138.259 -4.37331 0 0 1.01997e+06 3529.29 0.04 0.09 0.16 -1 -1 0.04 0.0311449 0.0272831 90 3 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_094.v common 7.45 vpr 63.46 MiB -1 -1 0.25 18380 1 0.03 -1 -1 30352 -1 -1 29 30 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64980 30 32 316 264 1 156 91 17 17 289 -1 unnamed_device 24.3 MiB 0.38 734 12943 4392 6016 2535 63.5 MiB 0.11 0.00 3.44548 -100.751 -3.44548 3.44548 0.34 0.00063693 0.000591025 0.0430139 0.0399316 -1 -1 -1 -1 38 1908 24 6.95648e+06 419795 678818. 2348.85 4.93 0.300969 0.25923 26626 170182 -1 1618 20 1225 2023 135852 31452 3.10282 3.10282 -102.074 -3.10282 0 0 902133. 3121.57 0.04 0.07 0.14 -1 -1 0.04 0.0269448 0.0235565 72 52 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_095.v common 2.69 vpr 63.54 MiB -1 -1 0.24 18164 1 0.03 -1 -1 30476 -1 -1 19 27 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65060 27 32 255 219 1 128 78 17 17 289 -1 unnamed_device 24.0 MiB 0.22 722 7050 2096 4338 616 63.5 MiB 0.06 0.00 2.9635 -93.8648 -2.9635 2.9635 0.33 0.000545241 0.00050719 0.0250802 0.0233661 -1 -1 -1 -1 30 1680 25 6.95648e+06 275038 556674. 1926.21 0.56 0.0935952 0.0816389 25186 138497 -1 1383 22 1105 1543 104085 23514 2.95552 2.95552 -103.065 -2.95552 0 0 706193. 2443.58 0.03 0.06 0.11 -1 -1 0.03 0.0237341 0.0205911 59 34 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_096.v common 5.41 vpr 64.35 MiB -1 -1 0.26 18844 1 0.03 -1 -1 30304 -1 -1 18 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65892 32 32 421 327 1 224 82 17 17 289 -1 unnamed_device 24.7 MiB 0.89 1281 15390 5999 6748 2643 64.3 MiB 0.16 0.00 3.89055 -132.538 -3.89055 3.89055 0.33 0.000813615 0.000756466 0.0730744 0.0678737 -1 -1 -1 -1 42 3669 39 6.95648e+06 260562 744469. 2576.02 2.12 0.258872 0.226973 27202 183097 -1 3041 54 3734 6186 866572 315736 4.00842 4.00842 -141.9 -4.00842 0 0 949917. 3286.91 0.04 0.33 0.15 -1 -1 0.04 0.0739409 0.0637852 93 65 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_097.v common 7.93 vpr 63.49 MiB -1 -1 0.21 18296 1 0.04 -1 -1 30416 -1 -1 17 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65016 31 32 365 296 1 191 80 17 17 289 -1 unnamed_device 24.5 MiB 3.68 1050 11776 4191 5452 2133 63.5 MiB 0.12 0.00 5.15055 -152.017 -5.15055 5.15055 0.35 0.000718301 0.000667584 0.0516793 0.0480382 -1 -1 -1 -1 38 2588 31 6.95648e+06 246087 678818. 2348.85 1.94 0.206918 0.180683 26626 170182 -1 2229 25 1746 2589 260957 73631 4.60096 4.60096 -155.355 -4.60096 0 0 902133. 3121.57 0.04 0.12 0.14 -1 -1 0.04 0.035326 0.030777 81 64 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_098.v common 6.94 vpr 63.92 MiB -1 -1 0.17 18372 1 0.03 -1 -1 30488 -1 -1 13 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65456 32 32 331 280 1 171 77 17 17 289 -1 unnamed_device 24.2 MiB 3.06 846 8879 3445 4513 921 63.9 MiB 0.09 0.00 3.71344 -127.299 -3.71344 3.71344 0.33 0.000662152 0.000616044 0.0396078 0.0367971 -1 -1 -1 -1 34 2721 49 6.95648e+06 188184 618332. 2139.56 1.88 0.20583 0.178674 25762 151098 -1 2098 21 1594 2255 229437 53251 3.98836 3.98836 -149.148 -3.98836 0 0 787024. 2723.27 0.03 0.08 0.12 -1 -1 0.03 0.0275507 0.0240338 69 65 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_099.v common 4.40 vpr 63.30 MiB -1 -1 0.24 18352 1 0.03 -1 -1 30464 -1 -1 27 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64820 32 32 326 263 1 169 91 17 17 289 -1 unnamed_device 24.2 MiB 0.19 870 13759 5668 7640 451 63.3 MiB 0.12 0.00 4.15778 -125.912 -4.15778 4.15778 0.33 0.000671759 0.00062482 0.0479104 0.0444404 -1 -1 -1 -1 38 2577 27 6.95648e+06 390843 678818. 2348.85 2.16 0.187441 0.163621 26626 170182 -1 1942 23 1477 2327 174711 43122 4.19391 4.19391 -133.252 -4.19391 0 0 902133. 3121.57 0.03 0.08 0.14 -1 -1 0.03 0.0297229 0.0258967 78 34 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_100.v common 4.48 vpr 63.51 MiB -1 -1 0.13 18436 1 0.03 -1 -1 30584 -1 -1 26 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65032 31 32 373 294 1 188 89 17 17 289 -1 unnamed_device 24.5 MiB 0.47 873 14543 4744 7116 2683 63.5 MiB 0.13 0.00 4.28865 -123.708 -4.28865 4.28865 0.33 0.000725918 0.000673454 0.0562397 0.05222 -1 -1 -1 -1 36 2840 47 6.95648e+06 376368 648988. 2245.63 1.95 0.231301 0.201645 26050 158493 -1 2024 22 1600 2407 161278 40379 4.11982 4.11982 -132.03 -4.11982 0 0 828058. 2865.25 0.03 0.08 0.13 -1 -1 0.03 0.0319741 0.0279464 86 50 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_101.v common 4.86 vpr 63.29 MiB -1 -1 0.23 18392 1 0.03 -1 -1 30376 -1 -1 26 30 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64812 30 32 325 268 1 165 88 17 17 289 -1 unnamed_device 24.2 MiB 0.47 772 13153 5458 7079 616 63.3 MiB 0.11 0.00 3.0694 -97.4086 -3.0694 3.0694 0.33 0.000653895 0.000606982 0.0467319 0.0433975 -1 -1 -1 -1 40 2419 50 6.95648e+06 376368 706193. 2443.58 2.36 0.206789 0.179782 26914 176310 -1 1811 25 1374 2302 189877 47043 3.14317 3.14317 -106.853 -3.14317 0 0 926341. 3205.33 0.04 0.08 0.14 -1 -1 0.04 0.0309509 0.0268435 73 51 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_102.v common 5.54 vpr 64.13 MiB -1 -1 0.23 18252 1 0.03 -1 -1 30276 -1 -1 18 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65668 32 32 350 275 1 209 82 17 17 289 -1 unnamed_device 24.5 MiB 0.97 990 11296 4658 6209 429 64.1 MiB 0.11 0.00 4.17918 -138.94 -4.17918 4.17918 0.33 0.000701844 0.000651419 0.0471705 0.0438467 -1 -1 -1 -1 56 2616 30 6.95648e+06 260562 973134. 3367.25 2.33 0.203793 0.178063 29794 239141 -1 2154 22 1945 2922 305600 70699 3.94732 3.94732 -136.513 -3.94732 0 0 1.19926e+06 4149.71 0.05 0.11 0.19 -1 -1 0.05 0.0317994 0.0278462 87 34 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_103.v common 4.21 vpr 63.58 MiB -1 -1 0.26 18312 1 0.03 -1 -1 30104 -1 -1 29 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65108 32 32 386 307 1 187 93 17 17 289 -1 unnamed_device 24.5 MiB 0.41 1037 8913 3105 4740 1068 63.6 MiB 0.08 0.00 3.51453 -125.823 -3.51453 3.51453 0.33 0.000744025 0.000689753 0.0342182 0.0318076 -1 -1 -1 -1 34 2812 26 6.95648e+06 419795 618332. 2139.56 1.61 0.190691 0.165539 25762 151098 -1 2314 20 1644 2351 206052 44179 3.21107 3.21107 -131.121 -3.21107 0 0 787024. 2723.27 0.03 0.09 0.12 -1 -1 0.03 0.0303118 0.026521 89 62 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_104.v common 5.39 vpr 63.66 MiB -1 -1 0.23 18188 1 0.03 -1 -1 30236 -1 -1 14 29 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65192 29 32 269 229 1 131 75 17 17 289 -1 unnamed_device 24.0 MiB 2.38 503 8765 3597 4670 498 63.7 MiB 0.07 0.00 3.77092 -99.7617 -3.77092 3.77092 0.34 0.000572882 0.00053298 0.0340432 0.0316733 -1 -1 -1 -1 36 1465 44 6.95648e+06 202660 648988. 2245.63 1.01 0.166036 0.14345 26050 158493 -1 1156 28 1151 1593 112172 28468 3.00497 3.00497 -101.661 -3.00497 0 0 828058. 2865.25 0.03 0.07 0.13 -1 -1 0.03 0.0297575 0.0257352 55 34 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_105.v common 7.27 vpr 63.48 MiB -1 -1 0.23 18364 1 0.03 -1 -1 30324 -1 -1 14 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65000 32 32 310 266 1 169 78 17 17 289 -1 unnamed_device 24.3 MiB 0.79 819 11864 4595 6100 1169 63.5 MiB 0.10 0.00 3.1157 -110.455 -3.1157 3.1157 0.33 0.000617386 0.000572641 0.0470302 0.0437382 -1 -1 -1 -1 38 2084 30 6.95648e+06 202660 678818. 2348.85 4.41 0.281604 0.242479 26626 170182 -1 1651 21 1499 1900 148274 33656 3.11207 3.11207 -115.72 -3.11207 0 0 902133. 3121.57 0.03 0.07 0.14 -1 -1 0.03 0.0261644 0.0227736 66 58 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_106.v common 13.24 vpr 63.42 MiB -1 -1 0.25 18348 1 0.08 -1 -1 30416 -1 -1 31 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64944 31 32 326 261 1 170 94 17 17 289 -1 unnamed_device 24.2 MiB 0.29 807 17347 5453 8954 2940 63.4 MiB 0.14 0.00 3.99218 -119.823 -3.99218 3.99218 0.33 0.000669928 0.000620402 0.0570896 0.0529137 -1 -1 -1 -1 38 2796 47 6.95648e+06 448746 678818. 2348.85 10.76 0.37726 0.326276 26626 170182 -1 2010 24 1596 2698 256761 68889 4.44846 4.44846 -129.239 -4.44846 0 0 902133. 3121.57 0.03 0.10 0.14 -1 -1 0.03 0.031009 0.0270206 80 33 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_107.v common 4.22 vpr 63.23 MiB -1 -1 0.25 17992 1 0.03 -1 -1 30348 -1 -1 16 29 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64752 29 32 262 224 1 162 77 17 17 289 -1 unnamed_device 24.2 MiB 0.73 751 10183 4226 5557 400 63.2 MiB 0.09 0.00 4.02427 -114.705 -4.02427 4.02427 0.34 0.000562056 0.000522712 0.0372432 0.0346484 -1 -1 -1 -1 36 2194 39 6.95648e+06 231611 648988. 2245.63 1.48 0.169094 0.146733 26050 158493 -1 1759 20 1128 1442 125538 30209 3.91432 3.91432 -123.418 -3.91432 0 0 828058. 2865.25 0.03 0.06 0.13 -1 -1 0.03 0.022937 0.0199794 66 31 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_108.v common 4.19 vpr 63.57 MiB -1 -1 0.20 18176 1 0.03 -1 -1 30004 -1 -1 12 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65096 32 32 278 238 1 144 76 17 17 289 -1 unnamed_device 24.2 MiB 0.99 681 10636 4393 6016 227 63.6 MiB 0.10 0.00 3.83566 -112.084 -3.83566 3.83566 0.33 0.000597626 0.000555977 0.0419891 0.0390707 -1 -1 -1 -1 40 1767 23 6.95648e+06 173708 706193. 2443.58 1.10 0.159787 0.139126 26914 176310 -1 1559 22 1276 1977 179411 40906 3.25122 3.25122 -115.603 -3.25122 0 0 926341. 3205.33 0.04 0.08 0.14 -1 -1 0.04 0.0259194 0.0225752 56 34 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_109.v common 3.84 vpr 64.15 MiB -1 -1 0.25 18400 1 0.04 -1 -1 30232 -1 -1 31 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65688 31 32 373 300 1 174 94 17 17 289 -1 unnamed_device 24.5 MiB 0.66 985 14152 4508 7259 2385 64.1 MiB 0.12 0.00 3.38354 -117.396 -3.38354 3.38354 0.33 0.000726175 0.000673176 0.051184 0.0473896 -1 -1 -1 -1 32 2704 47 6.95648e+06 448746 586450. 2029.24 1.07 0.170877 0.149923 25474 144626 -1 2202 25 1863 2662 216690 47859 3.29222 3.29222 -129.148 -3.29222 0 0 744469. 2576.02 0.03 0.10 0.12 -1 -1 0.03 0.0350304 0.0304809 83 64 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_110.v common 5.48 vpr 63.79 MiB -1 -1 0.24 18100 1 0.05 -1 -1 30472 -1 -1 14 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65324 31 32 265 230 1 159 77 17 17 289 -1 unnamed_device 24.3 MiB 1.45 950 11650 3937 6122 1591 63.8 MiB 0.10 0.00 3.38663 -109.663 -3.38663 3.38663 0.33 0.000568518 0.000528957 0.0431381 0.040133 -1 -1 -1 -1 34 2390 49 6.95648e+06 202660 618332. 2139.56 2.03 0.185926 0.161626 25762 151098 -1 2037 21 1191 1753 178422 38700 3.51307 3.51307 -126.052 -3.51307 0 0 787024. 2723.27 0.03 0.07 0.13 -1 -1 0.03 0.0243167 0.0212093 61 34 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_111.v common 4.51 vpr 63.45 MiB -1 -1 0.24 18408 1 0.03 -1 -1 30004 -1 -1 26 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64972 32 32 349 286 1 165 90 17 17 289 -1 unnamed_device 24.4 MiB 1.00 822 14562 5721 7220 1621 63.4 MiB 0.13 0.00 3.0937 -105.576 -3.0937 3.0937 0.34 0.000692513 0.000642677 0.0530771 0.0492749 -1 -1 -1 -1 38 2169 23 6.95648e+06 376368 678818. 2348.85 1.51 0.197208 0.17227 26626 170182 -1 1668 21 1108 1659 107487 25735 3.21537 3.21537 -111.915 -3.21537 0 0 902133. 3121.57 0.03 0.06 0.14 -1 -1 0.03 0.0286275 0.0249801 73 57 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_112.v common 5.19 vpr 63.56 MiB -1 -1 0.27 18360 1 0.03 -1 -1 30228 -1 -1 20 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65084 31 32 396 325 1 176 83 17 17 289 -1 unnamed_device 24.5 MiB 1.40 791 13943 5849 7592 502 63.6 MiB 0.13 0.00 3.42825 -117.952 -3.42825 3.42825 0.33 0.000750253 0.00069628 0.0601711 0.0558522 -1 -1 -1 -1 42 2497 35 6.95648e+06 289514 744469. 2576.02 1.52 0.222922 0.194643 27202 183097 -1 1880 24 1768 2506 200966 44867 3.37547 3.37547 -126.62 -3.37547 0 0 949917. 3286.91 0.04 0.09 0.15 -1 -1 0.04 0.0340165 0.029562 79 91 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_113.v common 4.10 vpr 63.57 MiB -1 -1 0.23 18476 1 0.03 -1 -1 30404 -1 -1 11 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65100 32 32 303 262 1 145 75 17 17 289 -1 unnamed_device 24.2 MiB 0.41 624 8133 2287 4280 1566 63.6 MiB 0.08 0.00 2.84005 -97.45 -2.84005 2.84005 0.34 0.000615068 0.000571508 0.0341923 0.031808 -1 -1 -1 -1 38 2058 31 6.95648e+06 159232 678818. 2348.85 1.67 0.176328 0.152991 26626 170182 -1 1514 21 1069 1672 138332 33033 2.91462 2.91462 -105.671 -2.91462 0 0 902133. 3121.57 0.03 0.07 0.14 -1 -1 0.03 0.025692 0.0223591 58 57 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_114.v common 4.82 vpr 63.41 MiB -1 -1 0.22 18408 1 0.03 -1 -1 30264 -1 -1 14 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64932 32 32 290 244 1 172 78 17 17 289 -1 unnamed_device 24.3 MiB 1.00 792 11034 3613 5167 2254 63.4 MiB 0.07 0.00 3.49253 -112.844 -3.49253 3.49253 0.33 0.00027393 0.000252085 0.0263853 0.0243252 -1 -1 -1 -1 40 1946 50 6.95648e+06 202660 706193. 2443.58 1.86 0.141846 0.12237 26914 176310 -1 1609 23 1553 2254 154192 42838 3.54587 3.54587 -120.483 -3.54587 0 0 926341. 3205.33 0.04 0.08 0.10 -1 -1 0.04 0.0278962 0.0243027 68 34 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_115.v common 5.05 vpr 63.50 MiB -1 -1 0.22 18352 1 0.03 -1 -1 30236 -1 -1 16 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65024 32 32 318 257 1 190 80 17 17 289 -1 unnamed_device 24.3 MiB 0.76 833 12292 3904 6196 2192 63.5 MiB 0.11 0.00 4.24288 -124.746 -4.24288 4.24288 0.33 0.000654747 0.00060808 0.0492224 0.0457578 -1 -1 -1 -1 40 2755 42 6.95648e+06 231611 706193. 2443.58 2.25 0.20883 0.182198 26914 176310 -1 1933 21 1493 2038 146228 37477 4.53772 4.53772 -141.377 -4.53772 0 0 926341. 3205.33 0.04 0.07 0.14 -1 -1 0.04 0.028074 0.024611 76 30 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_116.v common 3.93 vpr 63.96 MiB -1 -1 0.22 18400 1 0.03 -1 -1 30096 -1 -1 25 29 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65492 29 32 324 268 1 162 86 17 17 289 -1 unnamed_device 24.2 MiB 0.74 887 12749 3403 8514 832 64.0 MiB 0.11 0.00 3.75349 -106.817 -3.75349 3.75349 0.33 0.000655794 0.000608407 0.0464217 0.0431645 -1 -1 -1 -1 40 2164 22 6.95648e+06 361892 706193. 2443.58 1.12 0.177674 0.155099 26914 176310 -1 1951 20 1088 1806 144618 30982 3.09627 3.09627 -106.348 -3.09627 0 0 926341. 3205.33 0.04 0.07 0.14 -1 -1 0.04 0.0266385 0.0233104 73 55 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_117.v common 5.45 vpr 63.77 MiB -1 -1 0.15 18476 1 0.03 -1 -1 30448 -1 -1 16 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65296 32 32 393 312 1 206 80 17 17 289 -1 unnamed_device 24.6 MiB 1.01 944 10916 4482 6031 403 63.8 MiB 0.11 0.00 4.56271 -145.59 -4.56271 4.56271 0.33 0.0007617 0.000707616 0.0512233 0.0476299 -1 -1 -1 -1 48 2628 27 6.95648e+06 231611 865456. 2994.66 1.87 0.209841 0.183443 28354 207349 -1 2079 21 1946 2867 234108 54401 4.14042 4.14042 -146.526 -4.14042 0 0 1.05005e+06 3633.38 0.04 0.09 0.14 -1 -1 0.04 0.0323215 0.0283278 87 65 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_118.v common 4.03 vpr 63.54 MiB -1 -1 0.22 17816 1 0.02 -1 -1 30156 -1 -1 14 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65060 31 32 229 197 1 137 77 17 17 289 -1 unnamed_device 23.9 MiB 0.48 850 11487 3276 7037 1174 63.5 MiB 0.09 0.00 3.27643 -98.5204 -3.27643 3.27643 0.34 0.000527239 0.000491076 0.0393632 0.0366305 -1 -1 -1 -1 36 1821 28 6.95648e+06 202660 648988. 2245.63 1.04 0.150269 0.130854 26050 158493 -1 1756 20 923 1477 144346 32454 2.80152 2.80152 -106.687 -2.80152 0 0 828058. 2865.25 0.03 0.06 0.13 -1 -1 0.03 0.0215415 0.0187667 54 4 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_119.v common 5.05 vpr 64.39 MiB -1 -1 0.26 18384 1 0.03 -1 -1 30276 -1 -1 28 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65940 32 32 412 334 1 182 92 17 17 289 -1 unnamed_device 24.6 MiB 0.56 1018 12719 4220 7060 1439 64.4 MiB 0.12 0.00 4.01704 -139.112 -4.01704 4.01704 0.33 0.000774835 0.000719138 0.0503286 0.0467212 -1 -1 -1 -1 60 2729 39 6.95648e+06 405319 1051360. 3631.18 2.28 0.228398 0.198782 26050 158493 -1 2244 25 1829 2594 281495 78022 4.65882 4.65882 -161.108 -4.65882 0 0 828058. 2865.25 0.03 0.12 0.14 -1 -1 0.03 0.0371994 0.0323743 84 90 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_120.v common 5.28 vpr 64.08 MiB -1 -1 0.26 18420 1 0.03 -1 -1 30104 -1 -1 11 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65620 32 32 376 318 1 154 75 17 17 289 -1 unnamed_device 24.5 MiB 2.11 857 8765 3583 5063 119 64.1 MiB 0.09 0.00 2.94085 -120.064 -2.94085 2.94085 0.33 0.000714357 0.000663612 0.0420536 0.0390847 -1 -1 -1 -1 44 1847 22 6.95648e+06 159232 787024. 2723.27 1.11 0.180668 0.157155 27778 195446 -1 1578 20 1304 1733 146993 30530 3.08702 3.08702 -123.431 -3.08702 0 0 997811. 3452.63 0.04 0.07 0.16 -1 -1 0.04 0.0281884 0.0245793 62 96 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_121.v common 4.74 vpr 63.46 MiB -1 -1 0.25 18408 1 0.03 -1 -1 30272 -1 -1 26 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64980 32 32 360 293 1 172 90 17 17 289 -1 unnamed_device 24.5 MiB 0.84 1060 13758 4199 8057 1502 63.5 MiB 0.12 0.00 3.53583 -121.023 -3.53583 3.53583 0.33 0.000709999 0.000659353 0.0526512 0.0488926 -1 -1 -1 -1 38 2535 47 6.95648e+06 376368 678818. 2348.85 1.74 0.236168 0.206262 26626 170182 -1 2063 20 1174 1822 139745 29623 3.04657 3.04657 -117.937 -3.04657 0 0 902133. 3121.57 0.04 0.07 0.14 -1 -1 0.04 0.0281388 0.0245741 78 60 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_122.v common 5.64 vpr 64.41 MiB -1 -1 0.26 18728 1 0.03 -1 -1 30320 -1 -1 19 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65952 32 32 396 299 1 227 83 17 17 289 -1 unnamed_device 24.6 MiB 1.34 1049 14123 4672 6739 2712 64.4 MiB 0.14 0.00 5.66009 -162.761 -5.66009 5.66009 0.34 0.000778985 0.000723375 0.0639431 0.059455 -1 -1 -1 -1 44 3292 50 6.95648e+06 275038 787024. 2723.27 1.99 0.261182 0.228743 27778 195446 -1 2492 23 2221 3235 297331 69565 5.40546 5.40546 -173.699 -5.40546 0 0 997811. 3452.63 0.04 0.11 0.16 -1 -1 0.04 0.0363053 0.0317993 95 34 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_123.v common 3.46 vpr 63.34 MiB -1 -1 0.21 18316 1 0.03 -1 -1 30164 -1 -1 13 30 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64856 30 32 224 207 1 132 75 17 17 289 -1 unnamed_device 23.9 MiB 0.73 598 8765 3587 4876 302 63.3 MiB 0.07 0.00 2.40586 -86.9448 -2.40586 2.40586 0.33 0.000499508 0.000464164 0.0294411 0.0273995 -1 -1 -1 -1 32 1744 36 6.95648e+06 188184 586450. 2029.24 0.72 0.100164 0.0874915 25474 144626 -1 1291 24 887 1144 125858 39222 2.31623 2.31623 -92.5665 -2.31623 0 0 744469. 2576.02 0.03 0.07 0.12 -1 -1 0.03 0.0232949 0.0201983 51 34 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_124.v common 4.19 vpr 63.58 MiB -1 -1 0.23 18228 1 0.03 -1 -1 30428 -1 -1 14 30 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65108 30 32 286 239 1 137 76 17 17 289 -1 unnamed_device 24.3 MiB 0.98 540 9676 3970 5266 440 63.6 MiB 0.08 0.00 3.25824 -103.807 -3.25824 3.25824 0.34 0.000600291 0.000557582 0.0387376 0.0360315 -1 -1 -1 -1 46 1523 30 6.95648e+06 202660 828058. 2865.25 1.17 0.165392 0.143579 28066 200906 -1 1133 40 1670 2471 196324 47547 2.94882 2.94882 -105.984 -2.94882 0 0 1.01997e+06 3529.29 0.04 0.10 0.16 -1 -1 0.04 0.0417313 0.0359138 57 34 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_125.v common 4.13 vpr 63.31 MiB -1 -1 0.24 18196 1 0.03 -1 -1 30084 -1 -1 19 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64828 32 32 296 247 1 152 83 17 17 289 -1 unnamed_device 24.3 MiB 0.18 704 10883 3964 5784 1135 63.3 MiB 0.10 0.00 3.0052 -108.002 -3.0052 3.0052 0.34 0.000627047 0.000581936 0.0399603 0.0371595 -1 -1 -1 -1 38 2488 38 6.95648e+06 275038 678818. 2348.85 1.94 0.183808 0.159575 26626 170182 -1 1732 20 1257 2180 161199 38195 3.30322 3.30322 -118.2 -3.30322 0 0 902133. 3121.57 0.04 0.07 0.10 -1 -1 0.04 0.0256107 0.0223878 65 34 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_126.v common 3.49 vpr 63.66 MiB -1 -1 0.13 18192 1 0.03 -1 -1 30264 -1 -1 25 25 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65184 25 32 216 194 1 119 82 17 17 289 -1 unnamed_device 24.3 MiB 0.17 476 12186 4413 5265 2508 63.7 MiB 0.08 0.00 3.29759 -75.7686 -3.29759 3.29759 0.33 0.000479342 0.000443744 0.0344437 0.0319592 -1 -1 -1 -1 36 1639 41 6.95648e+06 361892 648988. 2245.63 1.21 0.144471 0.125015 26050 158493 -1 1187 21 863 1360 103903 26463 3.13012 3.13012 -84.3189 -3.13012 0 0 828058. 2865.25 0.03 0.05 0.13 -1 -1 0.03 0.0200072 0.0173432 55 29 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_127.v common 13.58 vpr 63.39 MiB -1 -1 0.23 18344 1 0.03 -1 -1 30268 -1 -1 14 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64908 32 32 376 307 1 179 78 17 17 289 -1 unnamed_device 24.4 MiB 0.69 806 10370 3831 4684 1855 63.4 MiB 0.10 0.00 3.9218 -122.886 -3.9218 3.9218 0.34 0.000732764 0.000680223 0.0482376 0.044803 -1 -1 -1 -1 46 2882 47 6.95648e+06 202660 828058. 2865.25 10.53 0.402525 0.346431 28066 200906 -1 1903 23 1645 2734 179694 45607 4.81042 4.81042 -142.631 -4.81042 0 0 1.01997e+06 3529.29 0.04 0.09 0.16 -1 -1 0.04 0.0325787 0.0283871 75 72 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_128.v common 4.72 vpr 64.20 MiB -1 -1 0.27 18484 1 0.03 -1 -1 30260 -1 -1 29 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65740 31 32 409 331 1 183 92 17 17 289 -1 unnamed_device 24.5 MiB 0.67 831 15410 4963 7865 2582 64.2 MiB 0.14 0.00 3.54189 -120.52 -3.54189 3.54189 0.34 0.000763897 0.000707519 0.0603268 0.0560269 -1 -1 -1 -1 38 2488 44 6.95648e+06 419795 678818. 2348.85 1.55 0.246431 0.215283 26626 170182 -1 1851 20 1828 2491 185688 43469 3.70927 3.70927 -134.065 -3.70927 0 0 902133. 3121.57 0.04 0.08 0.11 -1 -1 0.04 0.0306903 0.0268235 88 90 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_001.v common 5.47 vpr 63.41 MiB -1 -1 0.24 18360 1 0.03 -1 -1 30004 -1 -1 18 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64928 32 32 354 285 1 206 82 17 17 289 -1 unnamed_device 24.4 MiB 0.68 1115 9160 3671 5291 198 63.4 MiB 0.10 0.00 5.0213 -150.555 -5.0213 5.0213 0.33 0.000699114 0.00064927 0.038701 0.0359596 -1 -1 -1 -1 38 3066 38 6.99608e+06 264882 678818. 2348.85 2.38 0.201348 0.175091 26626 170182 -1 2442 22 1819 2636 197737 43427 4.74741 4.74741 -155.357 -4.74741 0 0 902133. 3121.57 0.03 0.08 0.14 -1 -1 0.03 0.0313512 0.027472 89 50 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_002.v common 3.84 vpr 63.95 MiB -1 -1 0.26 18408 1 0.03 -1 -1 30356 -1 -1 23 30 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65480 30 32 363 293 1 224 85 17 17 289 -1 unnamed_device 24.3 MiB 0.38 969 11431 4390 5830 1211 63.9 MiB 0.11 0.00 4.78611 -141.428 -4.78611 4.78611 0.33 0.000704756 0.000654532 0.0460357 0.0427852 -1 -1 -1 -1 46 2503 26 6.99608e+06 338461 828058. 2865.25 1.41 0.18991 0.165526 28066 200906 -1 2046 20 1809 2697 200600 46654 4.22794 4.22794 -137.704 -4.22794 0 0 1.01997e+06 3529.29 0.04 0.08 0.16 -1 -1 0.04 0.0283318 0.0247795 99 63 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_003.v common 3.77 vpr 63.73 MiB -1 -1 0.24 18448 1 0.03 -1 -1 30260 -1 -1 18 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65264 32 32 299 247 1 182 82 17 17 289 -1 unnamed_device 24.1 MiB 0.41 783 13254 4112 6373 2769 63.7 MiB 0.11 0.00 3.72729 -109.674 -3.72729 3.72729 0.33 0.000625596 0.000581673 0.0488825 0.0454632 -1 -1 -1 -1 44 2136 24 6.99608e+06 264882 787024. 2723.27 1.30 0.177479 0.155179 27778 195446 -1 1563 22 1258 1664 102584 26082 4.32016 4.32016 -116.534 -4.32016 0 0 997811. 3452.63 0.04 0.06 0.15 -1 -1 0.04 0.0269732 0.0235055 75 29 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_004.v common 3.90 vpr 63.93 MiB -1 -1 0.24 18404 1 0.03 -1 -1 30412 -1 -1 19 29 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65460 29 32 308 248 1 182 80 17 17 289 -1 unnamed_device 24.2 MiB 0.33 873 14700 6300 7739 661 63.9 MiB 0.13 0.00 4.12218 -119.396 -4.12218 4.12218 0.33 0.000647949 0.000602228 0.0560089 0.0519839 -1 -1 -1 -1 38 2737 28 6.99608e+06 279598 678818. 2348.85 1.43 0.186915 0.163373 26626 170182 -1 2014 20 1588 2490 190974 42018 4.12062 4.12062 -126.816 -4.12062 0 0 902133. 3121.57 0.03 0.07 0.14 -1 -1 0.03 0.0253766 0.0221497 79 31 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_005.v common 5.24 vpr 63.41 MiB -1 -1 0.24 18248 1 0.03 -1 -1 30408 -1 -1 18 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64936 32 32 336 268 1 193 82 17 17 289 -1 unnamed_device 24.1 MiB 0.37 974 11296 3601 5275 2420 63.4 MiB 0.11 0.00 4.66527 -143.319 -4.66527 4.66527 0.33 0.000685417 0.000635451 0.0462115 0.0428807 -1 -1 -1 -1 38 3307 46 6.99608e+06 264882 678818. 2348.85 2.75 0.217014 0.188957 26626 170182 -1 2578 23 1862 3131 265507 58674 4.40565 4.40565 -149.749 -4.40565 0 0 902133. 3121.57 0.03 0.10 0.14 -1 -1 0.03 0.031149 0.0271694 87 34 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_006.v common 3.99 vpr 64.12 MiB -1 -1 0.25 18460 1 0.03 -1 -1 30224 -1 -1 29 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65656 32 32 366 295 1 222 93 17 17 289 -1 unnamed_device 24.5 MiB 0.32 1342 16473 4812 9759 1902 64.1 MiB 0.15 0.00 3.42564 -126.443 -3.42564 3.42564 0.35 0.000716456 0.000665914 0.0591357 0.0548933 -1 -1 -1 -1 40 3104 25 6.99608e+06 426755 706193. 2443.58 1.63 0.212083 0.185829 26914 176310 -1 2647 19 1530 2514 186139 40120 3.46136 3.46136 -130.187 -3.46136 0 0 926341. 3205.33 0.03 0.04 0.10 -1 -1 0.03 0.0156043 0.0139329 103 58 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_007.v common 3.44 vpr 63.46 MiB -1 -1 0.23 18216 1 0.03 -1 -1 30532 -1 -1 18 27 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64980 27 32 259 221 1 152 77 17 17 289 -1 unnamed_device 23.8 MiB 0.34 572 10835 3549 5392 1894 63.5 MiB 0.09 0.00 3.41253 -95.9445 -3.41253 3.41253 0.33 0.000550141 0.000512325 0.038635 0.0359856 -1 -1 -1 -1 40 1445 25 6.99608e+06 264882 706193. 2443.58 1.11 0.149802 0.130204 26914 176310 -1 1146 23 1101 1637 114171 28235 3.23432 3.23432 -101.208 -3.23432 0 0 926341. 3205.33 0.04 0.06 0.14 -1 -1 0.04 0.0246258 0.0213493 65 34 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_008.v common 3.99 vpr 63.69 MiB -1 -1 0.22 17916 1 0.03 -1 -1 30120 -1 -1 27 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65220 31 32 271 219 1 157 90 17 17 289 -1 unnamed_device 24.4 MiB 0.17 727 10140 3383 5019 1738 63.7 MiB 0.08 0.00 2.73675 -88.7663 -2.73675 2.73675 0.33 0.000595211 0.00055369 0.0323175 0.030008 -1 -1 -1 -1 38 2221 27 6.99608e+06 397324 678818. 2348.85 1.89 0.157817 0.136976 26626 170182 -1 1662 18 1028 1750 116894 29647 3.01977 3.01977 -98.9875 -3.01977 0 0 902133. 3121.57 0.03 0.06 0.14 -1 -1 0.03 0.0219675 0.0191938 69 4 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_009.v common 4.50 vpr 63.79 MiB -1 -1 0.25 18444 1 0.03 -1 -1 30152 -1 -1 18 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65320 31 32 317 271 1 204 81 17 17 289 -1 unnamed_device 24.0 MiB 0.38 980 13556 5192 6525 1839 63.8 MiB 0.12 0.00 3.3916 -120.616 -3.3916 3.3916 0.33 0.000632362 0.000586806 0.0511023 0.0474599 -1 -1 -1 -1 38 2792 32 6.99608e+06 264882 678818. 2348.85 2.00 0.190909 0.166449 26626 170182 -1 2222 24 1808 2475 223551 47617 3.61137 3.61137 -124.418 -3.61137 0 0 902133. 3121.57 0.03 0.09 0.14 -1 -1 0.03 0.0291509 0.0253137 82 64 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_010.v common 4.02 vpr 63.21 MiB -1 -1 0.14 18020 1 0.03 -1 -1 30060 -1 -1 15 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64724 32 32 298 248 1 181 79 17 17 289 -1 unnamed_device 24.0 MiB 0.35 791 13599 5290 6552 1757 63.2 MiB 0.12 0.00 3.40563 -118.497 -3.40563 3.40563 0.33 0.000631423 0.000586605 0.0525301 0.0488504 -1 -1 -1 -1 38 2358 28 6.99608e+06 220735 678818. 2348.85 1.35 0.181427 0.158527 26626 170182 -1 1943 22 1721 2266 184337 41414 3.38457 3.38457 -127.893 -3.38457 0 0 902133. 3121.57 0.03 0.08 0.15 -1 -1 0.03 0.026705 0.0232242 71 34 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_011.v common 3.91 vpr 63.83 MiB -1 -1 0.14 18384 1 0.02 -1 -1 30348 -1 -1 17 30 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65360 30 32 303 262 1 186 79 17 17 289 -1 unnamed_device 24.1 MiB 0.38 935 10726 3410 5769 1547 63.8 MiB 0.10 0.00 3.65413 -119.69 -3.65413 3.65413 0.33 0.000622403 0.000578327 0.0415182 0.0386047 -1 -1 -1 -1 34 2674 29 6.99608e+06 250167 618332. 2139.56 1.60 0.175355 0.152551 25762 151098 -1 2150 21 1592 2149 189331 41893 3.82601 3.82601 -132.963 -3.82601 0 0 787024. 2723.27 0.03 0.08 0.12 -1 -1 0.03 0.0260789 0.0227041 79 63 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_012.v common 3.33 vpr 63.57 MiB -1 -1 0.22 18000 1 0.03 -1 -1 30076 -1 -1 14 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65092 32 32 276 237 1 165 78 17 17 289 -1 unnamed_device 23.9 MiB 0.38 879 10204 2698 5461 2045 63.6 MiB 0.09 0.00 3.35769 -110.064 -3.35769 3.35769 0.33 0.000592848 0.000552053 0.0387 0.0360475 -1 -1 -1 -1 38 2132 28 6.99608e+06 206020 678818. 2348.85 0.97 0.160199 0.139218 26626 170182 -1 1867 22 1244 1659 127512 28292 2.95567 2.95567 -112.42 -2.95567 0 0 902133. 3121.57 0.03 0.06 0.14 -1 -1 0.03 0.0255903 0.0222615 65 34 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_013.v common 11.21 vpr 64.02 MiB -1 -1 0.23 18352 1 0.03 -1 -1 30428 -1 -1 18 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65556 32 32 344 272 1 201 82 17 17 289 -1 unnamed_device 24.4 MiB 0.42 989 13788 5751 7551 486 64.0 MiB 0.13 0.00 3.85182 -127.119 -3.85182 3.85182 0.33 0.000695996 0.000645706 0.056467 0.0525052 -1 -1 -1 -1 40 2714 27 6.99608e+06 264882 706193. 2443.58 8.55 0.342056 0.295528 26914 176310 -1 2180 20 1618 2438 198461 44961 3.37586 3.37586 -121.862 -3.37586 0 0 926341. 3205.33 0.04 0.08 0.14 -1 -1 0.04 0.0280737 0.0245708 85 34 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_014.v common 4.89 vpr 63.34 MiB -1 -1 0.23 18476 1 0.03 -1 -1 30296 -1 -1 21 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64860 32 32 363 295 1 228 85 17 17 289 -1 unnamed_device 24.3 MiB 0.49 1022 13849 4401 6534 2914 63.3 MiB 0.13 0.00 4.71142 -142.574 -4.71142 4.71142 0.33 0.000718045 0.000667024 0.055694 0.0517253 -1 -1 -1 -1 40 2905 40 6.99608e+06 309029 706193. 2443.58 2.20 0.220494 0.1923 26914 176310 -1 2198 24 2060 2757 218462 49147 4.43045 4.43045 -143.749 -4.43045 0 0 926341. 3205.33 0.04 0.09 0.14 -1 -1 0.04 0.0331857 0.0289058 96 61 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_015.v common 4.19 vpr 63.45 MiB -1 -1 0.23 17984 1 0.03 -1 -1 30396 -1 -1 17 29 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64968 29 32 248 215 1 150 78 17 17 289 -1 unnamed_device 23.9 MiB 0.42 613 11200 4101 5181 1918 63.4 MiB 0.09 0.00 2.92815 -88.5216 -2.92815 2.92815 0.34 0.000549588 0.000511976 0.0389092 0.0361929 -1 -1 -1 -1 38 1745 32 6.99608e+06 250167 678818. 2348.85 1.77 0.160974 0.139927 26626 170182 -1 1239 23 1132 1588 99170 25540 2.83237 2.83237 -92.7805 -2.83237 0 0 902133. 3121.57 0.04 0.06 0.14 -1 -1 0.04 0.0243656 0.0211516 62 27 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_016.v common 3.79 vpr 64.04 MiB -1 -1 0.24 18272 1 0.03 -1 -1 30268 -1 -1 20 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65572 32 32 370 297 1 219 84 17 17 289 -1 unnamed_device 24.4 MiB 0.50 1242 14541 4389 8683 1469 64.0 MiB 0.14 0.00 3.57294 -129.308 -3.57294 3.57294 0.27 0.000733224 0.000681738 0.0602396 0.0559376 -1 -1 -1 -1 40 2860 26 6.99608e+06 294314 706193. 2443.58 1.36 0.210573 0.184642 26914 176310 -1 2462 21 1831 2892 205808 44637 3.50651 3.50651 -133.552 -3.50651 0 0 926341. 3205.33 0.03 0.05 0.10 -1 -1 0.03 0.0168444 0.0149738 100 58 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_017.v common 5.47 vpr 63.98 MiB -1 -1 0.23 18364 1 0.03 -1 -1 30156 -1 -1 17 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65512 32 32 338 269 1 198 81 17 17 289 -1 unnamed_device 24.1 MiB 0.40 926 14081 5763 7497 821 64.0 MiB 0.13 0.00 3.75386 -119.649 -3.75386 3.75386 0.33 0.000690369 0.0006419 0.059008 0.054879 -1 -1 -1 -1 36 3041 49 6.99608e+06 250167 648988. 2245.63 2.88 0.225835 0.197604 26050 158493 -1 2243 23 1812 2521 243152 58206 3.46452 3.46452 -130.035 -3.46452 0 0 828058. 2865.25 0.03 0.10 0.13 -1 -1 0.03 0.0316333 0.0276185 83 34 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_018.v common 4.62 vpr 64.19 MiB -1 -1 0.24 18548 1 0.03 -1 -1 30416 -1 -1 17 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65728 32 32 323 276 1 210 81 17 17 289 -1 unnamed_device 24.7 MiB 0.42 1112 13206 4762 6252 2192 64.2 MiB 0.12 0.00 2.94164 -116.816 -2.94164 2.94164 0.33 0.000653202 0.000607503 0.0515789 0.0479923 -1 -1 -1 -1 38 2627 37 6.99608e+06 250167 678818. 2348.85 2.14 0.19862 0.173499 26626 170182 -1 2110 21 1395 1843 145157 31738 2.96141 2.96141 -120.522 -2.96141 0 0 902133. 3121.57 0.04 0.07 0.15 -1 -1 0.04 0.0270508 0.0236021 83 65 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_019.v common 4.12 vpr 63.28 MiB -1 -1 0.22 18208 1 0.02 -1 -1 30056 -1 -1 14 30 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64796 30 32 222 206 1 135 76 17 17 289 -1 unnamed_device 24.1 MiB 0.27 523 9676 3992 5183 501 63.3 MiB 0.07 0.00 2.34646 -82.0889 -2.34646 2.34646 0.34 0.00050063 0.000465322 0.0318784 0.0296693 -1 -1 -1 -1 36 1749 35 6.99608e+06 206020 648988. 2245.63 1.91 0.147384 0.12768 26050 158493 -1 1244 21 792 906 75118 21380 2.47933 2.47933 -90.621 -2.47933 0 0 828058. 2865.25 0.03 0.05 0.13 -1 -1 0.03 0.0204598 0.0177728 52 34 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_020.v common 3.76 vpr 63.25 MiB -1 -1 0.24 18252 1 0.03 -1 -1 30452 -1 -1 15 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64764 31 32 291 243 1 171 78 17 17 289 -1 unnamed_device 24.2 MiB 0.98 897 12528 3726 7288 1514 63.2 MiB 0.11 0.00 4.11552 -130.454 -4.11552 4.11552 0.33 0.000616494 0.000573287 0.048554 0.0451729 -1 -1 -1 -1 32 2509 44 6.99608e+06 220735 586450. 2029.24 0.84 0.142572 0.125226 25474 144626 -1 2068 22 1422 2111 160196 36435 3.85891 3.85891 -139.014 -3.85891 0 0 744469. 2576.02 0.03 0.05 0.08 -1 -1 0.03 0.014895 0.0131639 71 34 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_021.v common 4.17 vpr 63.96 MiB -1 -1 0.24 18464 1 0.03 -1 -1 30456 -1 -1 28 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65496 32 32 342 271 1 200 92 17 17 289 -1 unnamed_device 24.4 MiB 0.31 992 14375 4962 7095 2318 64.0 MiB 0.13 0.00 4.16563 -140.946 -4.16563 4.16563 0.33 0.000690745 0.000640914 0.0506457 0.0470527 -1 -1 -1 -1 38 2851 50 6.99608e+06 412039 678818. 2348.85 1.74 0.218193 0.189998 26626 170182 -1 2021 22 1674 2526 169922 39831 4.27516 4.27516 -146.522 -4.27516 0 0 902133. 3121.57 0.03 0.08 0.14 -1 -1 0.03 0.0297856 0.0259863 92 34 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_022.v common 4.94 vpr 64.02 MiB -1 -1 0.15 18424 1 0.04 -1 -1 30296 -1 -1 20 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65552 32 32 372 300 1 225 84 17 17 289 -1 unnamed_device 24.3 MiB 0.42 1287 11430 3124 6919 1387 64.0 MiB 0.12 0.00 4.28762 -137.056 -4.28762 4.28762 0.34 0.000725791 0.000674218 0.0481271 0.0447389 -1 -1 -1 -1 36 3638 47 6.99608e+06 294314 648988. 2245.63 2.54 0.226737 0.197277 26050 158493 -1 2909 22 2179 3181 270199 57321 4.16172 4.16172 -146.771 -4.16172 0 0 828058. 2865.25 0.03 0.10 0.13 -1 -1 0.03 0.0312828 0.0273115 97 62 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_023.v common 2.73 vpr 63.21 MiB -1 -1 0.19 18128 1 0.03 -1 -1 30684 -1 -1 16 26 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64728 26 32 190 182 1 123 74 17 17 289 -1 unnamed_device 23.7 MiB 0.24 509 11389 4872 5794 723 63.2 MiB 0.08 0.00 2.5304 -71.4335 -2.5304 2.5304 0.36 0.000430528 0.000399577 0.0334196 0.0310487 -1 -1 -1 -1 32 1512 40 6.99608e+06 235451 586450. 2029.24 0.67 0.0982233 0.0860666 25474 144626 -1 1053 19 675 830 60421 15815 2.32772 2.32772 -75.6559 -2.32772 0 0 744469. 2576.02 0.03 0.04 0.12 -1 -1 0.03 0.0167778 0.014619 51 30 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_024.v common 10.38 vpr 63.32 MiB -1 -1 0.13 17988 1 0.03 -1 -1 30404 -1 -1 17 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64844 32 32 285 227 1 160 81 17 17 289 -1 unnamed_device 24.0 MiB 0.46 809 9531 2907 4788 1836 63.3 MiB 0.08 0.00 4.23145 -111.771 -4.23145 4.23145 0.34 0.000616405 0.000573415 0.0358425 0.0333522 -1 -1 -1 -1 42 2262 42 6.99608e+06 250167 744469. 2576.02 7.98 0.31279 0.269362 27202 183097 -1 1628 23 1395 2382 183546 47317 3.75671 3.75671 -123.108 -3.75671 0 0 949917. 3286.91 0.04 0.08 0.14 -1 -1 0.04 0.0277763 0.0241395 66 3 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_025.v common 2.85 vpr 62.96 MiB -1 -1 0.21 17552 1 0.02 -1 -1 30000 -1 -1 10 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64468 32 32 173 169 1 111 74 17 17 289 -1 unnamed_device 23.6 MiB 0.11 432 8289 2731 4140 1418 63.0 MiB 0.06 0.00 2.03911 -66.1576 -2.03911 2.03911 0.34 0.00043102 0.000399846 0.0244169 0.0226669 -1 -1 -1 -1 34 1237 26 6.99608e+06 147157 618332. 2139.56 0.86 0.114623 0.0995893 25762 151098 -1 1004 18 606 753 61569 17014 1.93402 1.93402 -73.9607 -1.93402 0 0 787024. 2723.27 0.03 0.04 0.12 -1 -1 0.03 0.0159198 0.0139087 43 3 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_026.v common 3.90 vpr 63.24 MiB -1 -1 0.14 17968 1 0.03 -1 -1 30148 -1 -1 16 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64760 32 32 300 245 1 176 80 17 17 289 -1 unnamed_device 24.2 MiB 0.69 1040 11776 3463 7022 1291 63.2 MiB 0.11 0.00 4.52671 -129.577 -4.52671 4.52671 0.34 0.00063926 0.000594434 0.0462105 0.0429576 -1 -1 -1 -1 34 2581 35 6.99608e+06 235451 618332. 2139.56 1.32 0.187537 0.163395 25762 151098 -1 2179 22 1190 1798 129709 28859 4.32592 4.32592 -137.927 -4.32592 0 0 787024. 2723.27 0.03 0.07 0.12 -1 -1 0.03 0.0275799 0.0240818 73 24 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_027.v common 3.77 vpr 63.11 MiB -1 -1 0.23 17892 1 0.03 -1 -1 30408 -1 -1 27 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64620 32 32 297 233 1 170 91 17 17 289 -1 unnamed_device 24.0 MiB 0.17 933 10087 2140 7381 566 63.1 MiB 0.09 0.00 2.84195 -100.69 -2.84195 2.84195 0.34 0.000645685 0.000599204 0.0341485 0.0317824 -1 -1 -1 -1 36 2408 26 6.99608e+06 397324 648988. 2245.63 1.49 0.170187 0.148059 26050 158493 -1 1956 25 1433 2511 172697 38909 3.03892 3.03892 -108.258 -3.03892 0 0 828058. 2865.25 0.03 0.08 0.13 -1 -1 0.03 0.0302885 0.0263341 77 3 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_028.v common 4.63 vpr 63.82 MiB -1 -1 0.23 18284 1 0.03 -1 -1 30280 -1 -1 19 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65356 32 32 338 277 1 204 83 17 17 289 -1 unnamed_device 24.3 MiB 0.52 923 8003 1947 5085 971 63.8 MiB 0.09 0.00 4.17173 -123.211 -4.17173 4.17173 0.36 0.000695055 0.000646514 0.0331131 0.0308269 -1 -1 -1 -1 46 2562 33 6.99608e+06 279598 828058. 2865.25 1.99 0.189042 0.16453 28066 200906 -1 1783 21 1525 2326 154442 36408 3.79266 3.79266 -121.653 -3.79266 0 0 1.01997e+06 3529.29 0.04 0.07 0.16 -1 -1 0.04 0.0283844 0.0247975 86 50 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_029.v common 3.94 vpr 63.37 MiB -1 -1 0.23 18112 1 0.03 -1 -1 30208 -1 -1 14 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64892 32 32 284 241 1 168 78 17 17 289 -1 unnamed_device 24.1 MiB 0.70 870 11200 3386 5818 1996 63.4 MiB 0.10 0.00 3.16334 -110.479 -3.16334 3.16334 0.35 0.000610997 0.00056735 0.043289 0.0402908 -1 -1 -1 -1 34 2372 25 6.99608e+06 206020 618332. 2139.56 1.18 0.16887 0.147246 25762 151098 -1 1876 20 1333 1908 143533 32529 3.00782 3.00782 -119.005 -3.00782 0 0 787024. 2723.27 0.03 0.07 0.12 -1 -1 0.03 0.0242376 0.0211286 68 34 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_030.v common 3.73 vpr 63.51 MiB -1 -1 0.23 18100 1 0.03 -1 -1 30148 -1 -1 16 30 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65036 30 32 262 227 1 160 78 17 17 289 -1 unnamed_device 23.9 MiB 0.25 863 7216 1781 5114 321 63.5 MiB 0.07 0.00 3.77123 -111.817 -3.77123 3.77123 0.33 0.000564297 0.000525618 0.0265931 0.0247595 -1 -1 -1 -1 34 2210 47 6.99608e+06 235451 618332. 2139.56 1.44 0.1607 0.138405 25762 151098 -1 1918 20 1240 1920 164311 36185 3.63166 3.63166 -117.226 -3.63166 0 0 787024. 2723.27 0.03 0.07 0.12 -1 -1 0.03 0.0228113 0.0198785 65 34 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_031.v common 4.12 vpr 63.31 MiB -1 -1 0.24 18092 1 0.03 -1 -1 30088 -1 -1 20 28 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64832 28 32 260 223 1 152 80 17 17 289 -1 unnamed_device 23.7 MiB 0.28 611 12808 5071 5723 2014 63.3 MiB 0.10 0.00 3.4808 -106.362 -3.4808 3.4808 0.33 0.00055397 0.000515379 0.0431477 0.0400832 -1 -1 -1 -1 42 2077 35 6.99608e+06 294314 744469. 2576.02 1.76 0.166583 0.14464 27202 183097 -1 1523 23 1079 1820 147840 36523 3.50036 3.50036 -112.715 -3.50036 0 0 949917. 3286.91 0.04 0.07 0.17 -1 -1 0.04 0.025129 0.0218287 71 34 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_032.v common 3.51 vpr 63.40 MiB -1 -1 0.22 17868 1 0.03 -1 -1 30284 -1 -1 13 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64924 32 32 253 210 1 149 77 17 17 289 -1 unnamed_device 23.9 MiB 0.21 869 10835 2990 6954 891 63.4 MiB 0.09 0.00 3.30043 -111.689 -3.30043 3.30043 0.33 0.000571124 0.000531379 0.0397191 0.036997 -1 -1 -1 -1 38 1933 22 6.99608e+06 191304 678818. 2348.85 1.28 0.154408 0.134664 26626 170182 -1 1681 20 1206 1902 143421 30990 3.03062 3.03062 -114.764 -3.03062 0 0 902133. 3121.57 0.03 0.06 0.14 -1 -1 0.03 0.0227464 0.0198249 59 3 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_033.v common 3.57 vpr 63.41 MiB -1 -1 0.14 18096 1 0.03 -1 -1 30152 -1 -1 15 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64932 31 32 271 231 1 164 78 17 17 289 -1 unnamed_device 23.8 MiB 0.32 848 11200 4155 5330 1715 63.4 MiB 0.10 0.00 3.30638 -108.083 -3.30638 3.30638 0.33 0.000594049 0.000553686 0.041933 0.0390598 -1 -1 -1 -1 36 2468 47 6.99608e+06 220735 648988. 2245.63 1.38 0.18323 0.159726 26050 158493 -1 1921 22 1298 1864 154372 34321 3.07012 3.07012 -110.48 -3.07012 0 0 828058. 2865.25 0.06 0.08 0.11 -1 -1 0.06 0.0273368 0.02388 65 30 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_034.v common 3.43 vpr 63.68 MiB -1 -1 0.24 18268 1 0.03 -1 -1 30436 -1 -1 19 29 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65208 29 32 291 250 1 177 80 17 17 289 -1 unnamed_device 24.1 MiB 0.41 894 13840 5313 6055 2472 63.7 MiB 0.11 0.00 2.84515 -98.5413 -2.84515 2.84515 0.33 0.000596794 0.000555651 0.0503236 0.0468031 -1 -1 -1 -1 32 2473 34 6.99608e+06 279598 586450. 2029.24 1.01 0.134807 0.118765 25474 144626 -1 2001 19 1322 1717 133560 29772 2.71322 2.71322 -107.002 -2.71322 0 0 744469. 2576.02 0.03 0.08 0.12 -1 -1 0.03 0.0306834 0.0265408 77 54 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_035.v common 4.30 vpr 64.22 MiB -1 -1 0.13 18472 1 0.03 -1 -1 30424 -1 -1 22 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65764 32 32 367 282 1 214 86 17 17 289 -1 unnamed_device 24.6 MiB 0.33 1071 15773 6281 8017 1475 64.2 MiB 0.15 0.00 4.08568 -124.656 -4.08568 4.08568 0.33 0.000745003 0.000692275 0.0644112 0.0598632 -1 -1 -1 -1 40 2932 31 6.99608e+06 323745 706193. 2443.58 1.79 0.223533 0.196102 26914 176310 -1 2492 23 1688 2754 246406 62644 4.27126 4.27126 -132.221 -4.27126 0 0 926341. 3205.33 0.04 0.10 0.15 -1 -1 0.04 0.0337608 0.0294516 92 29 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_036.v common 4.71 vpr 64.26 MiB -1 -1 0.25 18340 1 0.03 -1 -1 30260 -1 -1 21 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65800 32 32 391 311 1 244 85 17 17 289 -1 unnamed_device 24.5 MiB 0.41 1110 13849 4791 7007 2051 64.3 MiB 0.14 0.00 4.30433 -144.01 -4.30433 4.30433 0.34 0.000749159 0.000695693 0.0590716 0.054864 -1 -1 -1 -1 40 3043 33 6.99608e+06 309029 706193. 2443.58 2.13 0.230733 0.202031 26914 176310 -1 2502 20 2154 3026 234054 53537 3.76996 3.76996 -142.895 -3.76996 0 0 926341. 3205.33 0.04 0.09 0.14 -1 -1 0.04 0.0311704 0.0273359 103 65 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_037.v common 4.01 vpr 63.41 MiB -1 -1 0.23 18424 1 0.03 -1 -1 30164 -1 -1 15 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64932 31 32 279 237 1 161 78 17 17 289 -1 unnamed_device 24.1 MiB 0.41 816 7714 1803 5626 285 63.4 MiB 0.08 0.00 3.38643 -107.402 -3.38643 3.38643 0.34 0.00059751 0.000556045 0.0297047 0.027674 -1 -1 -1 -1 36 2399 24 6.99608e+06 220735 648988. 2245.63 1.52 0.154298 0.134299 26050 158493 -1 1949 20 1425 2105 168608 36848 3.45772 3.45772 -117.518 -3.45772 0 0 828058. 2865.25 0.03 0.07 0.14 -1 -1 0.03 0.0236433 0.0205908 68 34 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_038.v common 3.80 vpr 64.02 MiB -1 -1 0.26 18484 1 0.03 -1 -1 30408 -1 -1 23 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65556 31 32 370 297 1 227 86 17 17 289 -1 unnamed_device 24.4 MiB 0.43 1217 14072 4085 8314 1673 64.0 MiB 0.07 0.00 3.60415 -128.157 -3.60415 3.60415 0.25 0.000323073 0.000297377 0.0260474 0.0240278 -1 -1 -1 -1 40 2752 44 6.99608e+06 338461 706193. 2443.58 1.49 0.192261 0.16592 26914 176310 -1 2485 21 1636 2359 186290 40291 3.67861 3.67861 -135.017 -3.67861 0 0 926341. 3205.33 0.04 0.08 0.14 -1 -1 0.04 0.0300731 0.0262642 99 61 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_039.v common 4.59 vpr 63.48 MiB -1 -1 0.28 18352 1 0.03 -1 -1 30284 -1 -1 22 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65008 31 32 377 302 1 235 85 17 17 289 -1 unnamed_device 24.4 MiB 0.41 1068 13477 4250 6738 2489 63.5 MiB 0.13 0.00 5.0573 -155.975 -5.0573 5.0573 0.34 0.000729662 0.00067718 0.05596 0.0519799 -1 -1 -1 -1 44 3434 30 6.99608e+06 323745 787024. 2723.27 1.88 0.217815 0.190647 27778 195446 -1 2342 22 2248 3257 257495 59088 4.44155 4.44155 -147.944 -4.44155 0 0 997811. 3452.63 0.04 0.10 0.16 -1 -1 0.04 0.0325929 0.028472 101 64 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_040.v common 5.16 vpr 63.97 MiB -1 -1 0.27 18352 1 0.03 -1 -1 30332 -1 -1 20 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65508 31 32 383 305 1 232 83 17 17 289 -1 unnamed_device 24.3 MiB 0.68 1147 15383 6496 8511 376 64.0 MiB 0.15 0.00 5.06492 -163.184 -5.06492 5.06492 0.34 0.000750941 0.00069742 0.0662737 0.0615342 -1 -1 -1 -1 38 3176 46 6.99608e+06 294314 678818. 2348.85 2.10 0.234457 0.205663 26626 170182 -1 2479 22 2023 2979 230019 52138 4.85294 4.85294 -167.178 -4.85294 0 0 902133. 3121.57 0.03 0.09 0.14 -1 -1 0.03 0.0317897 0.0277524 104 64 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_041.v common 5.16 vpr 63.35 MiB -1 -1 0.26 18544 1 0.03 -1 -1 30352 -1 -1 19 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64872 31 32 352 285 1 214 82 17 17 289 -1 unnamed_device 24.3 MiB 0.38 1019 13610 5670 7530 410 63.4 MiB 0.13 0.00 3.37263 -112.521 -3.37263 3.37263 0.33 0.000705211 0.00065402 0.0561183 0.0521268 -1 -1 -1 -1 40 2810 35 6.99608e+06 279598 706193. 2443.58 2.61 0.225775 0.198166 26914 176310 -1 2288 22 1962 2725 235118 52624 3.50752 3.50752 -126.46 -3.50752 0 0 926341. 3205.33 0.04 0.09 0.14 -1 -1 0.04 0.0300899 0.0262347 91 55 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_042.v common 3.75 vpr 63.11 MiB -1 -1 0.24 18480 1 0.03 -1 -1 30348 -1 -1 17 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64628 32 32 291 242 1 173 81 17 17 289 -1 unnamed_device 24.1 MiB 0.39 1063 7256 2132 4080 1044 63.1 MiB 0.08 0.00 4.01418 -117.661 -4.01418 4.01418 0.33 0.000615368 0.000571439 0.031284 0.029072 -1 -1 -1 -1 34 2805 40 6.99608e+06 250167 618332. 2139.56 1.31 0.168774 0.145981 25762 151098 -1 2314 22 1392 2043 192281 48457 4.13976 4.13976 -128.557 -4.13976 0 0 787024. 2723.27 0.03 0.08 0.15 -1 -1 0.03 0.0274083 0.0239438 72 27 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_043.v common 4.73 vpr 64.33 MiB -1 -1 0.27 18520 1 0.03 -1 -1 30504 -1 -1 26 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65876 32 32 457 356 1 282 90 17 17 289 -1 unnamed_device 24.8 MiB 0.51 1480 11145 2631 7279 1235 64.3 MiB 0.13 0.00 5.0159 -170.173 -5.0159 5.0159 0.33 0.000862738 0.000802054 0.0510521 0.0474476 -1 -1 -1 -1 46 3742 37 6.99608e+06 382608 828058. 2865.25 1.93 0.245099 0.213158 28066 200906 -1 3081 23 2774 4134 293134 61214 4.29144 4.29144 -159.169 -4.29144 0 0 1.01997e+06 3529.29 0.06 0.11 0.14 -1 -1 0.06 0.0395931 0.0345543 126 87 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_044.v common 3.60 vpr 63.38 MiB -1 -1 0.23 18032 1 0.03 -1 -1 30092 -1 -1 15 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64896 31 32 261 225 1 158 78 17 17 289 -1 unnamed_device 23.7 MiB 0.37 913 8046 2371 4873 802 63.4 MiB 0.07 0.00 3.0313 -102.713 -3.0313 3.0313 0.34 0.000560911 0.000521198 0.0291595 0.0271199 -1 -1 -1 -1 34 2034 47 6.99608e+06 220735 618332. 2139.56 1.25 0.166743 0.144029 25762 151098 -1 1725 21 1339 1771 114329 27257 2.96167 2.96167 -110.352 -2.96167 0 0 787024. 2723.27 0.03 0.06 0.12 -1 -1 0.03 0.0237628 0.020676 66 28 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_045.v common 3.74 vpr 63.96 MiB -1 -1 0.17 18356 1 0.03 -1 -1 30172 -1 -1 18 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65492 31 32 337 267 1 199 81 17 17 289 -1 unnamed_device 24.2 MiB 0.41 965 12331 4873 6758 700 64.0 MiB 0.12 0.00 4.27184 -130.101 -4.27184 4.27184 0.33 0.000684963 0.00063708 0.0508616 0.0473272 -1 -1 -1 -1 44 2769 21 6.99608e+06 264882 787024. 2723.27 1.23 0.18346 0.160438 27778 195446 -1 2086 21 1546 2291 176530 41094 4.1282 4.1282 -129.587 -4.1282 0 0 997811. 3452.63 0.04 0.08 0.16 -1 -1 0.04 0.0283282 0.0247052 82 34 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_046.v common 10.46 vpr 63.48 MiB -1 -1 0.25 18436 1 0.03 -1 -1 30352 -1 -1 20 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65000 32 32 349 284 1 213 84 17 17 289 -1 unnamed_device 24.4 MiB 0.48 1191 13992 4155 8133 1704 63.5 MiB 0.14 0.00 3.66629 -124.824 -3.66629 3.66629 0.34 0.000694801 0.000645353 0.0559562 0.0519669 -1 -1 -1 -1 40 2666 46 6.99608e+06 294314 706193. 2443.58 7.95 0.326708 0.282384 26914 176310 -1 2317 21 1526 2374 185764 40833 3.41206 3.41206 -127.799 -3.41206 0 0 926341. 3205.33 0.04 0.08 0.15 -1 -1 0.04 0.0297077 0.0259433 90 53 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_047.v common 3.79 vpr 63.47 MiB -1 -1 0.19 17892 1 0.03 -1 -1 30060 -1 -1 19 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64992 32 32 291 230 1 160 83 17 17 289 -1 unnamed_device 24.1 MiB 0.31 700 7283 1615 4577 1091 63.5 MiB 0.07 0.00 4.03897 -114.043 -4.03897 4.03897 0.34 0.000630899 0.000586539 0.0276936 0.0257832 -1 -1 -1 -1 48 1663 24 6.99608e+06 279598 865456. 2994.66 1.56 0.159208 0.138223 28354 207349 -1 1354 20 1080 2022 131033 32760 3.51922 3.51922 -112.458 -3.51922 0 0 1.05005e+06 3633.38 0.04 0.06 0.16 -1 -1 0.04 0.0250322 0.0218621 70 3 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_048.v common 4.04 vpr 63.96 MiB -1 -1 0.26 18260 1 0.04 -1 -1 30252 -1 -1 18 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65492 32 32 353 287 1 209 82 17 17 289 -1 unnamed_device 24.4 MiB 0.46 1220 8092 1924 5321 847 64.0 MiB 0.09 0.00 3.85238 -122.663 -3.85238 3.85238 0.34 0.000716879 0.000666652 0.0349023 0.0324524 -1 -1 -1 -1 36 2897 23 6.99608e+06 264882 648988. 2245.63 1.53 0.182246 0.158709 26050 158493 -1 2508 21 1547 2144 170292 36759 3.35806 3.35806 -125.954 -3.35806 0 0 828058. 2865.25 0.03 0.08 0.13 -1 -1 0.03 0.0295558 0.0258317 90 55 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_049.v common 4.34 vpr 63.87 MiB -1 -1 0.25 18368 1 0.03 -1 -1 30260 -1 -1 22 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65400 32 32 361 291 1 214 86 17 17 289 -1 unnamed_device 24.3 MiB 0.51 1060 15017 4116 9319 1582 63.9 MiB 0.15 0.00 3.54419 -122.946 -3.54419 3.54419 0.34 0.000718134 0.000666709 0.0599918 0.0557381 -1 -1 -1 -1 40 2643 34 6.99608e+06 323745 706193. 2443.58 1.65 0.219301 0.192347 26914 176310 -1 2295 20 1367 2074 154399 36578 3.38406 3.38406 -125.185 -3.38406 0 0 926341. 3205.33 0.04 0.08 0.14 -1 -1 0.04 0.0292739 0.0256633 94 55 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_050.v common 4.35 vpr 64.04 MiB -1 -1 0.24 18336 1 0.03 -1 -1 30316 -1 -1 21 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65576 32 32 382 305 1 237 85 17 17 289 -1 unnamed_device 24.3 MiB 0.40 1296 11617 3501 6509 1607 64.0 MiB 0.12 0.00 3.40153 -127.821 -3.40153 3.40153 0.34 0.000728795 0.0006756 0.0485384 0.0450247 -1 -1 -1 -1 40 3091 24 6.99608e+06 309029 706193. 2443.58 1.54 0.205526 0.179482 26914 176310 -1 2787 21 2247 3062 244642 51360 3.30147 3.30147 -132.163 -3.30147 0 0 926341. 3205.33 0.04 0.09 0.14 -1 -1 0.04 0.0313581 0.0274175 101 62 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_051.v common 8.78 vpr 63.21 MiB -1 -1 0.24 18544 1 0.03 -1 -1 30308 -1 -1 15 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64724 32 32 306 248 1 175 79 17 17 289 -1 unnamed_device 24.1 MiB 0.56 773 10557 3392 4846 2319 63.2 MiB 0.09 0.00 4.42393 -121.091 -4.42393 4.42393 0.33 0.000644909 0.000599351 0.0425009 0.0395836 -1 -1 -1 -1 44 2280 23 6.99608e+06 220735 787024. 2723.27 6.17 0.309976 0.267925 27778 195446 -1 1659 22 1225 1897 123580 32019 3.93002 3.93002 -121.037 -3.93002 0 0 997811. 3452.63 0.04 0.07 0.15 -1 -1 0.04 0.0277422 0.0242335 73 24 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_052.v common 4.66 vpr 63.98 MiB -1 -1 0.24 18476 1 0.03 -1 -1 30104 -1 -1 16 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65516 32 32 319 257 1 191 80 17 17 289 -1 unnamed_device 24.2 MiB 0.44 991 13496 5705 7457 334 64.0 MiB 0.12 0.00 4.08708 -127 -4.08708 4.08708 0.34 0.000657325 0.000610404 0.0542865 0.0504303 -1 -1 -1 -1 36 3099 50 6.99608e+06 235451 648988. 2245.63 2.10 0.220853 0.192791 26050 158493 -1 2321 22 1827 2483 191245 42998 4.19972 4.19972 -144.247 -4.19972 0 0 828058. 2865.25 0.03 0.08 0.13 -1 -1 0.03 0.0286581 0.025021 79 29 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_053.v common 3.71 vpr 63.61 MiB -1 -1 0.26 18372 1 0.03 -1 -1 30424 -1 -1 22 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65140 31 32 373 299 1 223 85 17 17 289 -1 unnamed_device 24.5 MiB 0.43 1149 13663 5356 6563 1744 63.6 MiB 0.14 0.00 4.32027 -135.237 -4.32027 4.32027 0.36 0.000721821 0.000670744 0.056146 0.0521455 -1 -1 -1 -1 40 3112 25 6.99608e+06 323745 706193. 2443.58 1.16 0.145809 0.129022 26914 176310 -1 2617 22 2047 3207 244307 54446 3.98626 3.98626 -135.777 -3.98626 0 0 926341. 3205.33 0.04 0.09 0.14 -1 -1 0.04 0.0310617 0.0270555 100 62 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_054.v common 4.66 vpr 63.48 MiB -1 -1 0.24 18356 1 0.03 -1 -1 30420 -1 -1 20 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65008 32 32 387 315 1 239 84 17 17 289 -1 unnamed_device 24.4 MiB 0.53 1208 10332 3432 4948 1952 63.5 MiB 0.11 0.00 4.04752 -134.676 -4.04752 4.04752 0.33 0.000750424 0.000697188 0.0448985 0.0417269 -1 -1 -1 -1 40 3452 41 6.99608e+06 294314 706193. 2443.58 1.78 0.214316 0.186475 26914 176310 -1 2865 20 2129 3202 274718 60596 4.10366 4.10366 -143.201 -4.10366 0 0 926341. 3205.33 0.04 0.12 0.18 -1 -1 0.04 0.038728 0.0339315 104 77 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_055.v common 3.16 vpr 63.21 MiB -1 -1 0.17 18024 1 0.03 -1 -1 30400 -1 -1 12 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64724 32 32 251 219 1 151 76 17 17 289 -1 unnamed_device 23.7 MiB 0.22 902 5996 1423 4213 360 63.2 MiB 0.07 0.00 3.24518 -106.32 -3.24518 3.24518 0.34 0.00056176 0.00052322 0.0230302 0.0214129 -1 -1 -1 -1 38 2061 22 6.99608e+06 176588 678818. 2348.85 1.09 0.135173 0.116914 26626 170182 -1 1739 19 995 1488 114516 24820 2.76922 2.76922 -103.921 -2.76922 0 0 902133. 3121.57 0.03 0.06 0.14 -1 -1 0.03 0.0213902 0.0186452 59 23 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_056.v common 4.11 vpr 63.32 MiB -1 -1 0.23 18296 1 0.03 -1 -1 30108 -1 -1 17 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64840 32 32 341 285 1 216 81 17 17 289 -1 unnamed_device 24.1 MiB 0.51 963 12681 4577 6330 1774 63.3 MiB 0.12 0.00 3.65915 -132.458 -3.65915 3.65915 0.35 0.000671298 0.000623569 0.0514028 0.0477746 -1 -1 -1 -1 46 2509 23 6.99608e+06 250167 828058. 2865.25 1.53 0.189082 0.165173 28066 200906 -1 1966 21 1953 2710 199761 47308 3.53811 3.53811 -133.03 -3.53811 0 0 1.01997e+06 3529.29 0.04 0.08 0.16 -1 -1 0.04 0.0279847 0.0243923 88 65 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_057.v common 4.85 vpr 64.02 MiB -1 -1 0.25 18348 1 0.04 -1 -1 30384 -1 -1 19 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65556 32 32 387 293 1 225 83 17 17 289 -1 unnamed_device 24.3 MiB 0.37 1148 11603 4480 6146 977 64.0 MiB 0.13 0.00 4.79322 -149.908 -4.79322 4.79322 0.33 0.000758574 0.000704518 0.0522685 0.0485728 -1 -1 -1 -1 42 3540 28 6.99608e+06 279598 744469. 2576.02 2.27 0.216029 0.189054 27202 183097 -1 2743 21 2207 3425 276549 61256 4.80471 4.80471 -157.319 -4.80471 0 0 949917. 3286.91 0.04 0.10 0.19 -1 -1 0.04 0.0331682 0.0290704 97 31 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_058.v common 4.24 vpr 63.30 MiB -1 -1 0.24 18392 1 0.03 -1 -1 30492 -1 -1 18 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64816 32 32 340 270 1 205 82 17 17 289 -1 unnamed_device 24.3 MiB 0.35 959 15212 4883 8030 2299 63.3 MiB 0.15 0.00 3.80886 -124.279 -3.80886 3.80886 0.34 0.000689357 0.000640814 0.0618176 0.057469 -1 -1 -1 -1 38 2738 49 6.99608e+06 264882 678818. 2348.85 1.81 0.234524 0.205095 26626 170182 -1 2188 21 1840 2570 213781 46622 3.35447 3.35447 -125.706 -3.35447 0 0 902133. 3121.57 0.03 0.08 0.14 -1 -1 0.03 0.0285111 0.0248991 83 34 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_059.v common 3.31 vpr 63.65 MiB -1 -1 0.20 18240 1 0.03 -1 -1 30404 -1 -1 27 30 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65176 30 32 278 235 1 166 89 17 17 289 -1 unnamed_device 24.1 MiB 0.29 972 14741 4712 7893 2136 63.6 MiB 0.12 0.00 3.67929 -123.456 -3.67929 3.67929 0.41 0.000594815 0.000553886 0.0460361 0.0427707 -1 -1 -1 -1 32 2419 31 6.99608e+06 397324 586450. 2029.24 0.86 0.127538 0.112502 25474 144626 -1 2045 19 1193 1881 168266 36051 3.54372 3.54372 -126.432 -3.54372 0 0 744469. 2576.02 0.03 0.07 0.12 -1 -1 0.03 0.0230275 0.0200698 76 34 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_060.v common 4.75 vpr 64.30 MiB -1 -1 0.25 18672 1 0.04 -1 -1 30328 -1 -1 22 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65844 32 32 431 332 1 263 86 17 17 289 -1 unnamed_device 24.6 MiB 0.48 1526 16151 5643 8485 2023 64.3 MiB 0.18 0.00 6.01018 -183.823 -6.01018 6.01018 0.34 0.000834646 0.000776046 0.0744245 0.0691575 -1 -1 -1 -1 44 3842 33 6.99608e+06 323745 787024. 2723.27 1.96 0.259845 0.228062 27778 195446 -1 3214 23 2456 3725 329307 66456 5.50175 5.50175 -179.286 -5.50175 0 0 997811. 3452.63 0.04 0.11 0.18 -1 -1 0.04 0.0375638 0.0326918 114 65 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_061.v common 4.60 vpr 63.37 MiB -1 -1 0.25 18576 1 0.03 -1 -1 30408 -1 -1 17 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64888 32 32 336 268 1 199 81 17 17 289 -1 unnamed_device 24.1 MiB 0.37 976 11806 4256 5575 1975 63.4 MiB 0.11 0.00 4.44561 -135.394 -4.44561 4.44561 0.34 0.000686046 0.000637794 0.0490031 0.0455539 -1 -1 -1 -1 36 3222 47 6.99608e+06 250167 648988. 2245.63 2.17 0.221023 0.192443 26050 158493 -1 2325 23 1895 2684 240211 56066 4.10882 4.10882 -145.355 -4.10882 0 0 828058. 2865.25 0.03 0.09 0.13 -1 -1 0.03 0.0304866 0.0266015 81 34 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_062.v common 3.62 vpr 63.30 MiB -1 -1 0.21 17948 1 0.03 -1 -1 30384 -1 -1 17 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64820 32 32 231 199 1 136 81 17 17 289 -1 unnamed_device 23.8 MiB 0.22 897 10581 3574 5393 1614 63.3 MiB 0.08 0.00 2.9839 -102.098 -2.9839 2.9839 0.33 0.000533664 0.000496588 0.033913 0.0315609 -1 -1 -1 -1 34 2196 34 6.99608e+06 250167 618332. 2139.56 1.38 0.150854 0.130928 25762 151098 -1 1840 26 1193 1996 220254 56639 3.08997 3.08997 -109.305 -3.08997 0 0 787024. 2723.27 0.05 0.10 0.14 -1 -1 0.05 0.0237841 0.0208379 55 3 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_063.v common 5.53 vpr 63.25 MiB -1 -1 0.24 18344 1 0.03 -1 -1 30148 -1 -1 20 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64768 32 32 349 273 1 205 84 17 17 289 -1 unnamed_device 24.0 MiB 0.33 1024 12162 3563 6812 1787 63.2 MiB 0.12 0.00 4.74992 -134.331 -4.74992 4.74992 0.33 0.000709951 0.000659869 0.0494395 0.0459331 -1 -1 -1 -1 38 3208 38 6.99608e+06 294314 678818. 2348.85 3.11 0.226131 0.197464 26626 170182 -1 2108 25 1694 3032 211832 46710 4.84056 4.84056 -141.901 -4.84056 0 0 902133. 3121.57 0.05 0.09 0.14 -1 -1 0.05 0.0353536 0.0309888 86 29 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_064.v common 3.21 vpr 63.20 MiB -1 -1 0.22 17916 1 0.03 -1 -1 30012 -1 -1 16 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64712 32 32 247 207 1 142 80 17 17 289 -1 unnamed_device 23.7 MiB 0.21 866 11088 3348 6282 1458 63.2 MiB 0.09 0.00 2.9481 -106.303 -2.9481 2.9481 0.33 0.000561278 0.000522692 0.037899 0.0352534 -1 -1 -1 -1 34 2006 22 6.99608e+06 235451 618332. 2139.56 1.06 0.14698 0.127919 25762 151098 -1 1703 22 1133 1755 130269 28505 3.02582 3.02582 -112.896 -3.02582 0 0 787024. 2723.27 0.03 0.06 0.12 -1 -1 0.03 0.0243051 0.0211582 58 3 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_065.v common 3.81 vpr 63.04 MiB -1 -1 0.24 18212 1 0.03 -1 -1 30068 -1 -1 17 30 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64556 30 32 278 235 1 168 79 17 17 289 -1 unnamed_device 24.0 MiB 0.30 752 11740 4912 6360 468 63.0 MiB 0.10 0.00 3.41253 -107.457 -3.41253 3.41253 0.33 0.000591753 0.000549123 0.0432288 0.0402037 -1 -1 -1 -1 40 2016 23 6.99608e+06 250167 706193. 2443.58 1.46 0.163563 0.142696 26914 176310 -1 1707 19 1335 1890 159437 36413 3.31247 3.31247 -115.81 -3.31247 0 0 926341. 3205.33 0.04 0.07 0.14 -1 -1 0.04 0.0227099 0.0197852 69 34 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_066.v common 4.29 vpr 63.26 MiB -1 -1 0.27 18404 1 0.03 -1 -1 30436 -1 -1 21 29 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64780 29 32 355 287 1 212 82 17 17 289 -1 unnamed_device 24.3 MiB 0.56 971 10584 4301 5673 610 63.3 MiB 0.10 0.00 3.93693 -124.634 -3.93693 3.93693 0.34 0.000694468 0.000645033 0.0440477 0.0409391 -1 -1 -1 -1 46 2926 29 6.99608e+06 309029 828058. 2865.25 1.65 0.196958 0.17169 28066 200906 -1 2198 20 1624 2445 174733 40570 3.73361 3.73361 -126.872 -3.73361 0 0 1.01997e+06 3529.29 0.04 0.08 0.14 -1 -1 0.04 0.0280321 0.0245139 94 62 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_067.v common 4.50 vpr 63.99 MiB -1 -1 0.26 18504 1 0.03 -1 -1 30380 -1 -1 19 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65524 32 32 358 289 1 214 83 17 17 289 -1 unnamed_device 24.4 MiB 0.51 934 13583 5682 7380 521 64.0 MiB 0.13 0.00 4.65642 -145.362 -4.65642 4.65642 0.34 0.000711378 0.00065856 0.0561417 0.0521374 -1 -1 -1 -1 48 2466 25 6.99608e+06 279598 865456. 2994.66 1.49 0.204858 0.179431 28354 207349 -1 1965 22 1609 2271 160243 41440 4.30171 4.30171 -147.178 -4.30171 0 0 1.05005e+06 3633.38 0.04 0.08 0.15 -1 -1 0.04 0.0306578 0.0267726 93 54 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_068.v common 4.57 vpr 63.30 MiB -1 -1 0.23 18280 1 0.03 -1 -1 30332 -1 -1 18 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64820 32 32 353 285 1 210 82 17 17 289 -1 unnamed_device 24.3 MiB 0.53 1034 11652 4187 4869 2596 63.3 MiB 0.12 0.00 4.57817 -141.46 -4.57817 4.57817 0.34 0.000705394 0.000654779 0.0487977 0.0453192 -1 -1 -1 -1 40 2926 29 6.99608e+06 264882 706193. 2443.58 1.94 0.20213 0.1763 26914 176310 -1 2361 20 1727 2500 217768 50608 4.35045 4.35045 -146.549 -4.35045 0 0 926341. 3205.33 0.04 0.09 0.14 -1 -1 0.04 0.0291737 0.0255574 91 51 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_069.v common 4.39 vpr 63.36 MiB -1 -1 0.23 18088 1 0.03 -1 -1 30020 -1 -1 14 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64884 32 32 276 237 1 160 78 17 17 289 -1 unnamed_device 24.0 MiB 0.43 717 10536 3258 5329 1949 63.4 MiB 0.09 0.00 3.47185 -106.975 -3.47185 3.47185 0.34 0.00059033 0.000549384 0.0396756 0.0369536 -1 -1 -1 -1 38 2367 30 6.99608e+06 206020 678818. 2348.85 2.00 0.170913 0.148689 26626 170182 -1 1594 20 1106 1483 117736 27962 3.19256 3.19256 -109.472 -3.19256 0 0 902133. 3121.57 0.03 0.06 0.14 -1 -1 0.03 0.0238866 0.0208314 65 34 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_070.v common 11.48 vpr 63.86 MiB -1 -1 0.24 18540 1 0.03 -1 -1 30360 -1 -1 17 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65392 31 32 319 272 1 200 80 17 17 289 -1 unnamed_device 24.1 MiB 0.40 910 13840 5352 6981 1507 63.9 MiB 0.13 0.00 3.37953 -113.019 -3.37953 3.37953 0.33 0.000658184 0.000612997 0.0548772 0.0510597 -1 -1 -1 -1 38 3125 45 6.99608e+06 250167 678818. 2348.85 9.00 0.348548 0.301313 26626 170182 -1 2059 24 1660 2220 175646 42481 3.26622 3.26622 -123.045 -3.26622 0 0 902133. 3121.57 0.04 0.08 0.14 -1 -1 0.04 0.0306563 0.0267178 84 64 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_071.v common 4.15 vpr 63.91 MiB -1 -1 0.24 18384 1 0.03 -1 -1 30392 -1 -1 24 30 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65448 30 32 329 273 1 202 86 17 17 289 -1 unnamed_device 24.1 MiB 0.38 1140 8402 1898 5521 983 63.9 MiB 0.09 0.00 3.13779 -108.226 -3.13779 3.13779 0.33 0.000668455 0.000621633 0.0331942 0.0308733 -1 -1 -1 -1 36 2683 34 6.99608e+06 353176 648988. 2245.63 1.81 0.184644 0.160356 26050 158493 -1 2196 22 1529 2204 181565 39630 3.13312 3.13312 -112.78 -3.13312 0 0 828058. 2865.25 0.03 0.05 0.09 -1 -1 0.03 0.0162759 0.0144358 89 57 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_072.v common 4.25 vpr 63.02 MiB -1 -1 0.24 18120 1 0.03 -1 -1 30384 -1 -1 19 28 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64536 28 32 277 229 1 167 79 17 17 289 -1 unnamed_device 24.1 MiB 0.27 719 13599 4733 6314 2552 63.0 MiB 0.11 0.00 3.72515 -101.955 -3.72515 3.72515 0.33 0.000583203 0.000542354 0.0492199 0.0457626 -1 -1 -1 -1 40 2312 45 6.99608e+06 279598 706193. 2443.58 1.93 0.189506 0.164953 26914 176310 -1 1802 29 1510 2446 256870 93194 3.79382 3.79382 -112.838 -3.79382 0 0 926341. 3205.33 0.04 0.11 0.14 -1 -1 0.04 0.0322531 0.0279096 69 27 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_073.v common 3.65 vpr 63.35 MiB -1 -1 0.24 18388 1 0.03 -1 -1 30316 -1 -1 19 30 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64868 30 32 317 269 1 200 81 17 17 289 -1 unnamed_device 24.1 MiB 0.37 1051 7256 1625 5219 412 63.3 MiB 0.08 0.00 4.19642 -135.689 -4.19642 4.19642 0.33 0.000641856 0.000596751 0.0288339 0.0268375 -1 -1 -1 -1 36 2537 33 6.99608e+06 279598 648988. 2245.63 1.35 0.166224 0.143652 26050 158493 -1 2196 23 1975 2671 215318 47546 3.80181 3.80181 -135.851 -3.80181 0 0 828058. 2865.25 0.03 0.05 0.09 -1 -1 0.03 0.0159451 0.0140711 84 63 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_074.v common 5.49 vpr 63.22 MiB -1 -1 0.23 18368 1 0.03 -1 -1 30212 -1 -1 18 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64740 32 32 335 282 1 216 82 17 17 289 -1 unnamed_device 24.2 MiB 0.39 930 12542 4675 5838 2029 63.2 MiB 0.12 0.00 3.0313 -115.382 -3.0313 3.0313 0.33 0.000665913 0.000617698 0.0493606 0.0458644 -1 -1 -1 -1 40 3163 48 6.99608e+06 264882 706193. 2443.58 2.96 0.210944 0.183496 26914 176310 -1 2259 22 1912 2647 200438 48355 3.52102 3.52102 -127.738 -3.52102 0 0 926341. 3205.33 0.04 0.09 0.14 -1 -1 0.04 0.0293518 0.0255606 88 65 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_075.v common 3.45 vpr 63.64 MiB -1 -1 0.24 17712 1 0.03 -1 -1 30396 -1 -1 28 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65164 31 32 293 230 1 168 91 17 17 289 -1 unnamed_device 24.0 MiB 0.14 789 12739 3623 6317 2799 63.6 MiB 0.10 0.00 4.02108 -119.999 -4.02108 4.02108 0.33 0.000627348 0.00058362 0.0415505 0.0385961 -1 -1 -1 -1 44 2161 25 6.99608e+06 412039 787024. 2723.27 1.25 0.17201 0.149926 27778 195446 -1 1729 17 1213 2126 141273 34425 3.66052 3.66052 -117.124 -3.66052 0 0 997811. 3452.63 0.04 0.06 0.16 -1 -1 0.04 0.0223262 0.019587 77 4 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_076.v common 4.60 vpr 63.48 MiB -1 -1 0.24 18396 1 0.03 -1 -1 30352 -1 -1 19 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65004 32 32 350 275 1 206 83 17 17 289 -1 unnamed_device 24.4 MiB 0.39 1197 12323 4175 6382 1766 63.5 MiB 0.13 0.00 4.22395 -143.266 -4.22395 4.22395 0.33 0.000803315 0.000740357 0.0526993 0.0489529 -1 -1 -1 -1 38 3330 27 6.99608e+06 279598 678818. 2348.85 2.09 0.205551 0.179829 26626 170182 -1 2747 20 1809 2727 250118 49975 4.103 4.103 -148.847 -4.103 0 0 902133. 3121.57 0.04 0.09 0.14 -1 -1 0.04 0.0286758 0.0250997 87 34 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_077.v common 6.45 vpr 64.03 MiB -1 -1 0.25 18284 1 0.03 -1 -1 30424 -1 -1 21 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65568 32 32 385 308 1 237 85 17 17 289 -1 unnamed_device 24.3 MiB 0.40 1180 14593 6141 8165 287 64.0 MiB 0.14 0.00 4.9579 -160.775 -4.9579 4.9579 0.34 0.000746074 0.000690961 0.0615778 0.0571954 -1 -1 -1 -1 38 4019 49 6.99608e+06 309029 678818. 2348.85 3.86 0.249924 0.21844 26626 170182 -1 2769 21 2137 3056 264012 58186 4.60305 4.60305 -161.684 -4.60305 0 0 902133. 3121.57 0.03 0.09 0.14 -1 -1 0.03 0.0308376 0.0269195 101 65 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_078.v common 5.28 vpr 63.41 MiB -1 -1 0.26 18340 1 0.03 -1 -1 30308 -1 -1 22 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64932 32 32 387 309 1 244 86 17 17 289 -1 unnamed_device 24.3 MiB 0.42 1186 14261 5902 7968 391 63.4 MiB 0.14 0.00 4.17986 -139.006 -4.17986 4.17986 0.33 0.000746821 0.000693061 0.0595883 0.0553108 -1 -1 -1 -1 40 3567 48 6.99608e+06 323745 706193. 2443.58 2.57 0.246351 0.215056 26914 176310 -1 2790 22 2209 3241 268646 60330 4.19286 4.19286 -153.889 -4.19286 0 0 926341. 3205.33 0.04 0.10 0.14 -1 -1 0.04 0.0335139 0.0293968 101 65 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_079.v common 3.60 vpr 63.57 MiB -1 -1 0.23 18088 1 0.03 -1 -1 30280 -1 -1 17 30 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65100 30 32 272 232 1 169 79 17 17 289 -1 unnamed_device 24.2 MiB 0.32 778 11571 3891 5450 2230 63.6 MiB 0.10 0.00 3.85412 -110.324 -3.85412 3.85412 0.33 0.000583488 0.000542963 0.0419526 0.0390441 -1 -1 -1 -1 38 2043 33 6.99608e+06 250167 678818. 2348.85 1.27 0.166602 0.144932 26626 170182 -1 1660 20 1357 2006 135330 31212 3.36247 3.36247 -115.909 -3.36247 0 0 902133. 3121.57 0.03 0.06 0.14 -1 -1 0.03 0.023295 0.0202791 68 34 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_080.v common 11.49 vpr 64.09 MiB -1 -1 0.26 18288 1 0.03 -1 -1 30324 -1 -1 21 30 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65632 30 32 375 299 1 231 83 17 17 289 -1 unnamed_device 24.4 MiB 0.42 991 9803 3748 5016 1039 64.1 MiB 0.10 0.00 4.90026 -149.578 -4.90026 4.90026 0.33 0.000730534 0.000679075 0.0421626 0.0391801 -1 -1 -1 -1 50 2893 48 6.99608e+06 309029 902133. 3121.57 8.91 0.367429 0.316974 28642 213929 -1 2120 20 1987 2903 210733 49862 4.69541 4.69541 -152.34 -4.69541 0 0 1.08113e+06 3740.92 0.04 0.08 0.17 -1 -1 0.04 0.0292425 0.0255989 101 63 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_081.v common 4.89 vpr 63.38 MiB -1 -1 0.23 18452 1 0.03 -1 -1 30276 -1 -1 18 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64896 32 32 340 270 1 197 82 17 17 289 -1 unnamed_device 24.1 MiB 0.36 950 12898 5383 7002 513 63.4 MiB 0.12 0.00 4.44281 -132.776 -4.44281 4.44281 0.33 0.000686515 0.000637857 0.0522765 0.0486255 -1 -1 -1 -1 46 2904 40 6.99608e+06 264882 828058. 2865.25 2.38 0.211886 0.185077 28066 200906 -1 2155 21 1725 2817 234152 55340 4.09306 4.09306 -141.797 -4.09306 0 0 1.01997e+06 3529.29 0.04 0.09 0.16 -1 -1 0.04 0.0286322 0.0250161 82 34 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_082.v common 4.67 vpr 63.91 MiB -1 -1 0.25 18388 1 0.03 -1 -1 30084 -1 -1 19 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65440 31 32 340 275 1 195 82 17 17 289 -1 unnamed_device 24.4 MiB 0.61 919 7736 2635 4162 939 63.9 MiB 0.08 0.00 5.0765 -140.835 -5.0765 5.0765 0.34 0.000683595 0.000635788 0.0323016 0.0300513 -1 -1 -1 -1 40 2827 34 6.99608e+06 279598 706193. 2443.58 2.01 0.183624 0.159375 26914 176310 -1 1996 18 1403 2053 154708 36864 4.34151 4.34151 -139.438 -4.34151 0 0 926341. 3205.33 0.04 0.07 0.14 -1 -1 0.04 0.0256852 0.022549 87 47 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_083.v common 4.34 vpr 64.08 MiB -1 -1 0.26 18548 1 0.03 -1 -1 30088 -1 -1 24 30 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65616 30 32 377 310 1 234 86 17 17 289 -1 unnamed_device 24.3 MiB 0.48 1149 6134 1189 4745 200 64.1 MiB 0.08 0.00 4.12466 -127.491 -4.12466 4.12466 0.34 0.000726629 0.000675798 0.0261685 0.0243289 -1 -1 -1 -1 38 3100 45 6.99608e+06 353176 678818. 2348.85 1.79 0.202351 0.174984 26626 170182 -1 2499 22 2217 3173 237661 53581 3.66761 3.66761 -131.006 -3.66761 0 0 902133. 3121.57 0.03 0.09 0.14 -1 -1 0.03 0.0311754 0.0271766 106 83 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_084.v common 4.50 vpr 63.91 MiB -1 -1 0.26 18392 1 0.03 -1 -1 30268 -1 -1 19 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65440 32 32 365 294 1 223 83 17 17 289 -1 unnamed_device 24.3 MiB 0.51 1094 12143 4447 5317 2379 63.9 MiB 0.13 0.00 4.71643 -147.438 -4.71643 4.71643 0.34 0.000722326 0.00067016 0.0511977 0.0475585 -1 -1 -1 -1 44 3076 42 6.99608e+06 279598 787024. 2723.27 1.83 0.223528 0.194876 27778 195446 -1 2377 21 1599 2345 193100 43456 4.75431 4.75431 -148.242 -4.75431 0 0 997811. 3452.63 0.04 0.08 0.16 -1 -1 0.04 0.0301336 0.0263377 93 57 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_085.v common 4.16 vpr 64.06 MiB -1 -1 0.26 18404 1 0.03 -1 -1 30320 -1 -1 23 29 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65596 29 32 378 310 1 234 84 17 17 289 -1 unnamed_device 24.3 MiB 0.47 1160 12894 4923 6471 1500 64.1 MiB 0.14 0.00 3.70579 -121.095 -3.70579 3.70579 0.33 0.000717733 0.000666254 0.0551693 0.051269 -1 -1 -1 -1 38 3002 28 6.99608e+06 338461 678818. 2348.85 1.59 0.204646 0.17849 26626 170182 -1 2419 19 1662 2228 159162 35739 3.54836 3.54836 -123.196 -3.54836 0 0 902133. 3121.57 0.03 0.07 0.14 -1 -1 0.03 0.0277174 0.0242252 107 85 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_086.v common 4.26 vpr 63.32 MiB -1 -1 0.21 17988 1 0.03 -1 -1 30368 -1 -1 13 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64836 32 32 243 205 1 140 77 17 17 289 -1 unnamed_device 23.8 MiB 0.66 606 11976 3510 6615 1851 63.3 MiB 0.10 0.00 3.35669 -103.539 -3.35669 3.35669 0.33 0.000558468 0.000519502 0.0429244 0.039999 -1 -1 -1 -1 40 1670 45 6.99608e+06 191304 706193. 2443.58 1.61 0.17303 0.150708 26914 176310 -1 1184 22 960 1456 117921 39315 2.88802 2.88802 -101.57 -2.88802 0 0 926341. 3205.33 0.04 0.07 0.14 -1 -1 0.04 0.024005 0.0209086 56 3 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_087.v common 3.64 vpr 64.11 MiB -1 -1 0.14 18272 1 0.03 -1 -1 30276 -1 -1 21 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65648 32 32 373 302 1 234 85 17 17 289 -1 unnamed_device 24.4 MiB 0.27 1243 16081 5953 7939 2189 64.1 MiB 0.16 0.00 4.8168 -157 -4.8168 4.8168 0.26 0.000731852 0.000679799 0.0658794 0.0611482 -1 -1 -1 -1 40 2915 24 6.99608e+06 309029 706193. 2443.58 1.51 0.221118 0.194285 26914 176310 -1 2455 21 1930 2730 203339 43779 5.01301 5.01301 -164.294 -5.01301 0 0 926341. 3205.33 0.04 0.08 0.14 -1 -1 0.04 0.030157 0.026347 99 65 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_088.v common 5.66 vpr 64.08 MiB -1 -1 0.24 18396 1 0.03 -1 -1 30260 -1 -1 21 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65616 32 32 397 314 1 249 85 17 17 289 -1 unnamed_device 24.6 MiB 0.46 1158 15523 5731 7092 2700 64.1 MiB 0.15 0.00 4.69632 -158.476 -4.69632 4.69632 0.36 0.000762962 0.000708836 0.0665301 0.0618197 -1 -1 -1 -1 38 3758 42 6.99608e+06 309029 678818. 2348.85 3.07 0.255062 0.223742 26626 170182 -1 2698 21 2446 3392 270440 61960 4.80151 4.80151 -168.488 -4.80151 0 0 902133. 3121.57 0.03 0.06 0.10 -1 -1 0.03 0.0180729 0.0160962 105 65 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_089.v common 3.97 vpr 63.32 MiB -1 -1 0.23 18196 1 0.04 -1 -1 30352 -1 -1 14 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64836 32 32 269 231 1 163 78 17 17 289 -1 unnamed_device 23.7 MiB 0.32 733 12528 5239 6931 358 63.3 MiB 0.11 0.00 3.76077 -112.543 -3.76077 3.76077 0.34 0.000592055 0.000550826 0.0472385 0.043913 -1 -1 -1 -1 40 2146 40 6.99608e+06 206020 706193. 2443.58 1.59 0.182487 0.159005 26914 176310 -1 1715 22 1155 1493 129832 31683 3.44801 3.44801 -114.227 -3.44801 0 0 926341. 3205.33 0.04 0.07 0.14 -1 -1 0.04 0.0250171 0.0217489 66 29 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_090.v common 4.63 vpr 63.60 MiB -1 -1 0.22 17880 1 0.03 -1 -1 30360 -1 -1 16 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65128 31 32 245 205 1 144 79 17 17 289 -1 unnamed_device 24.0 MiB 0.18 861 5994 1422 4096 476 63.6 MiB 0.06 0.00 3.28943 -107.573 -3.28943 3.28943 0.34 0.000562552 0.000523856 0.0214873 0.0200148 -1 -1 -1 -1 32 2153 26 6.99608e+06 235451 586450. 2029.24 2.48 0.201952 0.172965 25474 144626 -1 1896 23 1336 2189 177604 38313 3.13392 3.13392 -116.194 -3.13392 0 0 744469. 2576.02 0.03 0.09 0.12 -1 -1 0.03 0.0289609 0.0253133 59 4 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_091.v common 4.54 vpr 63.44 MiB -1 -1 0.25 18340 1 0.03 -1 -1 30444 -1 -1 18 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64964 32 32 348 274 1 209 82 17 17 289 -1 unnamed_device 24.2 MiB 0.39 992 13610 5786 7510 314 63.4 MiB 0.13 0.00 3.99122 -134.043 -3.99122 3.99122 0.33 0.000649272 0.000598516 0.0559628 0.0519662 -1 -1 -1 -1 40 2865 50 6.99608e+06 264882 706193. 2443.58 1.95 0.234985 0.205329 26914 176310 -1 2236 23 2040 2776 217029 48922 4.47846 4.47846 -142.103 -4.47846 0 0 926341. 3205.33 0.04 0.09 0.14 -1 -1 0.04 0.0313713 0.0273616 85 34 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_092.v common 4.54 vpr 64.11 MiB -1 -1 0.25 18432 1 0.03 -1 -1 30308 -1 -1 18 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65652 32 32 356 289 1 217 82 17 17 289 -1 unnamed_device 24.4 MiB 0.45 1087 8448 3166 4532 750 64.1 MiB 0.09 0.00 4.61807 -140.276 -4.61807 4.61807 0.33 0.000707102 0.000656576 0.0369544 0.034304 -1 -1 -1 -1 34 3563 30 6.99608e+06 264882 618332. 2139.56 1.99 0.187407 0.162638 25762 151098 -1 2617 25 2032 2765 272549 80736 4.66331 4.66331 -154.076 -4.66331 0 0 787024. 2723.27 0.03 0.12 0.12 -1 -1 0.03 0.0348237 0.0303706 91 56 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_093.v common 4.28 vpr 63.95 MiB -1 -1 0.25 18204 1 0.03 -1 -1 30132 -1 -1 29 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65488 32 32 349 260 1 195 93 17 17 289 -1 unnamed_device 24.4 MiB 0.20 1086 13533 4315 6748 2470 64.0 MiB 0.13 0.00 4.52621 -140.196 -4.52621 4.52621 0.33 0.000723358 0.00066428 0.0494366 0.0457611 -1 -1 -1 -1 38 2778 46 6.99608e+06 426755 678818. 2348.85 1.90 0.22108 0.192512 26626 170182 -1 2295 21 1739 3136 215099 47757 4.5307 4.5307 -144.202 -4.5307 0 0 902133. 3121.57 0.03 0.09 0.14 -1 -1 0.03 0.0300168 0.0261575 90 3 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_094.v common 4.68 vpr 63.35 MiB -1 -1 0.26 18260 1 0.03 -1 -1 30392 -1 -1 22 30 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64868 30 32 316 264 1 192 84 17 17 289 -1 unnamed_device 24.1 MiB 0.46 927 14175 4952 6503 2720 63.3 MiB 0.12 0.00 3.59117 -104.78 -3.59117 3.59117 0.33 0.000637079 0.000591877 0.0517363 0.0480699 -1 -1 -1 -1 36 2659 24 6.99608e+06 323745 648988. 2245.63 1.91 0.18494 0.161464 26050 158493 -1 2161 22 1739 2557 219404 47781 3.18636 3.18636 -111.083 -3.18636 0 0 828058. 2865.25 0.03 0.09 0.11 -1 -1 0.03 0.028445 0.0247317 87 52 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_095.v common 4.30 vpr 63.39 MiB -1 -1 0.23 18132 1 0.03 -1 -1 30480 -1 -1 18 27 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64908 27 32 255 219 1 145 77 17 17 289 -1 unnamed_device 23.8 MiB 0.29 826 11813 5091 6119 603 63.4 MiB 0.09 0.00 3.76539 -113.553 -3.76539 3.76539 0.34 0.000547153 0.000508857 0.0419209 0.0390495 -1 -1 -1 -1 32 1865 36 6.99608e+06 264882 586450. 2029.24 2.08 0.247883 0.213538 25474 144626 -1 1620 21 994 1514 116471 26020 3.60646 3.60646 -115.324 -3.60646 0 0 744469. 2576.02 0.03 0.06 0.12 -1 -1 0.03 0.0230339 0.0200062 69 34 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_096.v common 3.98 vpr 64.28 MiB -1 -1 0.15 18604 1 0.03 -1 -1 30240 -1 -1 24 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65820 32 32 421 327 1 263 88 17 17 289 -1 unnamed_device 24.6 MiB 0.49 1373 14713 5256 7086 2371 64.3 MiB 0.16 0.00 4.44457 -145.563 -4.44457 4.44457 0.33 0.000807412 0.000750374 0.0636752 0.0591815 -1 -1 -1 -1 50 3396 28 6.99608e+06 353176 902133. 3121.57 1.44 0.232782 0.204086 28642 213929 -1 2870 18 1839 2831 214757 45351 4.363 4.363 -145.373 -4.363 0 0 1.08113e+06 3740.92 0.04 0.08 0.17 -1 -1 0.04 0.0298809 0.0262296 112 65 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_097.v common 4.06 vpr 64.02 MiB -1 -1 0.24 18380 1 0.03 -1 -1 30276 -1 -1 21 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65552 31 32 365 296 1 229 84 17 17 289 -1 unnamed_device 24.4 MiB 0.41 1271 10515 2847 5946 1722 64.0 MiB 0.11 0.00 5.41693 -155.818 -5.41693 5.41693 0.34 0.000714768 0.000664242 0.0440555 0.0409587 -1 -1 -1 -1 40 2971 24 6.99608e+06 309029 706193. 2443.58 1.68 0.194532 0.169876 26914 176310 -1 2506 19 1927 2738 217010 45892 4.58734 4.58734 -155.424 -4.58734 0 0 926341. 3205.33 0.03 0.05 0.10 -1 -1 0.03 0.0158808 0.0141898 96 64 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_098.v common 3.88 vpr 63.83 MiB -1 -1 0.25 18352 1 0.03 -1 -1 30360 -1 -1 18 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65364 32 32 331 280 1 215 82 17 17 289 -1 unnamed_device 24.3 MiB 0.41 1019 12898 5003 5774 2121 63.8 MiB 0.12 0.00 4.02148 -135.181 -4.02148 4.02148 0.34 0.000675106 0.000626565 0.0511943 0.0476231 -1 -1 -1 -1 40 2554 27 6.99608e+06 264882 706193. 2443.58 1.32 0.190559 0.166595 26914 176310 -1 2119 21 1505 2040 162418 36238 3.52995 3.52995 -133.179 -3.52995 0 0 926341. 3205.33 0.04 0.07 0.14 -1 -1 0.04 0.0276916 0.0241046 87 65 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_099.v common 3.90 vpr 64.20 MiB -1 -1 0.12 18384 1 0.03 -1 -1 30420 -1 -1 17 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65736 32 32 326 263 1 198 81 17 17 289 -1 unnamed_device 24.5 MiB 0.35 947 12506 5206 6883 417 64.2 MiB 0.12 0.00 4.17438 -127.536 -4.17438 4.17438 0.34 0.000670822 0.000624314 0.0505488 0.0470101 -1 -1 -1 -1 40 2648 27 6.99608e+06 250167 706193. 2443.58 1.61 0.192834 0.168737 26914 176310 -1 2105 21 1427 1931 160580 36723 3.62241 3.62241 -127.407 -3.62241 0 0 926341. 3205.33 0.04 0.07 0.14 -1 -1 0.04 0.0276199 0.0241137 80 34 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_100.v common 4.13 vpr 63.98 MiB -1 -1 0.26 18396 1 0.03 -1 -1 30400 -1 -1 21 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65516 31 32 373 294 1 217 84 17 17 289 -1 unnamed_device 24.3 MiB 0.41 991 13077 4725 6680 1672 64.0 MiB 0.13 0.00 4.19793 -122.509 -4.19793 4.19793 0.34 0.000731044 0.000678936 0.0555421 0.0516292 -1 -1 -1 -1 40 2836 26 6.99608e+06 309029 706193. 2443.58 1.62 0.214199 0.187745 26914 176310 -1 2141 23 1964 2996 200616 48065 3.88241 3.88241 -125.837 -3.88241 0 0 926341. 3205.33 0.04 0.09 0.14 -1 -1 0.04 0.0328701 0.0286885 97 50 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_101.v common 10.45 vpr 63.43 MiB -1 -1 0.23 18512 1 0.03 -1 -1 30240 -1 -1 19 30 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64948 30 32 325 268 1 199 81 17 17 289 -1 unnamed_device 24.2 MiB 0.48 879 12331 4388 5731 2212 63.4 MiB 0.11 0.00 3.69575 -111.156 -3.69575 3.69575 0.34 0.000674073 0.000616363 0.0489677 0.0453684 -1 -1 -1 -1 38 3158 41 6.99608e+06 279598 678818. 2348.85 7.86 0.313959 0.270376 26626 170182 -1 2215 20 1654 2584 179446 42991 3.61532 3.61532 -120.295 -3.61532 0 0 902133. 3121.57 0.03 0.07 0.14 -1 -1 0.03 0.0267565 0.0233893 84 51 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_102.v common 13.23 vpr 63.41 MiB -1 -1 0.24 18548 1 0.03 -1 -1 30308 -1 -1 18 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64928 32 32 350 275 1 209 82 17 17 289 -1 unnamed_device 24.3 MiB 0.40 979 11296 4199 5586 1511 63.4 MiB 0.11 0.00 4.18128 -137.803 -4.18128 4.18128 0.35 0.000700566 0.000651095 0.0474618 0.044136 -1 -1 -1 -1 40 3397 41 6.99608e+06 264882 706193. 2443.58 10.45 0.385824 0.332557 26914 176310 -1 2446 25 2427 3705 324428 72341 4.38436 4.38436 -149.497 -4.38436 0 0 926341. 3205.33 0.04 0.11 0.14 -1 -1 0.04 0.0341054 0.0297049 87 34 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_103.v common 10.20 vpr 64.19 MiB -1 -1 0.24 18476 1 0.03 -1 -1 30092 -1 -1 21 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65728 32 32 386 307 1 240 85 17 17 289 -1 unnamed_device 24.5 MiB 0.41 1172 14779 4944 7940 1895 64.2 MiB 0.14 0.00 3.49383 -123.038 -3.49383 3.49383 0.35 0.000744675 0.000690682 0.0623874 0.0579082 -1 -1 -1 -1 38 3062 42 6.99608e+06 309029 678818. 2348.85 7.53 0.401185 0.347255 26626 170182 -1 2503 21 2030 2756 207605 45774 3.22392 3.22392 -130.363 -3.22392 0 0 902133. 3121.57 0.03 0.08 0.13 -1 -1 0.03 0.0313101 0.0274444 101 62 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_104.v common 3.37 vpr 63.54 MiB -1 -1 0.22 18176 1 0.03 -1 -1 30312 -1 -1 17 29 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65068 29 32 269 229 1 166 78 17 17 289 -1 unnamed_device 23.9 MiB 0.27 653 11698 4829 5917 952 63.5 MiB 0.10 0.00 3.87612 -110.458 -3.87612 3.87612 0.33 0.000576824 0.00053597 0.0425092 0.0395708 -1 -1 -1 -1 36 1983 34 6.99608e+06 250167 648988. 2245.63 1.06 0.166516 0.144952 26050 158493 -1 1462 21 1445 1913 139306 32789 3.36942 3.36942 -114.909 -3.36942 0 0 828058. 2865.25 0.03 0.07 0.13 -1 -1 0.03 0.0246534 0.0215084 68 34 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_105.v common 3.78 vpr 63.19 MiB -1 -1 0.23 18272 1 0.03 -1 -1 30280 -1 -1 16 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64704 32 32 310 266 1 184 80 17 17 289 -1 unnamed_device 24.0 MiB 0.39 769 12292 3548 6982 1762 63.2 MiB 0.11 0.00 3.56989 -117.422 -3.56989 3.56989 0.34 0.000639731 0.000595039 0.0476767 0.0443352 -1 -1 -1 -1 48 1921 23 6.99608e+06 235451 865456. 2994.66 1.32 0.176243 0.153877 28354 207349 -1 1369 21 1242 1698 118545 29084 3.32086 3.32086 -112.996 -3.32086 0 0 1.05005e+06 3633.38 0.05 0.08 0.12 -1 -1 0.05 0.0338977 0.0295425 79 58 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_106.v common 4.19 vpr 63.87 MiB -1 -1 0.17 18312 1 0.03 -1 -1 30424 -1 -1 19 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65400 31 32 326 261 1 197 82 17 17 289 -1 unnamed_device 24.1 MiB 0.34 901 13788 4669 6747 2372 63.9 MiB 0.13 0.00 4.17701 -124.501 -4.17701 4.17701 0.33 0.000665396 0.000618839 0.0540463 0.0502669 -1 -1 -1 -1 40 2546 40 6.99608e+06 279598 706193. 2443.58 1.83 0.207942 0.181682 26914 176310 -1 1898 20 1507 2201 173886 40173 4.11791 4.11791 -129.334 -4.11791 0 0 926341. 3205.33 0.04 0.08 0.14 -1 -1 0.04 0.0275472 0.0241133 81 33 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_107.v common 3.47 vpr 63.45 MiB -1 -1 0.23 18304 1 0.03 -1 -1 30324 -1 -1 16 29 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64968 29 32 262 224 1 162 77 17 17 289 -1 unnamed_device 23.8 MiB 0.36 695 10346 4286 5606 454 63.4 MiB 0.09 0.00 3.75967 -107.452 -3.75967 3.75967 0.33 0.000564484 0.000525149 0.0379166 0.0352817 -1 -1 -1 -1 42 2064 29 6.99608e+06 235451 744469. 2576.02 1.18 0.155295 0.134907 27202 183097 -1 1555 21 1113 1458 123164 29262 3.29971 3.29971 -107.37 -3.29971 0 0 949917. 3286.91 0.04 0.06 0.15 -1 -1 0.04 0.0233802 0.0203302 67 31 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_108.v common 3.91 vpr 63.50 MiB -1 -1 0.23 18172 1 0.03 -1 -1 30120 -1 -1 15 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65024 32 32 278 238 1 178 79 17 17 289 -1 unnamed_device 24.4 MiB 0.31 796 9881 3787 3524 2570 63.5 MiB 0.08 0.00 3.83776 -116.677 -3.83776 3.83776 0.34 0.000602466 0.000560405 0.0375036 0.0348051 -1 -1 -1 -1 40 2236 47 6.99608e+06 220735 706193. 2443.58 1.65 0.18307 0.158721 26914 176310 -1 1723 22 1490 2039 151424 35617 3.27792 3.27792 -122.849 -3.27792 0 0 926341. 3205.33 0.04 0.07 0.14 -1 -1 0.04 0.0262726 0.0228775 70 34 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_109.v common 3.86 vpr 64.20 MiB -1 -1 0.16 18264 1 0.03 -1 -1 30352 -1 -1 23 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65736 31 32 373 300 1 230 86 17 17 289 -1 unnamed_device 24.5 MiB 0.40 1185 13505 4820 6538 2147 64.2 MiB 0.13 0.00 4.07096 -136.622 -4.07096 4.07096 0.34 0.000729681 0.000677527 0.0547725 0.0508854 -1 -1 -1 -1 42 2958 22 6.99608e+06 338461 744469. 2576.02 1.31 0.208461 0.182792 27202 183097 -1 2422 18 1969 2848 217495 47098 3.51536 3.51536 -133.165 -3.51536 0 0 949917. 3286.91 0.04 0.08 0.15 -1 -1 0.04 0.0276423 0.0242731 100 64 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_110.v common 4.04 vpr 63.46 MiB -1 -1 0.24 18104 1 0.03 -1 -1 30292 -1 -1 15 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64988 31 32 265 230 1 170 78 17 17 289 -1 unnamed_device 23.8 MiB 0.36 907 8876 2820 4643 1413 63.5 MiB 0.08 0.00 3.24748 -103.016 -3.24748 3.24748 0.33 0.00057241 0.000532529 0.032623 0.0303397 -1 -1 -1 -1 36 2282 37 6.99608e+06 220735 648988. 2245.63 1.56 0.159617 0.138207 26050 158493 -1 1955 18 1210 1690 151023 32590 3.12312 3.12312 -115.765 -3.12312 0 0 828058. 2865.25 0.03 0.06 0.13 -1 -1 0.03 0.0210366 0.0183541 67 34 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_111.v common 4.47 vpr 64.00 MiB -1 -1 0.21 18268 1 0.03 -1 -1 30052 -1 -1 18 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65536 32 32 349 286 1 208 82 17 17 289 -1 unnamed_device 24.4 MiB 0.41 992 10406 3740 4255 2411 64.0 MiB 0.10 0.00 3.58215 -114.98 -3.58215 3.58215 0.33 0.000703818 0.000653312 0.0438275 0.0406416 -1 -1 -1 -1 38 3044 30 6.99608e+06 264882 678818. 2348.85 2.04 0.193964 0.168834 26626 170182 -1 2078 19 1313 1903 122788 29087 3.28376 3.28376 -117.057 -3.28376 0 0 902133. 3121.57 0.03 0.07 0.14 -1 -1 0.03 0.0268871 0.0235534 90 57 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_112.v common 4.20 vpr 64.16 MiB -1 -1 0.26 18292 1 0.03 -1 -1 30240 -1 -1 24 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65700 31 32 396 325 1 257 87 17 17 289 -1 unnamed_device 24.6 MiB 0.44 1349 14103 4011 7972 2120 64.2 MiB 0.14 0.00 4.40154 -151.265 -4.40154 4.40154 0.33 0.000751009 0.00069733 0.0583701 0.0541383 -1 -1 -1 -1 38 3173 30 6.99608e+06 353176 678818. 2348.85 1.58 0.224464 0.196682 26626 170182 -1 2642 24 2358 3345 246804 52357 4.09905 4.09905 -148.278 -4.09905 0 0 902133. 3121.57 0.03 0.10 0.14 -1 -1 0.03 0.034493 0.0300425 111 91 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_113.v common 3.68 vpr 63.35 MiB -1 -1 0.16 18120 1 0.03 -1 -1 30264 -1 -1 16 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64868 32 32 303 262 1 189 80 17 17 289 -1 unnamed_device 24.2 MiB 0.39 882 11604 4388 5877 1339 63.3 MiB 0.11 0.00 3.12442 -108.534 -3.12442 3.12442 0.33 0.000626026 0.000581342 0.0442632 0.0411357 -1 -1 -1 -1 40 2100 25 6.99608e+06 235451 706193. 2443.58 1.25 0.169644 0.147609 26914 176310 -1 1761 21 1458 2022 155648 35832 3.10012 3.10012 -112.487 -3.10012 0 0 926341. 3205.33 0.04 0.07 0.14 -1 -1 0.04 0.0262352 0.0228162 80 57 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_114.v common 3.73 vpr 63.70 MiB -1 -1 0.13 18116 1 0.02 -1 -1 30224 -1 -1 15 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65224 32 32 290 244 1 174 79 17 17 289 -1 unnamed_device 24.1 MiB 0.38 908 12585 5135 6794 656 63.7 MiB 0.11 0.00 3.42763 -113.296 -3.42763 3.42763 0.33 0.000612684 0.000569557 0.0479018 0.044559 -1 -1 -1 -1 44 2236 45 6.99608e+06 220735 787024. 2723.27 1.52 0.197427 0.17215 27778 195446 -1 1859 21 1497 2208 187273 39072 3.46172 3.46172 -123.794 -3.46172 0 0 997811. 3452.63 0.04 0.05 0.11 -1 -1 0.04 0.0148319 0.0131018 70 34 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_115.v common 4.85 vpr 63.70 MiB -1 -1 0.23 18380 1 0.03 -1 -1 30200 -1 -1 16 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65232 32 32 318 257 1 190 80 17 17 289 -1 unnamed_device 24.0 MiB 0.39 835 11948 4041 5645 2262 63.7 MiB 0.11 0.00 4.10343 -122.204 -4.10343 4.10343 0.33 0.00066002 0.000613758 0.0482796 0.0449061 -1 -1 -1 -1 36 2990 31 6.99608e+06 235451 648988. 2245.63 2.14 0.19319 0.168549 26050 158493 -1 2088 24 1848 2601 198126 50333 4.11256 4.11256 -135.558 -4.11256 0 0 828058. 2865.25 0.03 0.09 0.13 -1 -1 0.03 0.0307204 0.0267199 79 30 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_116.v common 7.96 vpr 63.84 MiB -1 -1 0.25 18268 1 0.03 -1 -1 30180 -1 -1 19 29 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65368 29 32 324 268 1 193 80 17 17 289 -1 unnamed_device 24.0 MiB 0.41 839 14700 3932 9939 829 63.8 MiB 0.14 0.00 3.44505 -101.808 -3.44505 3.44505 0.34 0.000652085 0.000606532 0.0584554 0.0543525 -1 -1 -1 -1 34 2961 50 6.99608e+06 279598 618332. 2139.56 5.47 0.303057 0.262551 25762 151098 -1 2087 21 1423 1999 151156 39003 3.38836 3.38836 -114.801 -3.38836 0 0 787024. 2723.27 0.03 0.07 0.12 -1 -1 0.03 0.0282996 0.0247182 85 55 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_117.v common 4.38 vpr 64.20 MiB -1 -1 0.26 18352 1 0.03 -1 -1 30460 -1 -1 19 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65740 32 32 393 312 1 234 83 17 17 289 -1 unnamed_device 24.4 MiB 0.36 1254 15383 6584 8521 278 64.2 MiB 0.16 0.00 5.26769 -167.388 -5.26769 5.26769 0.33 0.000770738 0.000716569 0.0678901 0.0631025 -1 -1 -1 -1 44 3348 30 6.99608e+06 279598 787024. 2723.27 1.79 0.235514 0.206887 27778 195446 -1 2541 23 2134 3186 287790 59662 4.45275 4.45275 -155.895 -4.45275 0 0 997811. 3452.63 0.04 0.10 0.16 -1 -1 0.04 0.0348585 0.0304289 103 65 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_118.v common 3.76 vpr 63.18 MiB -1 -1 0.22 17988 1 0.03 -1 -1 30120 -1 -1 15 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64692 31 32 229 197 1 138 78 17 17 289 -1 unnamed_device 23.7 MiB 0.48 649 8378 3363 4684 331 63.2 MiB 0.07 0.00 3.20338 -90.6125 -3.20338 3.20338 0.33 0.000536852 0.000500057 0.0285834 0.0266282 -1 -1 -1 -1 38 1740 26 6.99608e+06 220735 678818. 2348.85 1.36 0.137751 0.119285 26626 170182 -1 1408 23 1078 1745 129004 28747 2.71597 2.71597 -95.6168 -2.71597 0 0 902133. 3121.57 0.03 0.06 0.14 -1 -1 0.03 0.0241496 0.0209859 55 4 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_119.v common 4.78 vpr 64.14 MiB -1 -1 0.26 18268 1 0.03 -1 -1 30284 -1 -1 23 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65676 32 32 412 334 1 258 87 17 17 289 -1 unnamed_device 24.6 MiB 0.43 1319 11991 3957 5960 2074 64.1 MiB 0.12 0.00 4.93268 -164.708 -4.93268 4.93268 0.33 0.000771802 0.0007156 0.0512591 0.0475308 -1 -1 -1 -1 36 4054 47 6.99608e+06 338461 648988. 2245.63 2.21 0.243207 0.211496 26050 158493 -1 2858 22 2200 2781 251702 57095 5.2633 5.2633 -181.627 -5.2633 0 0 828058. 2865.25 0.03 0.10 0.13 -1 -1 0.03 0.0334506 0.0292332 114 90 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_120.v common 4.24 vpr 64.18 MiB -1 -1 0.15 18404 1 0.03 -1 -1 30156 -1 -1 22 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65716 32 32 376 318 1 253 86 17 17 289 -1 unnamed_device 24.5 MiB 0.45 1337 12182 2801 8441 940 64.2 MiB 0.12 0.00 4.37262 -158.739 -4.37262 4.37262 0.37 0.000711764 0.00066043 0.0487485 0.0452791 -1 -1 -1 -1 46 2963 26 6.99608e+06 323745 828058. 2865.25 1.71 0.203017 0.17733 28066 200906 -1 2457 21 1963 2529 189545 39868 4.11305 4.11305 -157.703 -4.11305 0 0 1.01997e+06 3529.29 0.04 0.08 0.16 -1 -1 0.04 0.0298197 0.0260554 105 96 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_121.v common 4.40 vpr 63.93 MiB -1 -1 0.24 18388 1 0.03 -1 -1 30296 -1 -1 19 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65468 32 32 360 293 1 219 83 17 17 289 -1 unnamed_device 24.3 MiB 0.39 1211 12683 3755 7514 1414 63.9 MiB 0.12 0.00 3.36853 -122.175 -3.36853 3.36853 0.34 0.000707294 0.000657276 0.0529326 0.049187 -1 -1 -1 -1 38 2800 43 6.99608e+06 279598 678818. 2348.85 1.88 0.220766 0.19246 26626 170182 -1 2343 24 1786 2393 200580 41794 3.23592 3.23592 -123.11 -3.23592 0 0 902133. 3121.57 0.03 0.08 0.14 -1 -1 0.03 0.0326012 0.0283387 94 60 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_122.v common 12.44 vpr 64.27 MiB -1 -1 0.24 18692 1 0.03 -1 -1 30400 -1 -1 21 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65812 32 32 396 299 1 231 85 17 17 289 -1 unnamed_device 24.5 MiB 0.32 1108 13105 3671 7584 1850 64.3 MiB 0.14 0.00 5.6322 -158.993 -5.6322 5.6322 0.33 0.000777235 0.000722016 0.0575258 0.0534752 -1 -1 -1 -1 44 3147 38 6.99608e+06 309029 787024. 2723.27 9.94 0.396837 0.342694 27778 195446 -1 2287 34 2017 3107 304138 115013 4.85505 4.85505 -154.503 -4.85505 0 0 997811. 3452.63 0.04 0.15 0.16 -1 -1 0.04 0.0485984 0.0422188 99 34 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_123.v common 3.20 vpr 63.57 MiB -1 -1 0.17 18072 1 0.03 -1 -1 30108 -1 -1 13 30 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65100 30 32 224 207 1 134 75 17 17 289 -1 unnamed_device 24.1 MiB 0.28 577 10029 4242 5446 341 63.6 MiB 0.08 0.00 2.33546 -85.6612 -2.33546 2.33546 0.33 0.000504067 0.000469255 0.0336791 0.0313571 -1 -1 -1 -1 36 1749 31 6.99608e+06 191304 648988. 2245.63 1.08 0.138424 0.120065 26050 158493 -1 1357 21 893 1110 100119 24717 2.39608 2.39608 -90.4929 -2.39608 0 0 828058. 2865.25 0.03 0.05 0.13 -1 -1 0.03 0.0205929 0.0178716 52 34 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_124.v common 5.20 vpr 63.46 MiB -1 -1 0.12 18016 1 0.03 -1 -1 30352 -1 -1 16 30 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64980 30 32 286 239 1 159 78 17 17 289 -1 unnamed_device 24.1 MiB 1.18 829 10868 4869 5663 336 63.5 MiB 0.09 0.00 3.98607 -129.511 -3.98607 3.98607 0.33 0.000597854 0.000554481 0.0409971 0.0380891 -1 -1 -1 -1 36 2107 25 6.99608e+06 235451 648988. 2245.63 2.17 0.233413 0.20137 26050 158493 -1 1748 17 1098 1623 130284 30423 3.71161 3.71161 -136.48 -3.71161 0 0 828058. 2865.25 0.03 0.06 0.13 -1 -1 0.03 0.0214257 0.018737 71 34 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_125.v common 4.67 vpr 63.82 MiB -1 -1 0.23 18140 1 0.03 -1 -1 30060 -1 -1 21 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65348 32 32 296 247 1 182 85 17 17 289 -1 unnamed_device 24.2 MiB 0.32 859 13477 5604 7598 275 63.8 MiB 0.12 0.00 3.71535 -130.45 -3.71535 3.71535 0.36 0.000628988 0.00058134 0.0476797 0.0443348 -1 -1 -1 -1 38 2908 46 6.99608e+06 309029 678818. 2348.85 2.29 0.197424 0.171974 26626 170182 -1 2101 23 1401 2302 222408 54792 4.32052 4.32052 -140.632 -4.32052 0 0 902133. 3121.57 0.04 0.09 0.14 -1 -1 0.04 0.0284077 0.0247235 77 34 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_126.v common 3.44 vpr 63.14 MiB -1 -1 0.21 18088 1 0.03 -1 -1 30336 -1 -1 19 25 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64660 25 32 216 194 1 134 76 17 17 289 -1 unnamed_device 23.8 MiB 0.25 507 10956 4030 4533 2393 63.1 MiB 0.08 0.00 3.37063 -78.72 -3.37063 3.37063 0.33 0.000480281 0.000446164 0.0343935 0.0319653 -1 -1 -1 -1 38 1738 27 6.99608e+06 279598 678818. 2348.85 1.26 0.132985 0.115295 26626 170182 -1 1108 17 744 1072 69349 18454 3.14737 3.14737 -85.6299 -3.14737 0 0 902133. 3121.57 0.03 0.04 0.14 -1 -1 0.03 0.0171683 0.0150118 56 29 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_127.v common 6.40 vpr 63.52 MiB -1 -1 0.25 18276 1 0.03 -1 -1 30348 -1 -1 19 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65044 32 32 376 307 1 230 83 17 17 289 -1 unnamed_device 24.4 MiB 0.51 1070 13583 5650 7491 442 63.5 MiB 0.13 0.00 4.04452 -130.09 -4.04452 4.04452 0.34 0.000728734 0.000675996 0.0578889 0.0536675 -1 -1 -1 -1 40 3557 32 6.99608e+06 279598 706193. 2443.58 3.62 0.22235 0.194456 26914 176310 -1 2744 21 2050 3040 252988 64010 4.43451 4.43451 -145.309 -4.43451 0 0 926341. 3205.33 0.04 0.09 0.14 -1 -1 0.04 0.0305214 0.0266633 100 72 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_128.v common 4.47 vpr 63.53 MiB -1 -1 0.26 18432 1 0.03 -1 -1 30404 -1 -1 24 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65052 31 32 409 331 1 257 87 17 17 289 -1 unnamed_device 24.6 MiB 0.47 1269 16023 5206 8626 2191 63.5 MiB 0.16 0.00 4.27167 -145.144 -4.27167 4.27167 0.34 0.000768802 0.000713617 0.0673126 0.0624982 -1 -1 -1 -1 38 3325 48 6.99608e+06 353176 678818. 2348.85 1.74 0.259733 0.227383 26626 170182 -1 2713 23 2420 3261 279104 64299 3.9869 3.9869 -150.259 -3.9869 0 0 902133. 3121.57 0.04 0.11 0.14 -1 -1 0.04 0.035037 0.0305796 115 90 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_001.v common 5.45 vpr 63.17 MiB -1 -1 0.37 18628 14 0.27 -1 -1 32696 -1 -1 22 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64684 32 32 277 309 1 198 86 17 17 289 -1 unnamed_device 23.9 MiB 1.02 1216 8402 2148 5464 790 63.2 MiB 0.10 0.00 8.60211 -177.555 -8.60211 8.60211 0.33 0.000906651 0.000841051 0.0440023 0.04089 -1 -1 -1 -1 36 3343 23 6.79088e+06 296384 648988. 2245.63 1.66 0.234664 0.204625 25390 158009 -1 2918 20 1215 3530 210135 48583 7.25706 7.25706 -164.252 -7.25706 0 0 828058. 2865.25 0.03 0.09 0.13 -1 -1 0.03 0.0372184 0.0326547 134 183 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_002.v common 4.27 vpr 63.08 MiB -1 -1 0.39 18612 14 0.28 -1 -1 32752 -1 -1 23 30 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64592 30 32 272 304 1 201 85 17 17 289 -1 unnamed_device 23.8 MiB 0.54 1069 6595 1508 3894 1193 63.1 MiB 0.08 0.00 7.62679 -156.019 -7.62679 7.62679 0.33 0.000897571 0.000832492 0.0356274 0.0329963 -1 -1 -1 -1 30 3252 22 6.79088e+06 309856 556674. 1926.21 1.19 0.153656 0.134616 24526 138013 -1 2437 15 1240 3174 155047 38736 7.03519 7.03519 -154.218 -7.03519 0 0 706193. 2443.58 0.03 0.07 0.11 -1 -1 0.03 0.0304394 0.026892 132 184 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_003.v common 4.30 vpr 63.11 MiB -1 -1 0.33 18244 11 0.22 -1 -1 32516 -1 -1 22 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64624 32 32 280 312 1 195 86 17 17 289 -1 unnamed_device 23.9 MiB 0.77 1214 8591 2009 5861 721 63.1 MiB 0.10 0.00 6.71408 -143.118 -6.71408 6.71408 0.33 0.000896729 0.000832206 0.0449597 0.0417051 -1 -1 -1 -1 32 3735 26 6.79088e+06 296384 586450. 2029.24 1.13 0.168673 0.148116 24814 144142 -1 2960 19 1609 5126 305222 70696 5.91497 5.91497 -144.231 -5.91497 0 0 744469. 2576.02 0.03 0.11 0.12 -1 -1 0.03 0.0377302 0.0332087 135 186 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_004.v common 4.39 vpr 63.60 MiB -1 -1 0.36 18452 12 0.30 -1 -1 32752 -1 -1 23 29 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65124 29 32 275 307 1 198 84 17 17 289 -1 unnamed_device 23.8 MiB 0.58 1159 7221 1730 4679 812 63.6 MiB 0.08 0.00 7.12458 -141.442 -7.12458 7.12458 0.33 0.000907899 0.000842156 0.0393057 0.0364311 -1 -1 -1 -1 36 3012 26 6.79088e+06 309856 648988. 2245.63 1.25 0.235956 0.204904 25390 158009 -1 2527 17 1156 3212 170442 40925 6.40858 6.40858 -139.574 -6.40858 0 0 828058. 2865.25 0.03 0.08 0.14 -1 -1 0.03 0.034688 0.0306631 138 190 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_005.v common 4.73 vpr 63.32 MiB -1 -1 0.37 18332 13 0.27 -1 -1 32836 -1 -1 24 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64836 32 32 302 334 1 228 88 17 17 289 -1 unnamed_device 24.2 MiB 0.52 1323 14323 4606 7184 2533 63.3 MiB 0.16 0.00 7.89027 -166.862 -7.89027 7.89027 0.33 0.000993466 0.00092194 0.0775314 0.0719424 -1 -1 -1 -1 46 3272 33 6.79088e+06 323328 828058. 2865.25 1.65 0.294839 0.257894 27406 200422 -1 2729 17 1451 3938 179441 46382 6.88531 6.88531 -160.3 -6.88531 0 0 1.01997e+06 3529.29 0.04 0.09 0.16 -1 -1 0.04 0.0369963 0.0326767 155 208 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_006.v common 4.29 vpr 63.11 MiB -1 -1 0.40 18780 13 0.27 -1 -1 32688 -1 -1 23 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64624 32 32 292 324 1 218 87 17 17 289 -1 unnamed_device 24.1 MiB 0.79 1376 8151 1852 5793 506 63.1 MiB 0.10 0.00 7.33267 -155.237 -7.33267 7.33267 0.33 0.000941973 0.000873538 0.0439778 0.0407911 -1 -1 -1 -1 32 3794 24 6.79088e+06 309856 586450. 2029.24 1.04 0.169475 0.148783 24814 144142 -1 3191 21 1644 4847 275014 63961 6.62773 6.62773 -151.966 -6.62773 0 0 744469. 2576.02 0.03 0.10 0.12 -1 -1 0.03 0.0408122 0.0357368 141 198 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_007.v common 4.25 vpr 63.06 MiB -1 -1 0.33 17976 12 0.19 -1 -1 32724 -1 -1 23 27 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64572 27 32 229 261 1 165 82 17 17 289 -1 unnamed_device 23.5 MiB 0.23 931 7558 2015 4893 650 63.1 MiB 0.07 0.00 7.37013 -134.578 -7.37013 7.37013 0.33 0.000741388 0.000688611 0.0344969 0.0320503 -1 -1 -1 -1 30 2200 19 6.79088e+06 309856 556674. 1926.21 1.76 0.201764 0.174821 24526 138013 -1 1951 27 873 2179 151842 57632 6.61577 6.61577 -129.823 -6.61577 0 0 706193. 2443.58 0.03 0.10 0.11 -1 -1 0.03 0.0388711 0.0339267 108 150 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_008.v common 4.41 vpr 63.21 MiB -1 -1 0.33 18176 12 0.19 -1 -1 32640 -1 -1 20 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64728 31 32 229 261 1 183 83 17 17 289 -1 unnamed_device 23.6 MiB 0.39 1152 4763 933 3471 359 63.2 MiB 0.06 0.00 6.27634 -134.88 -6.27634 6.27634 0.35 0.000735452 0.000681654 0.0226058 0.0209412 -1 -1 -1 -1 38 3141 48 6.79088e+06 269440 678818. 2348.85 1.68 0.208977 0.180576 25966 169698 -1 2564 15 1069 3099 184071 42206 5.36344 5.36344 -132.328 -5.36344 0 0 902133. 3121.57 0.04 0.07 0.14 -1 -1 0.04 0.0258809 0.0229099 110 138 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_009.v common 4.18 vpr 62.72 MiB -1 -1 0.35 18476 12 0.16 -1 -1 32564 -1 -1 20 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64224 31 32 235 267 1 193 83 17 17 289 -1 unnamed_device 23.5 MiB 0.49 1267 9443 2350 5394 1699 62.7 MiB 0.09 0.00 7.00394 -146.716 -7.00394 7.00394 0.33 0.00075893 0.000701998 0.0425388 0.039409 -1 -1 -1 -1 38 3104 44 6.79088e+06 269440 678818. 2348.85 1.40 0.217188 0.188472 25966 169698 -1 2511 13 1067 2786 145991 34263 6.13878 6.13878 -139.908 -6.13878 0 0 902133. 3121.57 0.03 0.06 0.13 -1 -1 0.03 0.0236132 0.0210078 109 144 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_010.v common 4.65 vpr 62.76 MiB -1 -1 0.34 18032 13 0.19 -1 -1 32656 -1 -1 17 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64268 32 32 250 282 1 179 81 17 17 289 -1 unnamed_device 23.8 MiB 0.50 1090 10931 3367 5780 1784 62.8 MiB 0.11 0.00 7.28577 -164.664 -7.28577 7.28577 0.34 0.000813571 0.000754847 0.0542084 0.0503226 -1 -1 -1 -1 28 3533 41 6.79088e+06 229024 531479. 1839.03 1.91 0.185087 0.16268 23950 126010 -1 2752 19 1252 3064 186322 44716 6.83133 6.83133 -163.201 -6.83133 0 0 648988. 2245.63 0.02 0.05 0.07 -1 -1 0.02 0.0192374 0.0173001 110 156 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_011.v common 3.96 vpr 63.13 MiB -1 -1 0.34 17980 12 0.18 -1 -1 32420 -1 -1 20 30 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64644 30 32 216 248 1 158 82 17 17 289 -1 unnamed_device 23.7 MiB 0.64 1013 7736 2109 4154 1473 63.1 MiB 0.07 0.00 7.00052 -148.469 -7.00052 7.00052 0.34 0.000702904 0.000650612 0.0334265 0.030984 -1 -1 -1 -1 28 2751 33 6.79088e+06 269440 531479. 1839.03 0.95 0.137712 0.120627 23950 126010 -1 2207 19 902 2254 132251 32405 6.58078 6.58078 -154.226 -6.58078 0 0 648988. 2245.63 0.03 0.07 0.10 -1 -1 0.03 0.0284908 0.0250329 103 128 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_012.v common 8.01 vpr 63.14 MiB -1 -1 0.35 18096 12 0.15 -1 -1 32508 -1 -1 18 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64660 32 32 236 268 1 168 82 17 17 289 -1 unnamed_device 23.6 MiB 0.51 1086 9872 3243 4786 1843 63.1 MiB 0.10 0.00 6.33078 -154.171 -6.33078 6.33078 0.33 0.000729307 0.000671239 0.0442186 0.0408523 -1 -1 -1 -1 34 2852 30 6.79088e+06 242496 618332. 2139.56 4.95 0.30622 0.26496 25102 150614 -1 2509 62 1144 3321 449887 264521 5.71706 5.71706 -148.928 -5.71706 0 0 787024. 2723.27 0.03 0.31 0.13 -1 -1 0.03 0.0800939 0.0690586 103 142 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_013.v common 4.39 vpr 63.73 MiB -1 -1 0.37 18436 13 0.25 -1 -1 32752 -1 -1 20 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65264 32 32 283 315 1 219 84 17 17 289 -1 unnamed_device 24.2 MiB 0.56 1318 5574 1108 4150 316 63.7 MiB 0.07 0.00 7.78056 -168.521 -7.78056 7.78056 0.35 0.00091716 0.000849978 0.0315888 0.029323 -1 -1 -1 -1 40 2757 24 6.79088e+06 269440 706193. 2443.58 1.32 0.218239 0.188856 26254 175826 -1 2684 17 1184 3139 166898 40029 6.83492 6.83492 -158.995 -6.83492 0 0 926341. 3205.33 0.04 0.08 0.14 -1 -1 0.04 0.0344092 0.030389 134 189 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_014.v common 4.71 vpr 63.90 MiB -1 -1 0.37 18476 14 0.32 -1 -1 32740 -1 -1 24 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65432 32 32 303 335 1 223 88 17 17 289 -1 unnamed_device 24.1 MiB 0.93 1381 7108 1510 4813 785 63.9 MiB 0.09 0.00 8.68737 -182.159 -8.68737 8.68737 0.33 0.000971373 0.000899383 0.0395476 0.0366407 -1 -1 -1 -1 32 4290 36 6.79088e+06 323328 586450. 2029.24 1.15 0.190555 0.16651 24814 144142 -1 3144 21 1610 4237 239711 58120 7.62947 7.62947 -174.383 -7.62947 0 0 744469. 2576.02 0.03 0.11 0.12 -1 -1 0.03 0.0443311 0.0389765 154 209 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_015.v common 3.50 vpr 63.13 MiB -1 -1 0.17 18192 11 0.17 -1 -1 32568 -1 -1 23 29 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64648 29 32 225 257 1 169 84 17 17 289 -1 unnamed_device 23.7 MiB 0.44 916 10515 3062 5421 2032 63.1 MiB 0.09 0.00 6.53813 -131.787 -6.53813 6.53813 0.34 0.000725706 0.000672408 0.0448337 0.0415415 -1 -1 -1 -1 32 2757 29 6.79088e+06 309856 586450. 2029.24 0.69 0.142599 0.125231 24814 144142 -1 2124 15 1029 2591 137318 34249 5.82544 5.82544 -128.803 -5.82544 0 0 744469. 2576.02 0.03 0.06 0.12 -1 -1 0.03 0.0251747 0.0222641 108 140 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_016.v common 5.08 vpr 63.88 MiB -1 -1 0.38 18624 12 0.27 -1 -1 32832 -1 -1 27 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65408 32 32 301 333 1 219 91 17 17 289 -1 unnamed_device 24.2 MiB 0.77 1438 8863 2011 6147 705 63.9 MiB 0.10 0.00 7.59173 -165.075 -7.59173 7.59173 0.33 0.00097947 0.000904133 0.0466017 0.0431098 -1 -1 -1 -1 40 3418 24 6.79088e+06 363744 706193. 2443.58 1.78 0.250719 0.218103 26254 175826 -1 3259 21 1669 5406 305965 67833 6.83127 6.83127 -160.878 -6.83127 0 0 926341. 3205.33 0.04 0.12 0.14 -1 -1 0.04 0.0450004 0.0395805 152 207 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_017.v common 5.44 vpr 63.52 MiB -1 -1 0.31 18360 14 0.24 -1 -1 32708 -1 -1 22 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65048 32 32 277 309 1 211 86 17 17 289 -1 unnamed_device 23.8 MiB 0.72 1357 8969 2449 5416 1104 63.5 MiB 0.10 0.00 8.00107 -170.475 -8.00107 8.00107 0.33 0.000905165 0.000839668 0.046481 0.0431433 -1 -1 -1 -1 36 3655 38 6.79088e+06 296384 648988. 2245.63 2.10 0.254757 0.221367 25390 158009 -1 3062 14 1382 3934 225399 52640 7.04976 7.04976 -161.063 -7.04976 0 0 828058. 2865.25 0.03 0.09 0.13 -1 -1 0.03 0.0307821 0.0273537 132 183 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_018.v common 3.81 vpr 63.08 MiB -1 -1 0.24 18384 12 0.16 -1 -1 32428 -1 -1 18 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64592 32 32 227 259 1 168 82 17 17 289 -1 unnamed_device 23.6 MiB 0.75 1088 4710 974 3512 224 63.1 MiB 0.06 0.00 7.19753 -161.227 -7.19753 7.19753 0.34 0.000767271 0.000704965 0.0226985 0.021068 -1 -1 -1 -1 28 2751 21 6.79088e+06 242496 531479. 1839.03 0.93 0.118796 0.103963 23950 126010 -1 2392 16 988 2628 153792 36428 6.14227 6.14227 -155.233 -6.14227 0 0 648988. 2245.63 0.03 0.07 0.10 -1 -1 0.03 0.0265058 0.0233788 107 133 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_019.v common 2.97 vpr 62.73 MiB -1 -1 0.30 17952 10 0.10 -1 -1 32208 -1 -1 14 30 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64240 30 32 175 207 1 132 76 17 17 289 -1 unnamed_device 23.3 MiB 0.29 730 7916 1923 5695 298 62.7 MiB 0.04 0.00 4.80476 -119.7 -4.80476 4.80476 0.26 0.000256369 0.000236382 0.0143765 0.0132661 -1 -1 -1 -1 30 2018 34 6.79088e+06 188608 556674. 1926.21 0.77 0.095688 0.0827056 24526 138013 -1 1498 16 687 1592 79762 20616 4.17477 4.17477 -114.477 -4.17477 0 0 706193. 2443.58 0.03 0.05 0.11 -1 -1 0.03 0.0198998 0.0174803 65 87 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_020.v common 4.36 vpr 63.16 MiB -1 -1 0.33 17996 13 0.18 -1 -1 32604 -1 -1 20 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64680 31 32 231 263 1 179 83 17 17 289 -1 unnamed_device 23.6 MiB 0.61 1138 6563 1394 4753 416 63.2 MiB 0.07 0.00 7.59268 -160.403 -7.59268 7.59268 0.33 0.000752328 0.000697216 0.0304946 0.0282616 -1 -1 -1 -1 28 3298 50 6.79088e+06 269440 531479. 1839.03 1.45 0.159136 0.13876 23950 126010 -1 2477 19 1126 2649 141138 34871 6.74882 6.74882 -155.817 -6.74882 0 0 648988. 2245.63 0.04 0.07 0.11 -1 -1 0.04 0.0301571 0.0264934 109 140 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_021.v common 5.44 vpr 63.73 MiB -1 -1 0.38 18700 13 0.27 -1 -1 32704 -1 -1 24 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65256 32 32 304 336 1 215 88 17 17 289 -1 unnamed_device 24.1 MiB 0.43 1271 10228 2705 5960 1563 63.7 MiB 0.12 0.00 7.65528 -160.773 -7.65528 7.65528 0.34 0.000962588 0.000892092 0.0546535 0.0506739 -1 -1 -1 -1 34 4188 44 6.79088e+06 323328 618332. 2139.56 2.44 0.295601 0.257318 25102 150614 -1 3033 20 1949 5518 289107 67861 6.69833 6.69833 -159.72 -6.69833 0 0 787024. 2723.27 0.03 0.11 0.12 -1 -1 0.03 0.0420187 0.0369525 147 210 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_022.v common 5.68 vpr 63.28 MiB -1 -1 0.41 18700 13 0.31 -1 -1 32448 -1 -1 21 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64800 32 32 288 320 1 215 85 17 17 289 -1 unnamed_device 24.2 MiB 0.85 1426 12733 3634 6917 2182 63.3 MiB 0.14 0.00 7.68992 -168.399 -7.68992 7.68992 0.33 0.00093312 0.000865047 0.0683617 0.0631473 -1 -1 -1 -1 38 3677 24 6.79088e+06 282912 678818. 2348.85 1.96 0.265805 0.232457 25966 169698 -1 2956 19 1426 4352 222747 51661 6.50587 6.50587 -155.251 -6.50587 0 0 902133. 3121.57 0.03 0.10 0.14 -1 -1 0.03 0.0388845 0.0342623 143 194 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_023.v common 2.80 vpr 62.62 MiB -1 -1 0.20 17820 9 0.09 -1 -1 32272 -1 -1 20 26 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64124 26 32 152 184 1 121 78 17 17 289 -1 unnamed_device 23.3 MiB 0.21 615 10868 2926 7286 656 62.6 MiB 0.09 0.00 5.02771 -92.9983 -5.02771 5.02771 0.33 0.000518492 0.000482416 0.0409947 0.038054 -1 -1 -1 -1 28 1700 15 6.79088e+06 269440 531479. 1839.03 0.47 0.0962261 0.0851981 23950 126010 -1 1473 14 564 1348 79816 20096 4.40201 4.40201 -94.3039 -4.40201 0 0 648988. 2245.63 0.03 0.04 0.10 -1 -1 0.03 0.0164095 0.0144399 71 76 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_024.v common 4.59 vpr 63.20 MiB -1 -1 0.28 18244 13 0.29 -1 -1 32764 -1 -1 23 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64716 32 32 287 319 1 209 87 17 17 289 -1 unnamed_device 24.2 MiB 0.57 1327 5463 1099 4030 334 63.2 MiB 0.07 0.00 7.95077 -164.986 -7.95077 7.95077 0.34 0.00092681 0.000859145 0.0302139 0.0280324 -1 -1 -1 -1 44 3087 31 6.79088e+06 309856 787024. 2723.27 1.61 0.241323 0.209316 27118 194962 -1 2565 17 1287 3600 179761 42494 7.04981 7.04981 -154.659 -7.04981 0 0 997811. 3452.63 0.04 0.08 0.16 -1 -1 0.04 0.0351712 0.031097 138 193 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_025.v common 2.88 vpr 62.61 MiB -1 -1 0.22 17888 8 0.09 -1 -1 32132 -1 -1 16 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64112 32 32 154 186 1 122 80 17 17 289 -1 unnamed_device 23.3 MiB 0.31 641 10400 4208 6005 187 62.6 MiB 0.08 0.00 4.0775 -94.5593 -4.0775 4.0775 0.34 0.00050905 0.000473282 0.0327023 0.0303484 -1 -1 -1 -1 30 1886 24 6.79088e+06 215552 556674. 1926.21 0.68 0.0996423 0.0874845 24526 138013 -1 1313 14 591 1253 60934 16153 3.7553 3.7553 -94.3893 -3.7553 0 0 706193. 2443.58 0.03 0.04 0.11 -1 -1 0.03 0.0160749 0.0141385 64 60 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_026.v common 4.67 vpr 62.96 MiB -1 -1 0.33 18536 15 0.23 -1 -1 32764 -1 -1 23 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64476 32 32 254 286 1 199 87 17 17 289 -1 unnamed_device 23.8 MiB 0.61 1349 7575 1696 5456 423 63.0 MiB 0.08 0.00 8.46661 -174.29 -8.46661 8.46661 0.34 0.000843507 0.000783527 0.0369344 0.0342816 -1 -1 -1 -1 38 3469 25 6.79088e+06 309856 678818. 2348.85 1.71 0.227077 0.197648 25966 169698 -1 2908 18 1334 3731 197347 45885 7.34393 7.34393 -165.633 -7.34393 0 0 902133. 3121.57 0.03 0.08 0.13 -1 -1 0.03 0.032423 0.0284991 128 160 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_027.v common 4.25 vpr 62.98 MiB -1 -1 0.33 18520 13 0.23 -1 -1 32908 -1 -1 20 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64496 32 32 260 292 1 195 84 17 17 289 -1 unnamed_device 23.8 MiB 0.71 1221 5574 1180 3842 552 63.0 MiB 0.07 0.00 7.06073 -153.937 -7.06073 7.06073 0.33 0.000848972 0.000788516 0.0293046 0.0272167 -1 -1 -1 -1 36 3046 23 6.79088e+06 269440 648988. 2245.63 1.19 0.200059 0.172816 25390 158009 -1 2647 16 1139 3255 178704 42043 6.16573 6.16573 -147.859 -6.16573 0 0 828058. 2865.25 0.03 0.08 0.17 -1 -1 0.03 0.0303557 0.0267803 121 166 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_028.v common 6.08 vpr 63.13 MiB -1 -1 0.35 18416 13 0.28 -1 -1 32788 -1 -1 23 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64648 32 32 279 311 1 197 87 17 17 289 -1 unnamed_device 23.9 MiB 0.51 1247 5655 1078 4264 313 63.1 MiB 0.07 0.00 7.99851 -170.595 -7.99851 7.99851 0.33 0.00090776 0.000841709 0.03054 0.0283795 -1 -1 -1 -1 34 3779 34 6.79088e+06 309856 618332. 2139.56 3.02 0.236531 0.205361 25102 150614 -1 2892 26 1294 4236 312703 104250 6.92451 6.92451 -161.891 -6.92451 0 0 787024. 2723.27 0.03 0.14 0.12 -1 -1 0.03 0.0476908 0.0417426 138 185 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_029.v common 4.29 vpr 63.33 MiB -1 -1 0.32 18040 12 0.16 -1 -1 32544 -1 -1 19 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64852 32 32 238 270 1 178 83 17 17 289 -1 unnamed_device 23.8 MiB 0.65 1148 12143 3041 7670 1432 63.3 MiB 0.11 0.00 6.34459 -146.944 -6.34459 6.34459 0.33 0.000750706 0.000694298 0.0538223 0.0498043 -1 -1 -1 -1 38 2647 17 6.79088e+06 255968 678818. 2348.85 1.33 0.2063 0.18023 25966 169698 -1 2328 17 947 2403 123447 29193 5.48874 5.48874 -138.211 -5.48874 0 0 902133. 3121.57 0.04 0.07 0.11 -1 -1 0.04 0.0286228 0.0252657 107 144 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_030.v common 5.13 vpr 63.04 MiB -1 -1 0.31 18240 11 0.15 -1 -1 32708 -1 -1 21 30 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64548 30 32 213 245 1 165 83 17 17 289 -1 unnamed_device 23.7 MiB 0.61 974 10343 3278 5049 2016 63.0 MiB 0.09 0.00 6.09388 -134.629 -6.09388 6.09388 0.33 0.000681809 0.000632261 0.042102 0.0390547 -1 -1 -1 -1 30 2712 29 6.79088e+06 282912 556674. 1926.21 2.28 0.242378 0.209714 24526 138013 -1 2065 17 1020 2592 138478 33489 5.07358 5.07358 -125.356 -5.07358 0 0 706193. 2443.58 0.03 0.07 0.12 -1 -1 0.03 0.0263626 0.0232686 99 125 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_031.v common 3.32 vpr 63.07 MiB -1 -1 0.31 18188 11 0.17 -1 -1 32700 -1 -1 22 28 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64584 28 32 227 259 1 169 82 17 17 289 -1 unnamed_device 23.6 MiB 0.26 1019 11296 2983 6970 1343 63.1 MiB 0.10 0.00 6.63698 -129.464 -6.63698 6.63698 0.33 0.000733438 0.000679759 0.0494598 0.0458904 -1 -1 -1 -1 30 2501 39 6.79088e+06 296384 556674. 1926.21 0.85 0.162291 0.142776 24526 138013 -1 1987 17 919 2415 112776 27729 5.53907 5.53907 -123.771 -5.53907 0 0 706193. 2443.58 0.03 0.06 0.11 -1 -1 0.03 0.0274277 0.0241781 110 145 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_032.v common 4.17 vpr 63.02 MiB -1 -1 0.29 18228 12 0.20 -1 -1 32668 -1 -1 24 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64528 32 32 274 306 1 205 88 17 17 289 -1 unnamed_device 23.8 MiB 0.61 1232 11593 3197 6108 2288 63.0 MiB 0.12 0.00 6.74183 -162.386 -6.74183 6.74183 0.33 0.000856454 0.000793439 0.0543524 0.050375 -1 -1 -1 -1 38 2970 22 6.79088e+06 323328 678818. 2348.85 1.16 0.232595 0.202772 25966 169698 -1 2389 18 1250 3178 145164 36261 5.90389 5.90389 -150.081 -5.90389 0 0 902133. 3121.57 0.03 0.08 0.14 -1 -1 0.03 0.0340512 0.0300048 128 180 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_033.v common 4.03 vpr 63.04 MiB -1 -1 0.31 18124 12 0.16 -1 -1 32688 -1 -1 21 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64556 31 32 237 269 1 170 84 17 17 289 -1 unnamed_device 23.6 MiB 0.63 1074 11247 2932 7420 895 63.0 MiB 0.10 0.00 6.93882 -142.223 -6.93882 6.93882 0.33 0.000753399 0.000698049 0.0489687 0.045371 -1 -1 -1 -1 36 2590 21 6.79088e+06 282912 648988. 2245.63 1.25 0.20246 0.17678 25390 158009 -1 2222 19 1016 2769 165245 39005 6.00462 6.00462 -136.975 -6.00462 0 0 828058. 2865.25 0.03 0.05 0.09 -1 -1 0.03 0.0219165 0.0196142 103 146 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_034.v common 3.45 vpr 63.01 MiB -1 -1 0.32 18236 10 0.14 -1 -1 32748 -1 -1 19 29 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64524 29 32 220 252 1 166 80 17 17 289 -1 unnamed_device 23.6 MiB 0.45 940 6788 1590 4069 1129 63.0 MiB 0.07 0.00 5.87088 -123.319 -5.87088 5.87088 0.33 0.000727256 0.000674214 0.0314234 0.0291543 -1 -1 -1 -1 32 2784 27 6.79088e+06 255968 586450. 2029.24 0.81 0.125126 0.109442 24814 144142 -1 2184 23 928 2818 218996 73994 5.15963 5.15963 -121.159 -5.15963 0 0 744469. 2576.02 0.03 0.10 0.12 -1 -1 0.03 0.0346152 0.0304083 103 135 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_035.v common 6.98 vpr 63.85 MiB -1 -1 0.40 19044 13 0.29 -1 -1 32872 -1 -1 24 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65384 32 32 315 347 1 230 88 17 17 289 -1 unnamed_device 24.1 MiB 0.96 1348 13153 3284 8043 1826 63.9 MiB 0.15 0.00 8.14776 -167.632 -8.14776 8.14776 0.33 0.00100562 0.000930634 0.0722084 0.0668111 -1 -1 -1 -1 36 4271 49 6.79088e+06 323328 648988. 2245.63 3.33 0.328806 0.286591 25390 158009 -1 3169 18 1493 4310 246617 58505 7.0533 7.0533 -158.306 -7.0533 0 0 828058. 2865.25 0.03 0.10 0.15 -1 -1 0.03 0.0393197 0.0347464 157 221 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_036.v common 5.28 vpr 63.61 MiB -1 -1 0.40 18768 14 0.31 -1 -1 33280 -1 -1 22 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65136 32 32 282 314 1 223 86 17 17 289 -1 unnamed_device 24.1 MiB 0.75 1398 5567 1030 4259 278 63.6 MiB 0.07 0.00 7.90118 -175.114 -7.90118 7.90118 0.33 0.000947444 0.000870604 0.0314816 0.0292301 -1 -1 -1 -1 38 3496 28 6.79088e+06 296384 678818. 2348.85 1.89 0.233021 0.202123 25966 169698 -1 3092 19 1507 4379 224233 52182 6.86299 6.86299 -169.21 -6.86299 0 0 902133. 3121.57 0.04 0.10 0.14 -1 -1 0.04 0.0394417 0.0347829 144 188 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_037.v common 4.59 vpr 63.06 MiB -1 -1 0.34 18204 12 0.15 -1 -1 32260 -1 -1 21 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64572 31 32 241 273 1 167 84 17 17 289 -1 unnamed_device 23.5 MiB 1.04 1082 9417 2457 5551 1409 63.1 MiB 0.09 0.00 7.00392 -152.056 -7.00392 7.00392 0.33 0.000754502 0.000700046 0.0418705 0.0388808 -1 -1 -1 -1 34 2560 41 6.79088e+06 282912 618332. 2139.56 1.32 0.213162 0.184936 25102 150614 -1 2256 16 963 2614 139889 33443 6.24408 6.24408 -147.845 -6.24408 0 0 787024. 2723.27 0.03 0.07 0.12 -1 -1 0.03 0.0267408 0.0235863 109 150 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_038.v common 5.60 vpr 63.09 MiB -1 -1 0.42 18704 12 0.27 -1 -1 32664 -1 -1 25 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64600 31 32 307 339 1 222 88 17 17 289 -1 unnamed_device 24.1 MiB 1.21 1407 7498 1735 4811 952 63.1 MiB 0.09 0.00 7.34976 -154.275 -7.34976 7.34976 0.34 0.000981071 0.000910313 0.0420093 0.0389437 -1 -1 -1 -1 40 3418 20 6.79088e+06 336800 706193. 2443.58 1.73 0.246794 0.215022 26254 175826 -1 3093 18 1523 4851 283645 64150 6.47011 6.47011 -145.98 -6.47011 0 0 926341. 3205.33 0.04 0.10 0.14 -1 -1 0.04 0.0386713 0.0341337 147 216 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_039.v common 4.12 vpr 63.12 MiB -1 -1 0.29 18700 14 0.33 -1 -1 32668 -1 -1 23 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64632 31 32 293 325 1 209 86 17 17 289 -1 unnamed_device 24.1 MiB 0.66 1309 5189 1008 3816 365 63.1 MiB 0.07 0.00 8.47715 -171.11 -8.47715 8.47715 0.33 0.000951617 0.000883008 0.0299557 0.0278273 -1 -1 -1 -1 32 3922 37 6.79088e+06 309856 586450. 2029.24 1.02 0.169292 0.147146 24814 144142 -1 2985 16 1354 3764 205238 49818 7.35086 7.35086 -163.299 -7.35086 0 0 744469. 2576.02 0.03 0.09 0.12 -1 -1 0.03 0.035856 0.0317914 145 202 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_040.v common 7.66 vpr 63.05 MiB -1 -1 0.41 18940 13 0.26 -1 -1 32728 -1 -1 27 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64560 31 32 276 308 1 213 90 17 17 289 -1 unnamed_device 23.9 MiB 0.91 1374 8733 1936 6161 636 63.0 MiB 0.10 0.00 8.23594 -169.125 -8.23594 8.23594 0.34 0.000903584 0.000837989 0.0440724 0.0407946 -1 -1 -1 -1 34 3877 30 6.79088e+06 363744 618332. 2139.56 4.20 0.314155 0.272114 25102 150614 -1 2971 18 1499 3971 209736 49447 7.01061 7.01061 -161.623 -7.01061 0 0 787024. 2723.27 0.03 0.09 0.12 -1 -1 0.03 0.0351391 0.0309675 140 185 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_041.v common 10.63 vpr 63.00 MiB -1 -1 0.39 18712 13 0.25 -1 -1 32960 -1 -1 24 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64516 31 32 269 301 1 202 87 17 17 289 -1 unnamed_device 23.8 MiB 0.55 1265 11991 3525 6640 1826 63.0 MiB 0.12 0.00 7.42557 -153.386 -7.42557 7.42557 0.33 0.000890181 0.000823132 0.0587426 0.0544505 -1 -1 -1 -1 44 2974 27 6.79088e+06 323328 787024. 2723.27 7.29 0.402607 0.348609 27118 194962 -1 2598 15 1175 3557 191292 44101 6.58427 6.58427 -144.257 -6.58427 0 0 997811. 3452.63 0.04 0.08 0.16 -1 -1 0.04 0.0311919 0.0276303 133 178 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_042.v common 3.66 vpr 63.05 MiB -1 -1 0.20 18160 12 0.19 -1 -1 32732 -1 -1 18 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64560 32 32 264 296 1 184 82 17 17 289 -1 unnamed_device 23.9 MiB 0.57 1157 5956 1217 4252 487 63.0 MiB 0.07 0.00 7.42809 -161.016 -7.42809 7.42809 0.33 0.000827832 0.000767327 0.0310981 0.0288634 -1 -1 -1 -1 30 3006 26 6.79088e+06 242496 556674. 1926.21 0.93 0.140866 0.123039 24526 138013 -1 2447 16 1033 2877 147023 34853 6.24413 6.24413 -150.162 -6.24413 0 0 706193. 2443.58 0.03 0.07 0.11 -1 -1 0.03 0.0295778 0.026082 117 170 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_043.v common 5.77 vpr 63.43 MiB -1 -1 0.47 19496 14 0.36 -1 -1 32820 -1 -1 25 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64952 32 32 324 356 1 234 89 17 17 289 -1 unnamed_device 24.4 MiB 0.58 1549 14147 3781 8058 2308 63.4 MiB 0.16 0.00 8.50649 -177.764 -8.50649 8.50649 0.33 0.00104814 0.000969317 0.0796633 0.0736192 -1 -1 -1 -1 36 4592 48 6.79088e+06 336800 648988. 2245.63 2.49 0.347431 0.303213 25390 158009 -1 3618 16 1632 4744 285421 65952 7.63716 7.63716 -173.437 -7.63716 0 0 828058. 2865.25 0.03 0.09 0.09 -1 -1 0.03 0.0367153 0.0326246 165 230 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_044.v common 5.05 vpr 62.89 MiB -1 -1 0.32 18188 11 0.19 -1 -1 32380 -1 -1 18 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64400 31 32 249 281 1 185 81 17 17 289 -1 unnamed_device 23.9 MiB 0.48 1232 9006 2269 5491 1246 62.9 MiB 0.10 0.00 6.51168 -143.157 -6.51168 6.51168 0.34 0.000811374 0.000753111 0.045059 0.0418383 -1 -1 -1 -1 34 3286 46 6.79088e+06 242496 618332. 2139.56 2.13 0.244298 0.21205 25102 150614 -1 2839 17 1282 3492 200226 46232 5.68889 5.68889 -140.53 -5.68889 0 0 787024. 2723.27 0.03 0.08 0.12 -1 -1 0.03 0.0312437 0.0275847 116 158 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_045.v common 4.90 vpr 63.65 MiB -1 -1 0.39 18784 13 0.26 -1 -1 33192 -1 -1 21 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65180 31 32 284 316 1 188 84 17 17 289 -1 unnamed_device 23.9 MiB 0.75 1204 12528 3737 6974 1817 63.7 MiB 0.13 0.00 7.94481 -166.677 -7.94481 7.94481 0.33 0.000909417 0.000840782 0.0662093 0.0612194 -1 -1 -1 -1 36 3092 22 6.79088e+06 282912 648988. 2245.63 1.58 0.255213 0.222621 25390 158009 -1 2644 15 1095 3483 191240 44753 6.79921 6.79921 -152.923 -6.79921 0 0 828058. 2865.25 0.04 0.08 0.13 -1 -1 0.04 0.0321072 0.0284112 138 193 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_046.v common 4.88 vpr 63.10 MiB -1 -1 0.35 18392 12 0.26 -1 -1 32816 -1 -1 22 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64612 32 32 303 335 1 210 86 17 17 289 -1 unnamed_device 24.0 MiB 0.87 1363 5189 1027 3642 520 63.1 MiB 0.08 0.00 7.04197 -157.192 -7.04197 7.04197 0.33 0.000996774 0.000924651 0.0334175 0.0309014 -1 -1 -1 -1 40 3245 25 6.79088e+06 296384 706193. 2443.58 1.53 0.238638 0.206617 26254 175826 -1 2861 19 1269 4054 212612 49400 5.96542 5.96542 -149.245 -5.96542 0 0 926341. 3205.33 0.04 0.09 0.14 -1 -1 0.04 0.040369 0.0356148 147 209 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_047.v common 4.71 vpr 63.12 MiB -1 -1 0.34 18308 13 0.24 -1 -1 32636 -1 -1 24 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64632 32 32 272 304 1 195 88 17 17 289 -1 unnamed_device 23.9 MiB 0.86 1177 5158 1002 4043 113 63.1 MiB 0.07 0.00 7.73127 -163.808 -7.73127 7.73127 0.34 0.000896122 0.000831306 0.0279847 0.0259256 -1 -1 -1 -1 28 3639 40 6.79088e+06 323328 531479. 1839.03 1.52 0.182112 0.158905 23950 126010 -1 2804 18 1528 4053 219179 54557 6.99593 6.99593 -159.69 -6.99593 0 0 648988. 2245.63 0.03 0.09 0.08 -1 -1 0.03 0.0350516 0.0308061 132 178 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_048.v common 5.59 vpr 63.30 MiB -1 -1 0.37 18668 13 0.21 -1 -1 33232 -1 -1 21 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64820 32 32 271 303 1 207 85 17 17 289 -1 unnamed_device 24.1 MiB 0.44 1265 14965 4764 8341 1860 63.3 MiB 0.15 0.00 7.75252 -165.339 -7.75252 7.75252 0.34 0.00086646 0.000802612 0.0734953 0.0680761 -1 -1 -1 -1 30 4000 45 6.79088e+06 282912 556674. 1926.21 2.70 0.218878 0.19271 24526 138013 -1 2858 16 1211 3464 187136 43679 6.88642 6.88642 -164.478 -6.88642 0 0 706193. 2443.58 0.03 0.08 0.11 -1 -1 0.03 0.0319016 0.0281607 129 177 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_049.v common 10.94 vpr 63.14 MiB -1 -1 0.38 18720 12 0.26 -1 -1 32732 -1 -1 23 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64652 32 32 288 320 1 212 87 17 17 289 -1 unnamed_device 23.9 MiB 1.15 1351 6615 1429 4480 706 63.1 MiB 0.08 0.00 7.16042 -155.528 -7.16042 7.16042 0.34 0.000939125 0.000866298 0.0362422 0.0335005 -1 -1 -1 -1 32 3833 43 6.79088e+06 309856 586450. 2029.24 6.95 0.380181 0.326782 24814 144142 -1 3158 22 1350 4375 298063 84057 6.24059 6.24059 -150.336 -6.24059 0 0 744469. 2576.02 0.03 0.12 0.12 -1 -1 0.03 0.0431628 0.0378799 145 194 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_050.v common 5.67 vpr 63.29 MiB -1 -1 0.39 18916 13 0.29 -1 -1 33236 -1 -1 27 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64804 32 32 306 338 1 225 91 17 17 289 -1 unnamed_device 24.1 MiB 0.49 1531 6619 1413 4763 443 63.3 MiB 0.08 0.00 8.00102 -171.788 -8.00102 8.00102 0.33 0.000987244 0.000914593 0.0361965 0.0335495 -1 -1 -1 -1 34 4202 24 6.79088e+06 363744 618332. 2139.56 2.74 0.243121 0.210759 25102 150614 -1 3425 20 1830 5592 319357 72314 6.79916 6.79916 -163.39 -6.79916 0 0 787024. 2723.27 0.03 0.11 0.12 -1 -1 0.03 0.0421098 0.0369914 155 212 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_051.v common 6.00 vpr 62.93 MiB -1 -1 0.33 18500 14 0.30 -1 -1 32712 -1 -1 21 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64444 32 32 262 294 1 194 85 17 17 289 -1 unnamed_device 23.8 MiB 0.61 1179 11431 2954 7116 1361 62.9 MiB 0.12 0.00 8.61917 -175.213 -8.61917 8.61917 0.34 0.000860384 0.000797482 0.0569217 0.0527823 -1 -1 -1 -1 34 3274 45 6.79088e+06 282912 618332. 2139.56 2.84 0.384305 0.332757 25102 150614 -1 2654 17 1189 3379 184757 43904 7.34316 7.34316 -164.459 -7.34316 0 0 787024. 2723.27 0.03 0.08 0.12 -1 -1 0.03 0.0333461 0.0294805 127 168 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_052.v common 4.96 vpr 63.12 MiB -1 -1 0.34 18528 13 0.26 -1 -1 32780 -1 -1 22 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64640 32 32 291 323 1 210 86 17 17 289 -1 unnamed_device 24.1 MiB 0.74 1376 8780 2463 5596 721 63.1 MiB 0.10 0.00 8.32932 -171.393 -8.32932 8.32932 0.34 0.000929417 0.000861459 0.0472655 0.0438397 -1 -1 -1 -1 34 3609 29 6.79088e+06 296384 618332. 2139.56 1.75 0.251746 0.219221 25102 150614 -1 3077 16 1419 3911 223058 51860 7.33618 7.33618 -165.491 -7.33618 0 0 787024. 2723.27 0.03 0.09 0.12 -1 -1 0.03 0.0335871 0.0296795 141 197 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_053.v common 8.24 vpr 63.32 MiB -1 -1 0.41 18632 13 0.27 -1 -1 32708 -1 -1 26 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64836 31 32 302 334 1 220 89 17 17 289 -1 unnamed_device 24.2 MiB 0.84 1319 12365 3747 6590 2028 63.3 MiB 0.13 0.00 7.99851 -170.13 -7.99851 7.99851 0.35 0.00096778 0.000896787 0.0645225 0.0595132 -1 -1 -1 -1 36 3749 35 6.79088e+06 350272 648988. 2245.63 4.81 0.409832 0.353816 25390 158009 -1 2959 19 1575 4424 252770 60091 7.33612 7.33612 -166.763 -7.33612 0 0 828058. 2865.25 0.03 0.10 0.13 -1 -1 0.03 0.0391557 0.0344015 154 211 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_054.v common 5.14 vpr 63.22 MiB -1 -1 0.40 18492 12 0.29 -1 -1 32700 -1 -1 28 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64736 32 32 308 340 1 225 92 17 17 289 -1 unnamed_device 24.1 MiB 0.43 1496 6923 1430 4695 798 63.2 MiB 0.08 0.00 7.60376 -160.492 -7.60376 7.60376 0.33 0.000976411 0.000895617 0.0363538 0.0336924 -1 -1 -1 -1 34 3971 26 6.79088e+06 377216 618332. 2139.56 2.11 0.245937 0.213719 25102 150614 -1 3429 21 1748 4889 267951 62282 6.50587 6.50587 -154.947 -6.50587 0 0 787024. 2723.27 0.03 0.11 0.12 -1 -1 0.03 0.0420303 0.0368799 153 214 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_055.v common 3.40 vpr 62.90 MiB -1 -1 0.29 18196 11 0.13 -1 -1 32592 -1 -1 18 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64412 32 32 216 248 1 158 82 17 17 289 -1 unnamed_device 23.3 MiB 0.30 1075 3998 756 3041 201 62.9 MiB 0.05 0.00 6.77248 -144.032 -6.77248 6.77248 0.33 0.000694571 0.000643972 0.0181907 0.0168902 -1 -1 -1 -1 30 2517 36 6.79088e+06 242496 556674. 1926.21 0.91 0.117887 0.102169 24526 138013 -1 2075 16 798 1995 102913 24830 5.70363 5.70363 -136.86 -5.70363 0 0 706193. 2443.58 0.03 0.06 0.11 -1 -1 0.03 0.0247255 0.0217961 94 122 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_056.v common 5.70 vpr 63.53 MiB -1 -1 0.21 18476 13 0.21 -1 -1 32696 -1 -1 20 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65056 32 32 254 286 1 192 84 17 17 289 -1 unnamed_device 23.9 MiB 0.88 1126 8136 2068 5016 1052 63.5 MiB 0.10 0.00 7.79214 -162.679 -7.79214 7.79214 0.33 0.000658065 0.000604412 0.0384866 0.0354708 -1 -1 -1 -1 32 3246 36 6.79088e+06 269440 586450. 2029.24 2.19 0.283685 0.244412 24814 144142 -1 2659 27 1119 2895 228683 83255 7.03862 7.03862 -159.905 -7.03862 0 0 744469. 2576.02 0.03 0.12 0.12 -1 -1 0.03 0.0432522 0.037652 117 160 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_057.v common 6.15 vpr 63.46 MiB -1 -1 0.29 19268 14 0.42 -1 -1 32964 -1 -1 26 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64984 32 32 338 370 1 249 90 17 17 289 -1 unnamed_device 24.5 MiB 0.66 1538 6120 1240 4317 563 63.5 MiB 0.09 0.00 8.8247 -180.72 -8.8247 8.8247 0.33 0.00109559 0.00101528 0.0378462 0.0351304 -1 -1 -1 -1 36 4507 28 6.79088e+06 350272 648988. 2245.63 2.38 0.280931 0.244106 25390 158009 -1 3639 21 2146 6765 373325 85821 7.52655 7.52655 -172.07 -7.52655 0 0 828058. 2865.25 0.03 0.13 0.13 -1 -1 0.03 0.047843 0.0420731 177 244 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_058.v common 3.82 vpr 63.67 MiB -1 -1 0.27 18500 13 0.28 -1 -1 32764 -1 -1 22 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65196 32 32 271 303 1 213 86 17 17 289 -1 unnamed_device 23.9 MiB 0.48 1392 6323 1417 4337 569 63.7 MiB 0.08 0.00 7.43607 -167.439 -7.43607 7.43607 0.34 0.000883475 0.000818429 0.0332858 0.0308115 -1 -1 -1 -1 32 3852 24 6.79088e+06 296384 586450. 2029.24 1.13 0.154314 0.134981 24814 144142 -1 3039 31 1428 4021 302952 101633 6.58083 6.58083 -166.434 -6.58083 0 0 744469. 2576.02 0.03 0.09 0.08 -1 -1 0.03 0.0285554 0.0252491 137 177 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_059.v common 3.59 vpr 62.98 MiB -1 -1 0.29 18232 11 0.21 -1 -1 32800 -1 -1 20 30 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64496 30 32 224 256 1 163 82 17 17 289 -1 unnamed_device 23.5 MiB 0.24 1046 7736 1943 5282 511 63.0 MiB 0.08 0.00 6.49117 -139.951 -6.49117 6.49117 0.33 0.000727529 0.000674613 0.0343752 0.0318642 -1 -1 -1 -1 34 2539 24 6.79088e+06 269440 618332. 2139.56 1.18 0.184649 0.160283 25102 150614 -1 2161 18 1027 2894 148138 35559 5.57827 5.57827 -133.767 -5.57827 0 0 787024. 2723.27 0.03 0.07 0.12 -1 -1 0.03 0.0285667 0.0251032 104 136 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_060.v common 5.55 vpr 64.11 MiB -1 -1 0.43 19452 15 0.50 -1 -1 32792 -1 -1 24 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65644 32 32 351 383 1 255 88 17 17 289 -1 unnamed_device 24.4 MiB 0.69 1469 6718 1458 4742 518 64.1 MiB 0.09 0.00 9.4129 -180.562 -9.4129 9.4129 0.33 0.00111852 0.00103376 0.0434228 0.0401761 -1 -1 -1 -1 40 3841 41 6.79088e+06 323328 706193. 2443.58 1.96 0.310829 0.269387 26254 175826 -1 3370 24 2324 6951 380547 96521 8.42827 8.42827 -177.143 -8.42827 0 0 926341. 3205.33 0.04 0.14 0.14 -1 -1 0.04 0.0551757 0.048345 182 257 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_061.v common 7.66 vpr 63.14 MiB -1 -1 0.38 18356 13 0.31 -1 -1 32832 -1 -1 21 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64652 32 32 297 329 1 217 85 17 17 289 -1 unnamed_device 24.1 MiB 0.49 1381 6781 1376 4957 448 63.1 MiB 0.09 0.00 8.02439 -172.858 -8.02439 8.02439 0.39 0.00123325 0.00112334 0.0397366 0.036858 -1 -1 -1 -1 34 3790 39 6.79088e+06 282912 618332. 2139.56 4.47 0.386314 0.333358 25102 150614 -1 3102 28 1505 4147 270941 86271 6.97141 6.97141 -165.546 -6.97141 0 0 787024. 2723.27 0.03 0.13 0.12 -1 -1 0.03 0.0515516 0.0449004 145 203 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_062.v common 4.69 vpr 62.98 MiB -1 -1 0.30 17896 11 0.13 -1 -1 32636 -1 -1 17 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64492 32 32 231 263 1 166 81 17 17 289 -1 unnamed_device 23.5 MiB 0.57 909 12331 4468 6022 1841 63.0 MiB 0.11 0.00 6.81376 -134.635 -6.81376 6.81376 0.33 0.000724891 0.000670725 0.0539823 0.0499095 -1 -1 -1 -1 36 2724 41 6.79088e+06 229024 648988. 2245.63 1.88 0.224494 0.19549 25390 158009 -1 1931 20 941 2393 128371 32842 5.82123 5.82123 -135.283 -5.82123 0 0 828058. 2865.25 0.03 0.07 0.13 -1 -1 0.03 0.0299405 0.026273 100 137 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_063.v common 10.91 vpr 64.06 MiB -1 -1 0.36 18636 12 0.29 -1 -1 32792 -1 -1 21 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65596 32 32 305 337 1 207 85 17 17 289 -1 unnamed_device 24.4 MiB 0.61 1238 11989 2862 7566 1561 64.1 MiB 0.13 0.00 7.73847 -157.471 -7.73847 7.73847 0.33 0.000966881 0.000894458 0.0663491 0.0613603 -1 -1 -1 -1 30 3476 40 6.79088e+06 282912 556674. 1926.21 7.59 0.504774 0.435963 24526 138013 -1 2798 61 1432 4418 483283 257654 6.62696 6.62696 -152.647 -6.62696 0 0 706193. 2443.58 0.03 0.30 0.11 -1 -1 0.03 0.103186 0.0888712 148 211 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_064.v common 3.83 vpr 62.86 MiB -1 -1 0.31 18172 12 0.19 -1 -1 32668 -1 -1 21 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64364 32 32 243 275 1 185 85 17 17 289 -1 unnamed_device 23.9 MiB 0.40 1201 8455 2253 5491 711 62.9 MiB 0.09 0.00 7.01886 -151.775 -7.01886 7.01886 0.33 0.000790752 0.000733654 0.039298 0.0364443 -1 -1 -1 -1 30 3451 39 6.79088e+06 282912 556674. 1926.21 1.12 0.163488 0.143321 24526 138013 -1 2642 19 1229 3277 170167 40570 6.02924 6.02924 -151.575 -6.02924 0 0 706193. 2443.58 0.03 0.08 0.10 -1 -1 0.03 0.0322737 0.0284018 116 149 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_065.v common 3.65 vpr 63.09 MiB -1 -1 0.34 18172 12 0.18 -1 -1 32580 -1 -1 18 30 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64608 30 32 228 260 1 164 80 17 17 289 -1 unnamed_device 23.5 MiB 0.40 1081 11604 3205 6945 1454 63.1 MiB 0.11 0.00 7.62806 -153.766 -7.62806 7.62806 0.33 0.000748241 0.000693505 0.0534482 0.0495952 -1 -1 -1 -1 28 2709 44 6.79088e+06 242496 531479. 1839.03 0.97 0.171037 0.150215 23950 126010 -1 2343 19 950 2626 146937 35222 6.54851 6.54851 -149.241 -6.54851 0 0 648988. 2245.63 0.03 0.07 0.11 -1 -1 0.03 0.0305789 0.0269231 103 140 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_066.v common 4.69 vpr 63.65 MiB -1 -1 0.37 18740 12 0.26 -1 -1 33140 -1 -1 26 29 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65176 29 32 275 307 1 201 87 17 17 289 -1 unnamed_device 23.8 MiB 1.05 1278 7767 2051 5102 614 63.6 MiB 0.09 0.00 7.51498 -141.618 -7.51498 7.51498 0.34 0.000906016 0.000840016 0.0413051 0.038323 -1 -1 -1 -1 32 3630 33 6.79088e+06 350272 586450. 2029.24 1.14 0.181328 0.159313 24814 144142 -1 3017 25 1535 4942 354687 107218 6.75642 6.75642 -139.832 -6.75642 0 0 744469. 2576.02 0.03 0.14 0.12 -1 -1 0.03 0.0449023 0.0391247 140 190 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_067.v common 4.83 vpr 63.28 MiB -1 -1 0.38 18780 13 0.33 -1 -1 32688 -1 -1 25 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64796 32 32 330 362 1 245 89 17 17 289 -1 unnamed_device 24.1 MiB 0.33 1528 6227 1201 4545 481 63.3 MiB 0.08 0.00 8.18895 -172.059 -8.18895 8.18895 0.33 0.00103214 0.000955321 0.0366079 0.033946 -1 -1 -1 -1 38 3867 24 6.79088e+06 336800 678818. 2348.85 1.78 0.258078 0.223919 25966 169698 -1 3158 18 1802 4742 228893 55193 7.17168 7.17168 -170.308 -7.17168 0 0 902133. 3121.57 0.04 0.10 0.14 -1 -1 0.04 0.0424222 0.0375185 168 236 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_068.v common 4.53 vpr 63.15 MiB -1 -1 0.23 18780 12 0.24 -1 -1 32916 -1 -1 23 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64668 32 32 290 322 1 213 87 17 17 289 -1 unnamed_device 24.1 MiB 0.50 1313 4887 885 3808 194 63.2 MiB 0.07 0.00 7.99076 -164.599 -7.99076 7.99076 0.33 0.000960029 0.00089161 0.0280986 0.0261157 -1 -1 -1 -1 36 3499 25 6.79088e+06 309856 648988. 2245.63 1.63 0.227641 0.197159 25390 158009 -1 2947 22 1597 4563 264161 61020 7.12816 7.12816 -162.912 -7.12816 0 0 828058. 2865.25 0.03 0.11 0.13 -1 -1 0.03 0.0426839 0.0374446 145 196 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_069.v common 3.57 vpr 63.04 MiB -1 -1 0.32 18076 12 0.14 -1 -1 32716 -1 -1 18 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64556 32 32 214 246 1 158 82 17 17 289 -1 unnamed_device 23.6 MiB 0.60 979 6846 1775 4790 281 63.0 MiB 0.07 0.00 7.54672 -153.653 -7.54672 7.54672 0.33 0.000697637 0.000646916 0.0298109 0.0276413 -1 -1 -1 -1 30 2574 28 6.79088e+06 242496 556674. 1926.21 0.81 0.125497 0.109777 24526 138013 -1 2114 16 851 2322 127991 29604 6.27876 6.27876 -142.747 -6.27876 0 0 706193. 2443.58 0.03 0.06 0.12 -1 -1 0.03 0.0249282 0.0219725 95 120 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_070.v common 4.44 vpr 62.86 MiB -1 -1 0.35 18420 12 0.21 -1 -1 32544 -1 -1 21 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64364 31 32 244 276 1 180 84 17 17 289 -1 unnamed_device 23.9 MiB 0.57 1114 10881 2787 6498 1596 62.9 MiB 0.11 0.00 7.00478 -147.422 -7.00478 7.00478 0.33 0.000795387 0.000737213 0.0501307 0.0465041 -1 -1 -1 -1 30 3094 42 6.79088e+06 282912 556674. 1926.21 1.50 0.177397 0.155554 24526 138013 -1 2593 17 1131 3204 173931 40516 6.09958 6.09958 -141.679 -6.09958 0 0 706193. 2443.58 0.03 0.09 0.11 -1 -1 0.03 0.036672 0.0327754 113 153 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_071.v common 4.26 vpr 63.59 MiB -1 -1 0.35 18244 11 0.19 -1 -1 32692 -1 -1 21 30 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65116 30 32 276 308 1 190 83 17 17 289 -1 unnamed_device 23.9 MiB 0.66 1265 6203 1330 4334 539 63.6 MiB 0.07 0.00 6.86036 -138.178 -6.86036 6.86036 0.33 0.000872701 0.000808832 0.0332341 0.0307975 -1 -1 -1 -1 32 3655 41 6.79088e+06 282912 586450. 2029.24 1.22 0.174161 0.151687 24814 144142 -1 2841 22 1283 4426 272547 59617 6.00456 6.00456 -136.67 -6.00456 0 0 744469. 2576.02 0.03 0.10 0.12 -1 -1 0.03 0.040237 0.0351859 127 188 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_072.v common 4.11 vpr 63.57 MiB -1 -1 0.33 18096 11 0.20 -1 -1 32804 -1 -1 22 28 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65096 28 32 253 285 1 172 82 17 17 289 -1 unnamed_device 24.0 MiB 0.52 1030 7380 1762 4862 756 63.6 MiB 0.08 0.00 6.50134 -127.842 -6.50134 6.50134 0.34 0.000822242 0.0007458 0.0372029 0.0344751 -1 -1 -1 -1 30 2900 25 6.79088e+06 296384 556674. 1926.21 1.12 0.148011 0.129577 24526 138013 -1 2343 21 1179 3773 199655 46024 5.81425 5.81425 -124.658 -5.81425 0 0 706193. 2443.58 0.03 0.10 0.11 -1 -1 0.03 0.0433985 0.0386441 120 171 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_073.v common 4.03 vpr 63.21 MiB -1 -1 0.35 18460 13 0.21 -1 -1 32544 -1 -1 18 30 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64732 30 32 235 267 1 168 80 17 17 289 -1 unnamed_device 23.6 MiB 0.93 1017 9368 2381 5580 1407 63.2 MiB 0.09 0.00 7.37863 -147.299 -7.37863 7.37863 0.33 0.000762423 0.00070602 0.0447211 0.0414357 -1 -1 -1 -1 30 2602 19 6.79088e+06 242496 556674. 1926.21 0.82 0.135703 0.11964 24526 138013 -1 2239 15 965 2628 129907 31874 6.45553 6.45553 -140.988 -6.45553 0 0 706193. 2443.58 0.03 0.06 0.11 -1 -1 0.03 0.0261016 0.0231301 106 147 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_074.v common 5.26 vpr 63.01 MiB -1 -1 0.36 18368 12 0.25 -1 -1 32488 -1 -1 21 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64524 32 32 264 296 1 196 85 17 17 289 -1 unnamed_device 23.8 MiB 0.54 1234 11059 3144 6282 1633 63.0 MiB 0.11 0.00 7.31477 -168.368 -7.31477 7.31477 0.34 0.000856824 0.000793056 0.0547439 0.0506667 -1 -1 -1 -1 34 3162 44 6.79088e+06 282912 618332. 2139.56 1.74 0.271546 0.236694 25102 150614 -1 2574 16 1178 3180 169085 41152 6.12997 6.12997 -154.393 -6.12997 0 0 787024. 2723.27 0.03 0.05 0.09 -1 -1 0.03 0.017975 0.0162817 122 170 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_075.v common 5.80 vpr 63.09 MiB -1 -1 0.35 18376 13 0.28 -1 -1 32740 -1 -1 23 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64608 31 32 278 310 1 200 86 17 17 289 -1 unnamed_device 23.8 MiB 0.71 1218 7268 1613 5267 388 63.1 MiB 0.08 0.00 8.1563 -164.8 -8.1563 8.1563 0.33 0.000912725 0.00084631 0.0388616 0.0360506 -1 -1 -1 -1 28 3842 43 6.79088e+06 309856 531479. 1839.03 1.58 0.191535 0.167609 23950 126010 -1 3139 20 1751 4676 285838 69135 7.42571 7.42571 -161.774 -7.42571 0 0 648988. 2245.63 0.03 0.10 0.10 -1 -1 0.03 0.0378763 0.033172 138 187 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_076.v common 4.33 vpr 63.07 MiB -1 -1 0.37 18712 14 0.26 -1 -1 32748 -1 -1 21 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64588 32 32 290 322 1 209 85 17 17 289 -1 unnamed_device 23.8 MiB 0.46 1344 6223 1427 4314 482 63.1 MiB 0.08 0.00 8.23738 -172.892 -8.23738 8.23738 0.33 0.000930376 0.000862705 0.0350115 0.0324274 -1 -1 -1 -1 36 3504 22 6.79088e+06 282912 648988. 2245.63 1.39 0.222178 0.192343 25390 158009 -1 2926 20 1296 3771 212954 49473 7.70438 7.70438 -171.066 -7.70438 0 0 828058. 2865.25 0.03 0.09 0.13 -1 -1 0.03 0.0400968 0.0352304 140 196 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_077.v common 4.35 vpr 63.09 MiB -1 -1 0.37 18984 14 0.26 -1 -1 32828 -1 -1 20 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64608 32 32 269 301 1 197 84 17 17 289 -1 unnamed_device 23.9 MiB 0.66 1260 7953 2116 5353 484 63.1 MiB 0.09 0.00 8.52241 -172.234 -8.52241 8.52241 0.35 0.000875643 0.000812302 0.0420262 0.0390167 -1 -1 -1 -1 32 3303 29 6.79088e+06 269440 586450. 2029.24 0.90 0.160781 0.140788 24814 144142 -1 2839 15 1150 3244 192979 45064 7.43457 7.43457 -164.308 -7.43457 0 0 744469. 2576.02 0.03 0.08 0.14 -1 -1 0.03 0.0304238 0.0269292 125 175 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_078.v common 5.29 vpr 63.05 MiB -1 -1 0.28 18968 13 0.31 -1 -1 33184 -1 -1 24 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64560 32 32 296 328 1 224 88 17 17 289 -1 unnamed_device 24.0 MiB 0.86 1508 10813 2963 6776 1074 63.0 MiB 0.12 0.00 8.23594 -170.571 -8.23594 8.23594 0.33 0.000957541 0.000886478 0.0567572 0.0524951 -1 -1 -1 -1 38 3652 29 6.79088e+06 323328 678818. 2348.85 2.06 0.275001 0.240028 25966 169698 -1 2991 19 1456 4176 205663 48034 7.2255 7.2255 -162.719 -7.2255 0 0 902133. 3121.57 0.04 0.09 0.13 -1 -1 0.04 0.0391521 0.0344491 149 202 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_079.v common 3.45 vpr 63.08 MiB -1 -1 0.33 18236 13 0.22 -1 -1 32628 -1 -1 20 30 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64592 30 32 234 266 1 174 82 17 17 289 -1 unnamed_device 23.6 MiB 0.61 1122 9872 2511 5375 1986 63.1 MiB 0.09 0.00 7.03084 -145.753 -7.03084 7.03084 0.25 0.000754124 0.00069787 0.04469 0.041398 -1 -1 -1 -1 30 2730 30 6.79088e+06 269440 556674. 1926.21 0.69 0.144732 0.12695 24526 138013 -1 2242 16 1004 2613 128931 31587 6.15798 6.15798 -142.007 -6.15798 0 0 706193. 2443.58 0.03 0.06 0.11 -1 -1 0.03 0.0267119 0.0235856 105 146 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_080.v common 4.36 vpr 63.17 MiB -1 -1 0.39 18908 13 0.43 -1 -1 32536 -1 -1 24 30 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64688 30 32 291 323 1 222 86 17 17 289 -1 unnamed_device 24.0 MiB 0.57 1366 6323 1376 4581 366 63.2 MiB 0.08 0.00 8.22015 -167.715 -8.22015 8.22015 0.33 0.000970021 0.000899624 0.0365667 0.0339281 -1 -1 -1 -1 30 3811 27 6.79088e+06 323328 556674. 1926.21 1.20 0.157292 0.138178 24526 138013 -1 3100 20 1853 5058 265165 62010 7.01061 7.01061 -161.856 -7.01061 0 0 706193. 2443.58 0.03 0.10 0.11 -1 -1 0.03 0.0405842 0.0356147 151 203 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_081.v common 4.92 vpr 63.37 MiB -1 -1 0.39 18648 14 0.30 -1 -1 32800 -1 -1 20 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64888 32 32 274 306 1 198 84 17 17 289 -1 unnamed_device 24.2 MiB 0.53 1296 7953 2167 5300 486 63.4 MiB 0.10 0.00 8.6007 -177.035 -8.6007 8.6007 0.33 0.000902051 0.000836719 0.0439781 0.0407369 -1 -1 -1 -1 32 3728 44 6.79088e+06 269440 586450. 2029.24 1.85 0.196491 0.171966 24814 144142 -1 3050 19 1278 3895 235017 53907 7.46496 7.46496 -172.667 -7.46496 0 0 744469. 2576.02 0.03 0.09 0.12 -1 -1 0.03 0.0364598 0.0320346 131 180 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_082.v common 4.01 vpr 62.96 MiB -1 -1 0.37 18464 13 0.23 -1 -1 32720 -1 -1 20 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64476 31 32 266 298 1 196 83 17 17 289 -1 unnamed_device 23.8 MiB 0.60 1225 7283 1667 4799 817 63.0 MiB 0.08 0.00 7.72889 -159.149 -7.72889 7.72889 0.33 0.000866856 0.000803336 0.0388787 0.0360607 -1 -1 -1 -1 32 3187 32 6.79088e+06 269440 586450. 2029.24 0.92 0.166151 0.145367 24814 144142 -1 2718 25 1689 5318 376174 113012 7.03513 7.03513 -157.164 -7.03513 0 0 744469. 2576.02 0.03 0.15 0.12 -1 -1 0.03 0.0446857 0.0389953 126 175 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_083.v common 3.96 vpr 63.55 MiB -1 -1 0.40 18680 13 0.21 -1 -1 32700 -1 -1 24 30 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65080 30 32 266 298 1 198 86 17 17 289 -1 unnamed_device 23.8 MiB 0.75 1215 6890 1496 4876 518 63.6 MiB 0.08 0.00 7.69794 -150.629 -7.69794 7.69794 0.33 0.000856881 0.000794264 0.0347451 0.0322125 -1 -1 -1 -1 32 3312 26 6.79088e+06 323328 586450. 2029.24 0.77 0.146017 0.127535 24814 144142 -1 2677 17 1207 3322 190544 44345 6.84722 6.84722 -148.795 -6.84722 0 0 744469. 2576.02 0.03 0.10 0.12 -1 -1 0.03 0.0383358 0.033699 129 178 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_084.v common 6.22 vpr 63.27 MiB -1 -1 0.39 18624 14 0.35 -1 -1 32708 -1 -1 24 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64784 32 32 310 342 1 227 88 17 17 289 -1 unnamed_device 24.1 MiB 0.54 1457 7498 1810 5019 669 63.3 MiB 0.09 0.00 8.74272 -181.503 -8.74272 8.74272 0.33 0.00110578 0.00103877 0.0438548 0.0406359 -1 -1 -1 -1 36 4168 48 6.79088e+06 323328 648988. 2245.63 3.00 0.30114 0.261386 25390 158009 -1 3237 19 1439 4423 260226 61088 7.91932 7.91932 -173.07 -7.91932 0 0 828058. 2865.25 0.03 0.10 0.13 -1 -1 0.03 0.0419448 0.0370455 159 216 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_085.v common 4.53 vpr 63.12 MiB -1 -1 0.39 18764 11 0.27 -1 -1 32812 -1 -1 24 29 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64636 29 32 262 294 1 199 85 17 17 289 -1 unnamed_device 23.9 MiB 0.78 1155 5293 1066 3883 344 63.1 MiB 0.06 0.00 7.11905 -139.183 -7.11905 7.11905 0.33 0.000869954 0.000807687 0.0283019 0.0262913 -1 -1 -1 -1 30 3206 24 6.79088e+06 323328 556674. 1926.21 1.16 0.142678 0.124505 24526 138013 -1 2552 20 1371 4158 193020 46584 6.40052 6.40052 -139.377 -6.40052 0 0 706193. 2443.58 0.03 0.09 0.11 -1 -1 0.03 0.0393804 0.0346667 138 177 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_086.v common 3.95 vpr 63.17 MiB -1 -1 0.30 18084 13 0.14 -1 -1 32512 -1 -1 18 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64688 32 32 222 254 1 175 82 17 17 289 -1 unnamed_device 23.7 MiB 0.51 1052 12186 3970 6295 1921 63.2 MiB 0.11 0.00 7.33183 -169.303 -7.33183 7.33183 0.33 0.000718635 0.00066632 0.0520208 0.0481947 -1 -1 -1 -1 30 2885 19 6.79088e+06 242496 556674. 1926.21 0.84 0.138775 0.12288 24526 138013 -1 2167 15 953 2173 106363 26476 6.33023 6.33023 -159.366 -6.33023 0 0 706193. 2443.58 0.03 0.06 0.11 -1 -1 0.03 0.0245476 0.0217065 102 128 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_087.v common 4.21 vpr 63.04 MiB -1 -1 0.38 18708 14 0.24 -1 -1 32764 -1 -1 19 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64556 32 32 267 299 1 191 83 17 17 289 -1 unnamed_device 23.8 MiB 0.75 1172 7823 1882 5791 150 63.0 MiB 0.09 0.00 8.3612 -169.538 -8.3612 8.3612 0.33 0.000873057 0.000810529 0.0415834 0.0385198 -1 -1 -1 -1 32 3360 34 6.79088e+06 255968 586450. 2029.24 1.04 0.167667 0.146496 24814 144142 -1 2735 15 1142 3214 181491 42685 7.13597 7.13597 -161.638 -7.13597 0 0 744469. 2576.02 0.03 0.08 0.12 -1 -1 0.03 0.0299901 0.0265075 125 173 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_088.v common 5.31 vpr 63.40 MiB -1 -1 0.42 18748 15 0.40 -1 -1 32752 -1 -1 29 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64920 32 32 334 366 1 249 93 17 17 289 -1 unnamed_device 24.4 MiB 0.61 1438 10383 2780 6351 1252 63.4 MiB 0.12 0.00 9.05222 -189.794 -9.05222 9.05222 0.33 0.00107286 0.000993335 0.0575936 0.0532759 -1 -1 -1 -1 38 3747 27 6.79088e+06 390688 678818. 2348.85 1.56 0.285458 0.248427 25966 169698 -1 2981 19 1593 4300 200440 49296 7.88361 7.88361 -180.232 -7.88361 0 0 902133. 3121.57 0.04 0.10 0.14 -1 -1 0.04 0.0447008 0.0395513 170 240 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_089.v common 3.55 vpr 62.91 MiB -1 -1 0.32 18096 11 0.17 -1 -1 32620 -1 -1 18 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64424 32 32 220 252 1 162 82 17 17 289 -1 unnamed_device 23.6 MiB 0.55 933 4888 941 3830 117 62.9 MiB 0.06 0.00 6.76258 -140.409 -6.76258 6.76258 0.33 0.000709779 0.000657244 0.022307 0.0206869 -1 -1 -1 -1 32 2586 35 6.79088e+06 242496 586450. 2029.24 0.79 0.124992 0.108575 24814 144142 -1 1947 20 900 2319 122887 32225 6.10759 6.10759 -137.226 -6.10759 0 0 744469. 2576.02 0.03 0.07 0.12 -1 -1 0.03 0.0299922 0.0263105 98 126 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_090.v common 4.08 vpr 62.77 MiB -1 -1 0.31 18168 12 0.20 -1 -1 33100 -1 -1 23 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64276 31 32 244 276 1 190 86 17 17 289 -1 unnamed_device 23.8 MiB 0.46 1183 12749 3795 7363 1591 62.8 MiB 0.12 0.00 6.54054 -150.799 -6.54054 6.54054 0.33 0.000785102 0.000727287 0.0557194 0.0515086 -1 -1 -1 -1 38 2979 28 6.79088e+06 309856 678818. 2348.85 1.33 0.220305 0.191904 25966 169698 -1 2557 18 1316 3622 183839 43855 5.90384 5.90384 -145.253 -5.90384 0 0 902133. 3121.57 0.04 0.08 0.14 -1 -1 0.04 0.0309677 0.027267 118 153 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_091.v common 5.01 vpr 63.25 MiB -1 -1 0.31 18688 12 0.30 -1 -1 32656 -1 -1 22 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64772 32 32 300 332 1 217 86 17 17 289 -1 unnamed_device 24.1 MiB 0.90 1335 11993 2991 7425 1577 63.3 MiB 0.08 0.00 7.00019 -160.316 -7.00019 7.00019 0.33 0.000446272 0.000410133 0.0361034 0.0332645 -1 -1 -1 -1 30 3633 50 6.79088e+06 296384 556674. 1926.21 1.64 0.159429 0.13955 24526 138013 -1 2958 21 1661 4357 222449 53788 6.45194 6.45194 -160.623 -6.45194 0 0 706193. 2443.58 0.03 0.10 0.11 -1 -1 0.03 0.0433507 0.0380029 148 206 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_092.v common 8.72 vpr 63.54 MiB -1 -1 0.37 18400 12 0.25 -1 -1 32704 -1 -1 22 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65068 32 32 271 303 1 207 86 17 17 289 -1 unnamed_device 23.8 MiB 0.34 1388 7079 1580 4994 505 63.5 MiB 0.09 0.00 7.44212 -156.695 -7.44212 7.44212 0.34 0.00089315 0.000827733 0.0377702 0.0350162 -1 -1 -1 -1 32 4113 42 6.79088e+06 296384 586450. 2029.24 5.99 0.33538 0.289295 24814 144142 -1 3198 20 1454 4612 314410 80422 6.40509 6.40509 -154.6 -6.40509 0 0 744469. 2576.02 0.03 0.12 0.12 -1 -1 0.03 0.0388463 0.0342152 135 177 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_093.v common 6.25 vpr 63.98 MiB -1 -1 0.38 18860 14 0.44 -1 -1 32848 -1 -1 23 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65516 32 32 327 359 1 232 87 17 17 289 -1 unnamed_device 24.4 MiB 1.29 1382 6615 1264 5004 347 64.0 MiB 0.09 0.00 8.7765 -177.486 -8.7765 8.7765 0.34 0.00108762 0.00100721 0.0431326 0.0399583 -1 -1 -1 -1 36 3916 43 6.79088e+06 309856 648988. 2245.63 2.19 0.315103 0.274294 25390 158009 -1 3229 27 2294 7401 401717 106520 7.62495 7.62495 -172.426 -7.62495 0 0 828058. 2865.25 0.03 0.16 0.13 -1 -1 0.03 0.057052 0.049907 170 233 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_094.v common 3.75 vpr 63.05 MiB -1 -1 0.35 18460 12 0.21 -1 -1 32744 -1 -1 19 30 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64564 30 32 246 278 1 190 81 17 17 289 -1 unnamed_device 24.0 MiB 0.46 1191 12681 3782 6660 2239 63.1 MiB 0.13 0.00 8.05817 -151.234 -8.05817 8.05817 0.33 0.000828057 0.000769049 0.0637741 0.0591909 -1 -1 -1 -1 32 3515 26 6.79088e+06 255968 586450. 2029.24 0.97 0.17205 0.151839 24814 144142 -1 2773 17 1320 3637 203053 47640 7.08901 7.08901 -148.49 -7.08901 0 0 744469. 2576.02 0.03 0.05 0.09 -1 -1 0.03 0.0197557 0.0178214 123 158 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_095.v common 3.76 vpr 62.97 MiB -1 -1 0.31 17968 11 0.18 -1 -1 32616 -1 -1 23 27 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64480 27 32 219 251 1 162 82 17 17 289 -1 unnamed_device 23.5 MiB 0.91 965 6668 1740 4270 658 63.0 MiB 0.07 0.00 7.24345 -132.093 -7.24345 7.24345 0.34 0.000711879 0.000660214 0.0299702 0.0277348 -1 -1 -1 -1 30 2425 18 6.79088e+06 309856 556674. 1926.21 0.62 0.115289 0.100889 24526 138013 -1 1999 16 888 2451 114097 28110 5.91082 5.91082 -125.07 -5.91082 0 0 706193. 2443.58 0.03 0.06 0.11 -1 -1 0.03 0.0254251 0.0224481 107 140 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_096.v common 6.32 vpr 63.52 MiB -1 -1 0.43 19084 13 0.43 -1 -1 32924 -1 -1 28 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65040 32 32 380 412 1 269 92 17 17 289 -1 unnamed_device 24.6 MiB 1.06 1593 10442 2400 6565 1477 63.5 MiB 0.14 0.00 7.86582 -158.189 -7.86582 7.86582 0.34 0.00118525 0.00109698 0.0649252 0.0599811 -1 -1 -1 -1 48 4216 50 6.79088e+06 377216 865456. 2994.66 2.32 0.373614 0.325731 27694 206865 -1 3640 34 1984 6021 478274 174501 6.74533 6.74533 -151.473 -6.74533 0 0 1.05005e+06 3633.38 0.04 0.22 0.17 -1 -1 0.04 0.0788045 0.0690335 193 286 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_097.v common 4.90 vpr 63.07 MiB -1 -1 0.39 18696 14 0.25 -1 -1 32820 -1 -1 23 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64580 31 32 277 309 1 195 86 17 17 289 -1 unnamed_device 23.8 MiB 0.45 1178 7457 1609 5387 461 63.1 MiB 0.06 0.00 8.0992 -163.55 -8.0992 8.0992 0.35 0.000414305 0.000382094 0.0244963 0.0226294 -1 -1 -1 -1 34 3086 20 6.79088e+06 309856 618332. 2139.56 1.43 0.205475 0.177109 25102 150614 -1 2653 18 1269 3490 183744 43955 7.17162 7.17162 -161.13 -7.17162 0 0 787024. 2723.27 0.03 0.08 0.12 -1 -1 0.03 0.0353201 0.031103 133 186 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_098.v common 4.35 vpr 62.75 MiB -1 -1 0.35 18436 12 0.14 -1 -1 32460 -1 -1 23 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64252 32 32 229 261 1 175 87 17 17 289 -1 unnamed_device 23.6 MiB 0.55 1035 6231 1251 4710 270 62.7 MiB 0.07 0.00 7.54443 -161.662 -7.54443 7.54443 0.33 0.000757478 0.000702095 0.0275156 0.0255094 -1 -1 -1 -1 36 2756 36 6.79088e+06 309856 648988. 2245.63 1.35 0.194625 0.168215 25390 158009 -1 2323 26 1017 2782 252636 105794 6.55737 6.55737 -152.063 -6.55737 0 0 828058. 2865.25 0.03 0.13 0.13 -1 -1 0.03 0.039208 0.0343393 116 135 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_099.v common 4.49 vpr 63.08 MiB -1 -1 0.37 18412 13 0.27 -1 -1 32816 -1 -1 23 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64596 32 32 263 295 1 191 87 17 17 289 -1 unnamed_device 23.8 MiB 0.72 1255 10839 2895 6507 1437 63.1 MiB 0.11 0.00 7.90761 -161.15 -7.90761 7.90761 0.33 0.000877766 0.000814184 0.0508394 0.0471387 -1 -1 -1 -1 38 3133 24 6.79088e+06 309856 678818. 2348.85 1.31 0.231986 0.201966 25966 169698 -1 2502 17 1144 3372 176736 41321 6.70962 6.70962 -151.347 -6.70962 0 0 902133. 3121.57 0.03 0.08 0.14 -1 -1 0.03 0.0324541 0.0286142 132 169 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_100.v common 5.65 vpr 63.87 MiB -1 -1 0.39 18760 13 0.34 -1 -1 32828 -1 -1 25 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65404 31 32 321 353 1 241 88 17 17 289 -1 unnamed_device 24.1 MiB 0.50 1569 7498 1876 5033 589 63.9 MiB 0.10 0.00 7.49638 -161.35 -7.49638 7.49638 0.33 0.00103033 0.000948898 0.0436807 0.0404419 -1 -1 -1 -1 34 4200 29 6.79088e+06 336800 618332. 2139.56 2.45 0.269742 0.234125 25102 150614 -1 3480 20 1825 5339 282109 66147 6.45553 6.45553 -154.65 -6.45553 0 0 787024. 2723.27 0.03 0.11 0.12 -1 -1 0.03 0.0434504 0.0382276 161 230 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_101.v common 5.09 vpr 62.95 MiB -1 -1 0.35 18548 11 0.26 -1 -1 32756 -1 -1 24 30 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64464 30 32 287 319 1 199 86 17 17 289 -1 unnamed_device 24.0 MiB 1.01 1306 8780 2173 5822 785 63.0 MiB 0.10 0.00 7.37182 -143.193 -7.37182 7.37182 0.33 0.000930935 0.00086312 0.0468007 0.0433826 -1 -1 -1 -1 30 3605 32 6.79088e+06 323328 556674. 1926.21 1.62 0.182073 0.159502 24526 138013 -1 2900 19 1321 4158 222287 52243 6.20832 6.20832 -140.727 -6.20832 0 0 706193. 2443.58 0.03 0.09 0.13 -1 -1 0.03 0.0383101 0.0337621 141 199 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_102.v common 5.14 vpr 63.25 MiB -1 -1 0.40 18612 15 0.34 -1 -1 32776 -1 -1 22 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64768 32 32 296 328 1 214 86 17 17 289 -1 unnamed_device 24.1 MiB 0.64 1352 9725 2491 6491 743 63.2 MiB 0.12 0.00 7.99589 -170.96 -7.99589 7.99589 0.33 0.000966197 0.000894565 0.0541048 0.0501083 -1 -1 -1 -1 34 3753 34 6.79088e+06 296384 618332. 2139.56 1.89 0.282092 0.245632 25102 150614 -1 3122 19 1358 3861 214163 50007 7.08907 7.08907 -163.633 -7.08907 0 0 787024. 2723.27 0.03 0.09 0.12 -1 -1 0.03 0.0391112 0.0343553 149 202 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_103.v common 6.73 vpr 63.18 MiB -1 -1 0.40 18932 13 0.31 -1 -1 32864 -1 -1 22 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64692 32 32 285 317 1 219 86 17 17 289 -1 unnamed_device 24.2 MiB 0.51 1393 7457 1835 5163 459 63.2 MiB 0.09 0.00 8.0837 -176.033 -8.0837 8.0837 0.33 0.000953223 0.000873659 0.0421358 0.0389716 -1 -1 -1 -1 32 4098 38 6.79088e+06 296384 586450. 2029.24 3.58 0.3317 0.287588 24814 144142 -1 3260 20 1413 4323 254651 61352 7.02297 7.02297 -166.496 -7.02297 0 0 744469. 2576.02 0.03 0.10 0.12 -1 -1 0.03 0.0410055 0.0359494 145 191 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_104.v common 3.98 vpr 63.68 MiB -1 -1 0.33 18076 12 0.20 -1 -1 32652 -1 -1 23 29 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65208 29 32 239 271 1 185 84 17 17 289 -1 unnamed_device 23.9 MiB 0.62 1060 4293 816 3315 162 63.7 MiB 0.05 0.00 7.76309 -155.198 -7.76309 7.76309 0.33 0.000770199 0.000714056 0.0212124 0.0197041 -1 -1 -1 -1 28 3246 30 6.79088e+06 309856 531479. 1839.03 1.09 0.127589 0.110864 23950 126010 -1 2497 14 1128 2720 144186 36483 6.79916 6.79916 -153.983 -6.79916 0 0 648988. 2245.63 0.03 0.06 0.14 -1 -1 0.03 0.0250209 0.0221605 115 154 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_105.v common 3.73 vpr 63.08 MiB -1 -1 0.35 18116 11 0.16 -1 -1 32656 -1 -1 19 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64596 32 32 235 267 1 177 83 17 17 289 -1 unnamed_device 23.6 MiB 0.38 1090 11423 2946 7115 1362 63.1 MiB 0.11 0.00 6.71623 -147.472 -6.71623 6.71623 0.34 0.00073697 0.00068283 0.0499338 0.0462918 -1 -1 -1 -1 30 2799 21 6.79088e+06 255968 556674. 1926.21 1.02 0.145452 0.128548 24526 138013 -1 2344 15 1053 2581 129866 31192 5.82123 5.82123 -146.164 -5.82123 0 0 706193. 2443.58 0.04 0.06 0.09 -1 -1 0.04 0.0250429 0.0221432 107 141 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_106.v common 5.58 vpr 63.17 MiB -1 -1 0.33 18400 13 0.30 -1 -1 32800 -1 -1 24 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64684 31 32 294 326 1 212 87 17 17 289 -1 unnamed_device 24.1 MiB 0.78 1434 6231 1372 4195 664 63.2 MiB 0.09 0.00 8.47441 -166.261 -8.47441 8.47441 0.33 0.000941486 0.000872011 0.0424962 0.0392269 -1 -1 -1 -1 36 3938 37 6.79088e+06 323328 648988. 2245.63 2.28 0.27024 0.234624 25390 158009 -1 3232 19 1716 5172 305655 68217 7.3316 7.3316 -157.189 -7.3316 0 0 828058. 2865.25 0.03 0.11 0.10 -1 -1 0.03 0.0382407 0.0335361 149 203 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_107.v common 3.37 vpr 63.05 MiB -1 -1 0.34 18204 10 0.17 -1 -1 33020 -1 -1 20 29 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64568 29 32 219 251 1 165 81 17 17 289 -1 unnamed_device 23.6 MiB 0.47 1046 7606 1999 4615 992 63.1 MiB 0.07 0.00 6.05628 -126.417 -6.05628 6.05628 0.33 0.000710146 0.000658023 0.0337968 0.0312776 -1 -1 -1 -1 32 2736 26 6.79088e+06 269440 586450. 2029.24 0.68 0.127454 0.111524 24814 144142 -1 2193 14 876 2301 124509 30286 5.36333 5.36333 -121.34 -5.36333 0 0 744469. 2576.02 0.03 0.06 0.12 -1 -1 0.03 0.0232293 0.0205654 102 134 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_108.v common 4.12 vpr 63.15 MiB -1 -1 0.33 18168 14 0.19 -1 -1 32572 -1 -1 18 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64664 32 32 239 271 1 180 82 17 17 289 -1 unnamed_device 23.6 MiB 0.95 1126 8804 2275 6068 461 63.1 MiB 0.09 0.00 7.78791 -166.602 -7.78791 7.78791 0.33 0.000768961 0.000712617 0.0413558 0.0383214 -1 -1 -1 -1 30 2897 21 6.79088e+06 242496 556674. 1926.21 0.91 0.141096 0.124468 24526 138013 -1 2392 17 1012 2647 134705 32153 6.95684 6.95684 -160.475 -6.95684 0 0 706193. 2443.58 0.03 0.07 0.11 -1 -1 0.03 0.0288872 0.0255239 107 145 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_109.v common 4.44 vpr 62.93 MiB -1 -1 0.38 18640 13 0.26 -1 -1 32752 -1 -1 21 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64444 31 32 266 298 1 204 84 17 17 289 -1 unnamed_device 23.8 MiB 0.24 1310 3744 753 2762 229 62.9 MiB 0.05 0.00 7.64037 -167.27 -7.64037 7.64037 0.33 0.000868898 0.000806686 0.0212969 0.019815 -1 -1 -1 -1 38 3257 30 6.79088e+06 282912 678818. 2348.85 1.75 0.20882 0.18047 25966 169698 -1 2739 18 1245 3483 175197 41284 6.70957 6.70957 -155.316 -6.70957 0 0 902133. 3121.57 0.04 0.08 0.13 -1 -1 0.04 0.0338765 0.0297904 133 175 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_110.v common 4.05 vpr 63.29 MiB -1 -1 0.33 18208 12 0.15 -1 -1 32712 -1 -1 19 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64812 31 32 225 257 1 168 82 17 17 289 -1 unnamed_device 23.9 MiB 0.58 1144 4888 1060 3409 419 63.3 MiB 0.06 0.00 7.32999 -154.452 -7.32999 7.32999 0.34 0.000718073 0.000665331 0.0223328 0.0207132 -1 -1 -1 -1 38 2565 24 6.79088e+06 255968 678818. 2348.85 1.26 0.174195 0.150771 25966 169698 -1 2180 16 900 2466 125838 29820 6.32248 6.32248 -143.934 -6.32248 0 0 902133. 3121.57 0.03 0.06 0.14 -1 -1 0.03 0.0253876 0.022412 100 134 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_111.v common 5.34 vpr 63.10 MiB -1 -1 0.38 18460 12 0.20 -1 -1 32880 -1 -1 20 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64616 32 32 288 320 1 201 84 17 17 289 -1 unnamed_device 23.9 MiB 1.03 1351 5574 1238 3853 483 63.1 MiB 0.07 0.00 7.19618 -156.652 -7.19618 7.19618 0.33 0.000923457 0.00085618 0.0318411 0.0295537 -1 -1 -1 -1 30 3431 31 6.79088e+06 269440 556674. 1926.21 1.93 0.164455 0.143344 24526 138013 -1 2638 17 1217 3535 171434 40046 6.19718 6.19718 -151.24 -6.19718 0 0 706193. 2443.58 0.03 0.08 0.11 -1 -1 0.03 0.0340684 0.0299865 133 194 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_112.v common 4.42 vpr 63.46 MiB -1 -1 0.42 18596 13 0.28 -1 -1 32740 -1 -1 22 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64984 31 32 282 314 1 208 85 17 17 289 -1 unnamed_device 24.4 MiB 0.61 1393 8827 2233 5380 1214 63.5 MiB 0.10 0.00 7.7426 -165.117 -7.7426 7.7426 0.33 0.000924649 0.000856925 0.0478912 0.0443848 -1 -1 -1 -1 32 4267 47 6.79088e+06 296384 586450. 2029.24 1.20 0.202056 0.176514 24814 144142 -1 3192 25 1399 4276 315105 94535 6.92102 6.92102 -159.936 -6.92102 0 0 744469. 2576.02 0.03 0.13 0.12 -1 -1 0.03 0.0456277 0.0398445 148 191 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_113.v common 7.99 vpr 63.09 MiB -1 -1 0.33 18072 11 0.17 -1 -1 32608 -1 -1 20 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64608 32 32 233 265 1 179 84 17 17 289 -1 unnamed_device 23.7 MiB 0.38 1187 8136 1962 5005 1169 63.1 MiB 0.08 0.00 6.39514 -147.393 -6.39514 6.39514 0.33 0.000746276 0.000690213 0.0361097 0.0334782 -1 -1 -1 -1 34 3002 31 6.79088e+06 269440 618332. 2139.56 5.28 0.390526 0.336423 25102 150614 -1 2448 16 1111 3046 153023 36887 5.73585 5.73585 -142.957 -5.73585 0 0 787024. 2723.27 0.03 0.07 0.12 -1 -1 0.03 0.0273842 0.0242106 110 139 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_114.v common 4.88 vpr 62.88 MiB -1 -1 0.34 18128 13 0.19 -1 -1 32756 -1 -1 17 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64384 32 32 254 286 1 184 81 17 17 289 -1 unnamed_device 23.9 MiB 0.99 1001 6556 1561 4079 916 62.9 MiB 0.08 0.00 7.64726 -161.135 -7.64726 7.64726 0.33 0.000839162 0.000778883 0.034672 0.0321479 -1 -1 -1 -1 34 3415 33 6.79088e+06 229024 618332. 2139.56 1.59 0.230356 0.199937 25102 150614 -1 2487 15 1116 3046 165844 41147 6.81572 6.81572 -158.142 -6.81572 0 0 787024. 2723.27 0.03 0.07 0.12 -1 -1 0.03 0.0293975 0.02602 116 160 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_115.v common 4.47 vpr 63.02 MiB -1 -1 0.21 18424 13 0.25 -1 -1 32948 -1 -1 20 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64528 32 32 285 317 1 209 84 17 17 289 -1 unnamed_device 23.8 MiB 0.83 1405 8136 2197 5546 393 63.0 MiB 0.10 0.00 7.61291 -167.635 -7.61291 7.61291 0.33 0.000917638 0.000851599 0.0445988 0.0413808 -1 -1 -1 -1 34 3486 28 6.79088e+06 269440 618332. 2139.56 1.38 0.237746 0.206319 25102 150614 -1 3029 17 1314 3528 188281 44852 6.98823 6.98823 -165.781 -6.98823 0 0 787024. 2723.27 0.03 0.08 0.12 -1 -1 0.03 0.0344447 0.0304539 140 191 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_116.v common 7.83 vpr 62.88 MiB -1 -1 0.37 18448 11 0.19 -1 -1 33120 -1 -1 22 29 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64392 29 32 243 275 1 183 83 17 17 289 -1 unnamed_device 23.9 MiB 0.57 1156 8183 1784 6001 398 62.9 MiB 0.09 0.00 6.67486 -133.458 -6.67486 6.67486 0.34 0.000798602 0.000739715 0.0395923 0.0367216 -1 -1 -1 -1 34 3333 50 6.79088e+06 296384 618332. 2139.56 5.00 0.342117 0.294249 25102 150614 -1 2492 17 1069 3229 182417 42452 5.78973 5.78973 -129.798 -5.78973 0 0 787024. 2723.27 0.03 0.05 0.09 -1 -1 0.03 0.0183878 0.0166204 120 158 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_117.v common 5.85 vpr 63.89 MiB -1 -1 0.41 18868 14 0.32 -1 -1 33412 -1 -1 23 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65428 32 32 318 350 1 235 87 17 17 289 -1 unnamed_device 24.1 MiB 0.56 1568 4887 902 3684 301 63.9 MiB 0.07 0.00 9.02019 -190.009 -9.02019 9.02019 0.34 0.00104181 0.000961409 0.0318736 0.0295113 -1 -1 -1 -1 36 4105 46 6.79088e+06 309856 648988. 2245.63 2.61 0.292466 0.253271 25390 158009 -1 3306 18 1498 4099 235444 53438 7.68756 7.68756 -176.02 -7.68756 0 0 828058. 2865.25 0.03 0.10 0.13 -1 -1 0.03 0.0414283 0.0365895 161 224 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_118.v common 3.77 vpr 63.05 MiB -1 -1 0.29 17912 12 0.16 -1 -1 32496 -1 -1 20 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64564 31 32 222 254 1 182 83 17 17 289 -1 unnamed_device 23.6 MiB 0.49 1069 9983 2406 6498 1079 63.1 MiB 0.09 0.00 6.74398 -150.531 -6.74398 6.74398 0.33 0.000713695 0.000661577 0.0425082 0.0394239 -1 -1 -1 -1 38 2477 16 6.79088e+06 269440 678818. 2348.85 1.06 0.169114 0.147666 25966 169698 -1 2099 19 1023 2452 121285 30063 5.80973 5.80973 -140.663 -5.80973 0 0 902133. 3121.57 0.03 0.07 0.14 -1 -1 0.03 0.0287622 0.0252832 105 131 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_119.v common 5.67 vpr 63.24 MiB -1 -1 0.41 18960 13 0.27 -1 -1 32740 -1 -1 24 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64760 32 32 282 314 1 205 88 17 17 289 -1 unnamed_device 24.2 MiB 0.68 1353 7498 1790 4732 976 63.2 MiB 0.09 0.00 7.75713 -161.394 -7.75713 7.75713 0.33 0.000912191 0.000843063 0.0390966 0.0362118 -1 -1 -1 -1 30 3780 34 6.79088e+06 323328 556674. 1926.21 2.39 0.182229 0.159879 24526 138013 -1 2885 25 1450 4119 269491 86454 6.38406 6.38406 -149.354 -6.38406 0 0 706193. 2443.58 0.03 0.13 0.13 -1 -1 0.03 0.0470945 0.041314 142 188 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_120.v common 5.93 vpr 63.31 MiB -1 -1 0.37 18476 13 0.19 -1 -1 32480 -1 -1 21 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64832 32 32 238 270 1 176 85 17 17 289 -1 unnamed_device 23.6 MiB 0.49 1076 13477 4348 6661 2468 63.3 MiB 0.12 0.00 7.25589 -159.283 -7.25589 7.25589 0.33 0.000756098 0.000700931 0.0588878 0.0545222 -1 -1 -1 -1 30 3123 26 6.79088e+06 282912 556674. 1926.21 3.02 0.271189 0.236323 24526 138013 -1 2266 34 1070 2718 202893 86943 6.37287 6.37287 -154.089 -6.37287 0 0 706193. 2443.58 0.03 0.12 0.11 -1 -1 0.03 0.0471732 0.041042 110 144 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_121.v common 4.32 vpr 63.19 MiB -1 -1 0.38 18500 12 0.22 -1 -1 32908 -1 -1 21 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64708 32 32 269 301 1 191 85 17 17 289 -1 unnamed_device 23.9 MiB 0.70 1303 4549 873 3383 293 63.2 MiB 0.06 0.00 7.30283 -162.375 -7.30283 7.30283 0.33 0.000888848 0.000822816 0.0253321 0.0234824 -1 -1 -1 -1 32 3445 38 6.79088e+06 282912 586450. 2029.24 1.25 0.161062 0.139859 24814 144142 -1 2818 15 1118 3494 207596 47116 6.41977 6.41977 -154.705 -6.41977 0 0 744469. 2576.02 0.03 0.08 0.12 -1 -1 0.03 0.0309073 0.0273464 130 175 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_122.v common 6.01 vpr 64.19 MiB -1 -1 0.43 19032 15 0.47 -1 -1 33188 -1 -1 29 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65728 32 32 350 382 1 253 93 17 17 289 -1 unnamed_device 24.4 MiB 0.80 1534 15843 4073 9876 1894 64.2 MiB 0.20 0.00 9.26624 -195.349 -9.26624 9.26624 0.33 0.00114344 0.00105332 0.0911082 0.0837944 -1 -1 -1 -1 36 4424 47 6.79088e+06 390688 648988. 2245.63 2.27 0.375645 0.327516 25390 158009 -1 3688 20 2137 6480 362108 83352 8.22795 8.22795 -186.796 -8.22795 0 0 828058. 2865.25 0.03 0.13 0.13 -1 -1 0.03 0.050897 0.0448721 188 256 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_123.v common 3.06 vpr 62.77 MiB -1 -1 0.29 17780 10 0.10 -1 -1 32524 -1 -1 13 30 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64272 30 32 174 206 1 132 75 17 17 289 -1 unnamed_device 23.2 MiB 0.33 648 7817 1916 5610 291 62.8 MiB 0.07 0.00 5.06221 -116.743 -5.06221 5.06221 0.33 0.000563723 0.000524027 0.0299828 0.0278843 -1 -1 -1 -1 32 2039 40 6.79088e+06 175136 586450. 2029.24 0.68 0.114078 0.0994672 24814 144142 -1 1601 16 716 1708 100263 26208 4.63261 4.63261 -119.111 -4.63261 0 0 744469. 2576.02 0.03 0.05 0.12 -1 -1 0.03 0.0195277 0.0171444 66 86 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_124.v common 3.60 vpr 62.99 MiB -1 -1 0.33 18044 13 0.25 -1 -1 32752 -1 -1 18 30 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64500 30 32 228 260 1 177 80 17 17 289 -1 unnamed_device 23.5 MiB 0.41 977 10744 3187 5417 2140 63.0 MiB 0.10 0.00 7.96187 -158.87 -7.96187 7.96187 0.33 0.000750275 0.000696038 0.0497983 0.0462312 -1 -1 -1 -1 32 2995 31 6.79088e+06 242496 586450. 2029.24 0.81 0.151842 0.133787 24814 144142 -1 2325 17 1091 2646 145817 36247 6.70968 6.70968 -150.968 -6.70968 0 0 744469. 2576.02 0.03 0.07 0.12 -1 -1 0.03 0.0286791 0.0253381 105 140 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_125.v common 3.30 vpr 62.97 MiB -1 -1 0.33 18140 12 0.20 -1 -1 32584 -1 -1 23 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64484 32 32 264 296 1 194 87 17 17 289 -1 unnamed_device 23.9 MiB 0.41 1191 8343 1834 5899 610 63.0 MiB 0.05 0.00 7.27293 -163.071 -7.27293 7.27293 0.25 0.00038507 0.000354792 0.0196472 0.0181254 -1 -1 -1 -1 30 3106 25 6.79088e+06 309856 556674. 1926.21 0.84 0.0907862 0.0794694 24526 138013 -1 2573 21 1226 3263 167166 40100 6.38057 6.38057 -156.322 -6.38057 0 0 706193. 2443.58 0.03 0.08 0.11 -1 -1 0.03 0.036423 0.0318925 123 170 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_126.v common 3.38 vpr 62.72 MiB -1 -1 0.29 17916 9 0.13 -1 -1 32532 -1 -1 21 25 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64224 25 32 183 215 1 134 78 17 17 289 -1 unnamed_device 23.2 MiB 0.43 671 10370 3067 6609 694 62.7 MiB 0.08 0.00 4.9514 -94.4324 -4.9514 4.9514 0.33 0.000615257 0.000571318 0.0408205 0.0379069 -1 -1 -1 -1 30 1890 37 6.79088e+06 282912 556674. 1926.21 0.85 0.129678 0.113622 24526 138013 -1 1568 21 801 2264 112822 27985 4.52731 4.52731 -97.1804 -4.52731 0 0 706193. 2443.58 0.03 0.06 0.11 -1 -1 0.03 0.0264838 0.0231001 88 110 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_127.v common 4.33 vpr 63.77 MiB -1 -1 0.41 18696 12 0.26 -1 -1 32760 -1 -1 25 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65304 32 32 300 332 1 225 89 17 17 289 -1 unnamed_device 24.1 MiB 0.37 1417 10979 2888 6604 1487 63.8 MiB 0.12 0.00 7.28043 -165.449 -7.28043 7.28043 0.33 0.000948654 0.000879079 0.0577509 0.0533375 -1 -1 -1 -1 32 4329 46 6.79088e+06 336800 586450. 2029.24 1.37 0.214521 0.187812 24814 144142 -1 3568 20 1714 4669 291667 67052 6.45537 6.45537 -165.272 -6.45537 0 0 744469. 2576.02 0.03 0.11 0.12 -1 -1 0.03 0.0397058 0.0352465 149 206 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_128.v common 4.87 vpr 63.24 MiB -1 -1 0.42 18912 13 0.31 -1 -1 32660 -1 -1 23 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64756 31 32 290 322 1 212 86 17 17 289 -1 unnamed_device 24.2 MiB 0.69 1276 4622 899 3442 281 63.2 MiB 0.06 0.00 8.4013 -172.333 -8.4013 8.4013 0.34 0.000957164 0.000887561 0.0274008 0.0254206 -1 -1 -1 -1 34 3859 32 6.79088e+06 309856 618332. 2139.56 1.54 0.247346 0.214205 25102 150614 -1 3160 20 1508 4342 240659 56587 7.44571 7.44571 -165.463 -7.44571 0 0 787024. 2723.27 0.03 0.10 0.12 -1 -1 0.03 0.0400711 0.0351655 150 199 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_001.v common 4.66 vpr 63.26 MiB -1 -1 0.25 18400 1 0.03 -1 -1 30288 -1 -1 31 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64776 32 32 354 285 1 207 95 17 17 289 -1 unnamed_device 24.3 MiB 2.00 1147 13487 3979 8243 1265 63.3 MiB 0.14 0.00 5.50182 -164.026 -5.50182 5.50182 0.34 0.000705202 0.000655291 0.0467177 0.0434114 -1 -1 -1 -1 32 2728 20 6.87369e+06 433189 586450. 2029.24 0.62 0.129199 0.114098 25474 144626 -1 2265 21 1426 2341 142873 35717 4.41635 4.41635 -150.731 -4.41635 0 0 744469. 2576.02 0.03 0.07 0.12 -1 -1 0.03 0.0287546 0.02508 142 50 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_002.v common 5.03 vpr 63.37 MiB -1 -1 0.26 18456 1 0.03 -1 -1 30332 -1 -1 26 30 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64888 30 32 363 293 1 200 88 17 17 289 -1 unnamed_device 24.3 MiB 2.30 1061 9643 2380 6571 692 63.4 MiB 0.11 0.00 4.6679 -135.422 -4.6679 4.6679 0.34 0.000711323 0.000661654 0.0375569 0.0349315 -1 -1 -1 -1 32 2649 25 6.87369e+06 363320 586450. 2029.24 0.63 0.125702 0.110353 25474 144626 -1 2164 20 1672 2542 188123 44059 3.94996 3.94996 -135.641 -3.94996 0 0 744469. 2576.02 0.03 0.08 0.12 -1 -1 0.03 0.027851 0.0241949 138 63 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_003.v common 5.22 vpr 63.32 MiB -1 -1 0.24 18292 1 0.03 -1 -1 30300 -1 -1 22 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64836 32 32 299 247 1 190 86 17 17 289 -1 unnamed_device 24.2 MiB 2.47 1071 10103 2739 6714 650 63.3 MiB 0.11 0.00 4.40708 -122.555 -4.40708 4.40708 0.33 0.000629333 0.000585698 0.0354594 0.0329613 -1 -1 -1 -1 26 2574 26 6.87369e+06 307425 503264. 1741.40 0.72 0.118252 0.103432 24322 120374 -1 2297 22 1469 1935 150534 35893 4.03026 4.03026 -129.655 -4.03026 0 0 618332. 2139.56 0.03 0.07 0.10 -1 -1 0.03 0.0264026 0.0229004 119 29 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_004.v common 3.33 vpr 63.73 MiB -1 -1 0.19 18540 1 0.03 -1 -1 30416 -1 -1 29 29 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65260 29 32 308 248 1 172 90 17 17 289 -1 unnamed_device 24.1 MiB 0.86 892 10140 2486 6760 894 63.7 MiB 0.11 0.00 4.60038 -123.753 -4.60038 4.60038 0.33 0.000633932 0.000589803 0.0345913 0.0320554 -1 -1 -1 -1 32 2149 25 6.87369e+06 405241 586450. 2029.24 0.58 0.111836 0.0978729 25474 144626 -1 1602 29 1438 2570 137658 37022 3.4118 3.4118 -110.106 -3.4118 0 0 744469. 2576.02 0.03 0.08 0.12 -1 -1 0.03 0.0330296 0.0285014 124 31 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_005.v common 4.32 vpr 63.72 MiB -1 -1 0.24 18380 1 0.04 -1 -1 30476 -1 -1 27 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65248 32 32 336 268 1 181 91 17 17 289 -1 unnamed_device 24.0 MiB 1.54 976 16411 4511 9390 2510 63.7 MiB 0.15 0.00 4.59502 -132.541 -4.59502 4.59502 0.32 0.000701689 0.000651586 0.0483871 0.0448305 -1 -1 -1 -1 32 2485 25 6.87369e+06 377294 586450. 2029.24 0.64 0.133884 0.117944 25474 144626 -1 1977 21 1412 2809 153940 39270 3.7944 3.7944 -130.207 -3.7944 0 0 744469. 2576.02 0.03 0.07 0.12 -1 -1 0.03 0.0280558 0.024416 132 34 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_006.v common 3.84 vpr 63.56 MiB -1 -1 0.26 18328 1 0.03 -1 -1 30288 -1 -1 32 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65088 32 32 366 295 1 189 96 17 17 289 -1 unnamed_device 24.6 MiB 1.24 1097 10170 2509 6996 665 63.6 MiB 0.11 0.00 3.40153 -118.348 -3.40153 3.40153 0.34 0.000718937 0.00066798 0.0357972 0.0332493 -1 -1 -1 -1 28 2662 22 6.87369e+06 447163 531479. 1839.03 0.56 0.122325 0.107375 24610 126494 -1 2380 23 1512 2419 162698 39915 3.07761 3.07761 -124.592 -3.07761 0 0 648988. 2245.63 0.03 0.08 0.10 -1 -1 0.03 0.0315109 0.0273292 138 58 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_007.v common 4.43 vpr 63.20 MiB -1 -1 0.23 18008 1 0.03 -1 -1 30656 -1 -1 20 27 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64716 27 32 259 221 1 141 79 17 17 289 -1 unnamed_device 23.6 MiB 1.99 786 12585 3639 7320 1626 63.2 MiB 0.11 0.00 3.84098 -106.539 -3.84098 3.84098 0.33 0.000553599 0.000515588 0.0428643 0.0399218 -1 -1 -1 -1 30 1555 20 6.87369e+06 279477 556674. 1926.21 0.52 0.107252 0.0947091 25186 138497 -1 1281 20 867 1509 82468 20053 2.68236 2.68236 -96.0091 -2.68236 0 0 706193. 2443.58 0.03 0.05 0.11 -1 -1 0.03 0.0214985 0.0186147 97 34 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_008.v common 3.35 vpr 63.07 MiB -1 -1 0.23 17800 1 0.03 -1 -1 30108 -1 -1 33 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64588 31 32 271 219 1 164 96 17 17 289 -1 unnamed_device 23.7 MiB 0.84 902 4914 784 3802 328 63.1 MiB 0.05 0.00 3.54531 -102.78 -3.54531 3.54531 0.33 0.00059783 0.000555993 0.0152668 0.0141924 -1 -1 -1 -1 32 2055 19 6.87369e+06 461137 586450. 2029.24 0.54 0.0855222 0.0741675 25474 144626 -1 1766 15 820 1459 82055 20708 2.83496 2.83496 -95.423 -2.83496 0 0 744469. 2576.02 0.03 0.05 0.12 -1 -1 0.03 0.0189379 0.0165601 119 4 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_009.v common 5.17 vpr 63.12 MiB -1 -1 0.23 18340 1 0.03 -1 -1 30180 -1 -1 20 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64632 31 32 317 271 1 175 83 17 17 289 -1 unnamed_device 24.0 MiB 1.95 910 8723 2060 6322 341 63.1 MiB 0.09 0.00 3.31917 -111.486 -3.31917 3.31917 0.34 0.00063441 0.000590038 0.0329474 0.0306471 -1 -1 -1 -1 32 2150 19 6.87369e+06 279477 586450. 2029.24 0.58 0.106092 0.093061 25474 144626 -1 1748 20 1043 1565 98545 24803 2.91151 2.91151 -112.578 -2.91151 0 0 744469. 2576.02 0.03 0.06 0.12 -1 -1 0.03 0.0244429 0.0212104 110 64 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_010.v common 6.12 vpr 63.35 MiB -1 -1 0.22 18120 1 0.03 -1 -1 30076 -1 -1 17 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64872 32 32 298 248 1 162 81 17 17 289 -1 unnamed_device 23.6 MiB 3.62 974 4631 910 3488 233 63.4 MiB 0.06 0.00 3.98344 -131.884 -3.98344 3.98344 0.33 0.000626678 0.000583326 0.0185195 0.0172494 -1 -1 -1 -1 30 2081 18 6.87369e+06 237555 556674. 1926.21 0.54 0.0883308 0.0768845 25186 138497 -1 1827 21 1179 2019 124096 30001 2.82686 2.82686 -118.966 -2.82686 0 0 706193. 2443.58 0.03 0.07 0.11 -1 -1 0.03 0.0253455 0.0219646 107 34 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_011.v common 5.19 vpr 63.25 MiB -1 -1 0.25 18396 1 0.03 -1 -1 30308 -1 -1 18 30 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64764 30 32 303 262 1 148 80 17 17 289 -1 unnamed_device 23.6 MiB 2.64 812 9368 2251 6434 683 63.2 MiB 0.10 0.00 3.87398 -114.403 -3.87398 3.87398 0.33 0.000612514 0.000569112 0.0353925 0.0329109 -1 -1 -1 -1 26 1876 20 6.87369e+06 251529 503264. 1741.40 0.61 0.106442 0.0934101 24322 120374 -1 1676 21 1167 1874 125726 31327 3.02256 3.02256 -110.18 -3.02256 0 0 618332. 2139.56 0.03 0.04 0.11 -1 -1 0.03 0.0147437 0.0129497 99 63 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_012.v common 5.15 vpr 63.40 MiB -1 -1 0.24 18128 1 0.03 -1 -1 30064 -1 -1 18 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64920 32 32 276 237 1 171 82 17 17 289 -1 unnamed_device 23.8 MiB 2.09 828 9338 2215 6345 778 63.4 MiB 0.09 0.00 3.67066 -113.699 -3.67066 3.67066 0.34 0.000590743 0.000549309 0.0329731 0.0306745 -1 -1 -1 -1 28 2764 43 6.87369e+06 251529 531479. 1839.03 1.09 0.127315 0.111059 24610 126494 -1 1961 20 1277 1700 137309 35657 3.08581 3.08581 -116.238 -3.08581 0 0 648988. 2245.63 0.03 0.06 0.10 -1 -1 0.03 0.0231728 0.0200967 102 34 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_013.v common 5.92 vpr 63.31 MiB -1 -1 0.24 18388 1 0.03 -1 -1 30272 -1 -1 25 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64828 32 32 344 272 1 209 89 17 17 289 -1 unnamed_device 24.0 MiB 3.13 1183 15533 4141 9304 2088 63.3 MiB 0.16 0.00 4.34223 -139.708 -4.34223 4.34223 0.33 0.00069306 0.000644152 0.0570398 0.0529631 -1 -1 -1 -1 32 2874 34 6.87369e+06 349346 586450. 2029.24 0.65 0.153012 0.134399 25474 144626 -1 2474 22 1783 2732 186740 45669 3.34811 3.34811 -132.681 -3.34811 0 0 744469. 2576.02 0.03 0.08 0.12 -1 -1 0.03 0.0288664 0.0250603 139 34 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_014.v common 4.68 vpr 63.14 MiB -1 -1 0.25 18496 1 0.03 -1 -1 30424 -1 -1 31 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64656 32 32 363 295 1 181 95 17 17 289 -1 unnamed_device 23.9 MiB 2.12 926 9599 2091 6833 675 63.1 MiB 0.11 0.00 4.83358 -141.45 -4.83358 4.83358 0.33 0.000713803 0.000663884 0.0340711 0.0316564 -1 -1 -1 -1 30 2718 27 6.87369e+06 433189 556674. 1926.21 0.65 0.123589 0.10815 25186 138497 -1 1936 20 1247 1954 117467 30151 4.17226 4.17226 -144.094 -4.17226 0 0 706193. 2443.58 0.03 0.04 0.08 -1 -1 0.03 0.014747 0.0130134 133 61 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_015.v common 4.22 vpr 63.17 MiB -1 -1 0.23 18132 1 0.03 -1 -1 30400 -1 -1 21 29 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64684 29 32 248 215 1 142 82 17 17 289 -1 unnamed_device 23.9 MiB 1.70 711 8982 2096 6475 411 63.2 MiB 0.08 0.00 3.07868 -92.9683 -3.07868 3.07868 0.33 0.000544701 0.000507131 0.0291861 0.0271418 -1 -1 -1 -1 30 1671 24 6.87369e+06 293451 556674. 1926.21 0.54 0.09513 0.0832085 25186 138497 -1 1338 20 791 1267 69154 17413 2.61566 2.61566 -91.2171 -2.61566 0 0 706193. 2443.58 0.04 0.06 0.11 -1 -1 0.04 0.0269583 0.0234237 94 27 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_016.v common 5.24 vpr 63.32 MiB -1 -1 0.24 18324 1 0.03 -1 -1 30280 -1 -1 24 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64844 32 32 370 297 1 191 88 17 17 289 -1 unnamed_device 24.0 MiB 1.91 1084 8668 1982 6147 539 63.3 MiB 0.10 0.00 3.90567 -127.707 -3.90567 3.90567 0.34 0.000723408 0.000672104 0.0345784 0.0321445 -1 -1 -1 -1 26 3264 40 6.87369e+06 335372 503264. 1741.40 1.11 0.146809 0.128202 24322 120374 -1 2399 26 1846 3235 222891 55287 3.67301 3.67301 -130.22 -3.67301 0 0 618332. 2139.56 0.03 0.10 0.10 -1 -1 0.03 0.0345238 0.0298759 135 58 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_017.v common 5.98 vpr 63.31 MiB -1 -1 0.14 18332 1 0.03 -1 -1 30080 -1 -1 23 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64828 32 32 338 269 1 204 87 17 17 289 -1 unnamed_device 24.0 MiB 3.16 1041 6615 1468 4357 790 63.3 MiB 0.09 0.00 4.18227 -133.396 -4.18227 4.18227 0.34 0.000705916 0.000657167 0.0262471 0.0244203 -1 -1 -1 -1 30 2762 25 6.87369e+06 321398 556674. 1926.21 0.64 0.11193 0.0976763 25186 138497 -1 1904 18 1127 1583 94947 23325 3.4571 3.4571 -119.55 -3.4571 0 0 706193. 2443.58 0.03 0.06 0.11 -1 -1 0.03 0.0250568 0.0218957 136 34 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_018.v common 4.85 vpr 63.07 MiB -1 -1 0.17 18456 1 0.03 -1 -1 30260 -1 -1 29 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64584 32 32 323 276 1 156 93 17 17 289 -1 unnamed_device 23.9 MiB 2.21 961 14583 4168 8594 1821 63.1 MiB 0.13 0.00 2.88754 -107.489 -2.88754 2.88754 0.34 0.000653129 0.000606854 0.0473539 0.0439444 -1 -1 -1 -1 26 2202 23 6.87369e+06 405241 503264. 1741.40 0.71 0.126735 0.111657 24322 120374 -1 1966 21 1193 2019 142695 34226 2.22712 2.22712 -101.935 -2.22712 0 0 618332. 2139.56 0.03 0.07 0.10 -1 -1 0.03 0.0260927 0.0225956 110 65 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_019.v common 3.10 vpr 63.05 MiB -1 -1 0.16 18180 1 0.03 -1 -1 30184 -1 -1 15 30 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64560 30 32 222 206 1 117 77 17 17 289 -1 unnamed_device 23.7 MiB 0.66 689 12139 3691 7050 1398 63.0 MiB 0.09 0.00 2.38778 -83.5564 -2.38778 2.38778 0.34 0.000495747 0.000461876 0.038516 0.0358607 -1 -1 -1 -1 32 1442 23 6.87369e+06 209608 586450. 2029.24 0.50 0.0985935 0.0870204 25474 144626 -1 1219 18 585 811 57943 14080 2.01382 2.01382 -84.6315 -2.01382 0 0 744469. 2576.02 0.03 0.04 0.12 -1 -1 0.03 0.0179977 0.0155952 71 34 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_020.v common 5.39 vpr 63.12 MiB -1 -1 0.24 18340 1 0.03 -1 -1 30384 -1 -1 21 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64632 31 32 291 243 1 178 84 17 17 289 -1 unnamed_device 24.1 MiB 2.65 926 13626 5074 6419 2133 63.1 MiB 0.14 0.00 4.99433 -147.969 -4.99433 4.99433 0.33 0.00061624 0.000572644 0.0477352 0.04437 -1 -1 -1 -1 32 2269 22 6.87369e+06 293451 586450. 2029.24 0.61 0.120075 0.105959 25474 144626 -1 1823 19 1094 1607 107959 26850 3.64821 3.64821 -133.065 -3.64821 0 0 744469. 2576.02 0.03 0.06 0.12 -1 -1 0.03 0.0229829 0.0199895 114 34 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_021.v common 3.77 vpr 63.66 MiB -1 -1 0.24 18488 1 0.03 -1 -1 30524 -1 -1 35 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65192 32 32 342 271 1 181 99 17 17 289 -1 unnamed_device 23.9 MiB 0.98 1087 13779 3849 8710 1220 63.7 MiB 0.14 0.00 4.23509 -137.221 -4.23509 4.23509 0.41 0.000700481 0.000649025 0.0450399 0.041707 -1 -1 -1 -1 32 2379 21 6.87369e+06 489084 586450. 2029.24 0.59 0.126272 0.11115 25474 144626 -1 1994 21 1330 2152 132705 31355 3.6621 3.6621 -128.504 -3.6621 0 0 744469. 2576.02 0.03 0.07 0.12 -1 -1 0.03 0.0278376 0.0241709 137 34 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_022.v common 4.99 vpr 63.32 MiB -1 -1 0.24 18356 1 0.03 -1 -1 30268 -1 -1 23 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64836 32 32 372 300 1 206 87 17 17 289 -1 unnamed_device 24.2 MiB 2.22 1217 10647 2492 7086 1069 63.3 MiB 0.12 0.00 4.31025 -134.205 -4.31025 4.31025 0.33 0.000725524 0.000675176 0.0426199 0.0396102 -1 -1 -1 -1 32 2810 25 6.87369e+06 321398 586450. 2029.24 0.63 0.131393 0.11554 25474 144626 -1 2136 16 1278 2034 131099 31365 3.74246 3.74246 -129.143 -3.74246 0 0 744469. 2576.02 0.03 0.06 0.12 -1 -1 0.03 0.0238439 0.020874 138 62 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_023.v common 4.12 vpr 62.94 MiB -1 -1 0.22 18228 1 0.02 -1 -1 30548 -1 -1 17 26 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64448 26 32 190 182 1 108 75 17 17 289 -1 unnamed_device 23.6 MiB 1.58 480 8133 3281 4323 529 62.9 MiB 0.06 0.00 2.38158 -69.4238 -2.38158 2.38158 0.34 0.00047137 0.000434655 0.0191877 0.0175956 -1 -1 -1 -1 28 1220 24 6.87369e+06 237555 531479. 1839.03 0.52 0.0720773 0.0625468 24610 126494 -1 1036 17 707 988 65067 17945 2.18312 2.18312 -75.9258 -2.18312 0 0 648988. 2245.63 0.03 0.04 0.10 -1 -1 0.03 0.014802 0.0128753 67 30 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_024.v common 3.76 vpr 63.39 MiB -1 -1 0.22 17868 1 0.03 -1 -1 30344 -1 -1 23 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64908 32 32 285 227 1 169 87 17 17 289 -1 unnamed_device 23.8 MiB 1.15 1002 13719 4614 6837 2268 63.4 MiB 0.14 0.00 4.57022 -130.066 -4.57022 4.57022 0.33 0.00061934 0.000575759 0.0461905 0.0429273 -1 -1 -1 -1 30 2201 25 6.87369e+06 321398 556674. 1926.21 0.60 0.122115 0.10779 25186 138497 -1 1821 21 1157 2162 119285 29514 3.7041 3.7041 -123.476 -3.7041 0 0 706193. 2443.58 0.03 0.07 0.11 -1 -1 0.03 0.0254677 0.0220817 119 3 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_025.v common 2.97 vpr 63.02 MiB -1 -1 0.12 17552 1 0.02 -1 -1 30008 -1 -1 12 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64536 32 32 173 169 1 114 76 17 17 289 -1 unnamed_device 23.8 MiB 0.62 529 9036 3698 5030 308 63.0 MiB 0.07 0.00 2.64533 -79.7813 -2.64533 2.64533 0.34 0.000423617 0.000392859 0.0254041 0.0235785 -1 -1 -1 -1 28 1296 30 6.87369e+06 167686 531479. 1839.03 0.56 0.0819974 0.0717561 24610 126494 -1 1030 14 522 612 45566 12360 2.19737 2.19737 -79.5748 -2.19737 0 0 648988. 2245.63 0.03 0.05 0.10 -1 -1 0.03 0.0206278 0.0179992 65 3 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_026.v common 3.58 vpr 63.64 MiB -1 -1 0.23 18288 1 0.03 -1 -1 30140 -1 -1 30 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65172 32 32 300 245 1 169 94 17 17 289 -1 unnamed_device 24.0 MiB 0.98 1049 16069 4575 9607 1887 63.6 MiB 0.15 0.00 4.58208 -129.699 -4.58208 4.58208 0.33 0.000638368 0.000594438 0.0502991 0.046754 -1 -1 -1 -1 26 2413 24 6.87369e+06 419215 503264. 1741.40 0.61 0.127158 0.112378 24322 120374 -1 2176 20 1211 1947 151498 35401 3.8557 3.8557 -129.062 -3.8557 0 0 618332. 2139.56 0.03 0.07 0.10 -1 -1 0.03 0.0251252 0.0218207 120 24 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_027.v common 3.62 vpr 63.05 MiB -1 -1 0.23 17932 1 0.03 -1 -1 30524 -1 -1 31 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64560 32 32 297 233 1 177 95 17 17 289 -1 unnamed_device 24.0 MiB 0.87 1082 17591 5231 9950 2410 63.0 MiB 0.16 0.00 3.50229 -113.775 -3.50229 3.50229 0.33 0.000639768 0.000594765 0.0541889 0.0503085 -1 -1 -1 -1 26 2515 20 6.87369e+06 433189 503264. 1741.40 0.72 0.128188 0.113567 24322 120374 -1 2222 18 1165 2078 132215 32194 3.07956 3.07956 -114.993 -3.07956 0 0 618332. 2139.56 0.03 0.06 0.10 -1 -1 0.03 0.0225942 0.019692 130 3 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_028.v common 4.40 vpr 63.16 MiB -1 -1 0.23 18276 1 0.03 -1 -1 30356 -1 -1 29 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64672 32 32 338 277 1 183 93 17 17 289 -1 unnamed_device 23.9 MiB 1.44 1133 16473 4660 9482 2331 63.2 MiB 0.16 0.00 4.87388 -140.171 -4.87388 4.87388 0.33 0.000682364 0.000634741 0.0554064 0.0515128 -1 -1 -1 -1 26 2643 22 6.87369e+06 405241 503264. 1741.40 0.82 0.140683 0.124572 24322 120374 -1 2312 23 1560 2788 194361 46343 4.01396 4.01396 -136.27 -4.01396 0 0 618332. 2139.56 0.03 0.09 0.10 -1 -1 0.03 0.0299455 0.0259759 128 50 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_029.v common 3.34 vpr 63.30 MiB -1 -1 0.23 18104 1 0.03 -1 -1 30096 -1 -1 18 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64816 32 32 284 241 1 148 82 17 17 289 -1 unnamed_device 23.7 MiB 0.94 856 12720 4032 6930 1758 63.3 MiB 0.12 0.00 3.07458 -105.313 -3.07458 3.07458 0.33 0.000608 0.000559447 0.0450373 0.0417759 -1 -1 -1 -1 32 1770 20 6.87369e+06 251529 586450. 2029.24 0.53 0.114315 0.100881 25474 144626 -1 1498 21 757 1288 84508 20239 2.64866 2.64866 -104.259 -2.64866 0 0 744469. 2576.02 0.03 0.03 0.08 -1 -1 0.03 0.0130009 0.0114168 101 34 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_030.v common 3.53 vpr 63.14 MiB -1 -1 0.14 18236 1 0.03 -1 -1 30272 -1 -1 25 30 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64652 30 32 262 227 1 138 87 17 17 289 -1 unnamed_device 23.6 MiB 1.11 850 14103 4319 8139 1645 63.1 MiB 0.12 0.00 3.14772 -102.363 -3.14772 3.14772 0.33 0.00056828 0.000529209 0.0435607 0.0405281 -1 -1 -1 -1 32 1755 31 6.87369e+06 349346 586450. 2029.24 0.57 0.118019 0.103831 25474 144626 -1 1498 19 881 1432 93880 22924 2.79396 2.79396 -97.0612 -2.79396 0 0 744469. 2576.02 0.03 0.05 0.12 -1 -1 0.03 0.0210251 0.018223 97 34 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_031.v common 3.40 vpr 63.08 MiB -1 -1 0.16 18000 1 0.02 -1 -1 30160 -1 -1 24 28 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64596 28 32 260 223 1 140 84 17 17 289 -1 unnamed_device 23.5 MiB 0.98 762 14175 5132 6824 2219 63.1 MiB 0.12 0.00 3.46791 -98.5079 -3.46791 3.46791 0.34 0.000563734 0.000522844 0.045193 0.0418736 -1 -1 -1 -1 32 1793 20 6.87369e+06 335372 586450. 2029.24 0.55 0.110531 0.0973165 25474 144626 -1 1515 22 1016 1832 127699 30852 2.85696 2.85696 -98.0028 -2.85696 0 0 744469. 2576.02 0.03 0.06 0.12 -1 -1 0.03 0.023617 0.0204119 98 34 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_032.v common 3.74 vpr 63.33 MiB -1 -1 0.16 17904 1 0.03 -1 -1 30268 -1 -1 18 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64848 32 32 253 210 1 156 82 17 17 289 -1 unnamed_device 23.7 MiB 1.29 755 8448 1958 6116 374 63.3 MiB 0.09 0.00 3.92118 -117.55 -3.92118 3.92118 0.33 0.000566959 0.000528139 0.0291684 0.0271468 -1 -1 -1 -1 28 2136 22 6.87369e+06 251529 531479. 1839.03 0.64 0.0969963 0.0849626 24610 126494 -1 1789 21 1303 2060 129617 33406 3.24686 3.24686 -120.536 -3.24686 0 0 648988. 2245.63 0.03 0.07 0.11 -1 -1 0.03 0.0233859 0.0202504 101 3 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_033.v common 3.22 vpr 63.34 MiB -1 -1 0.21 18088 1 0.03 -1 -1 30404 -1 -1 26 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64856 31 32 271 231 1 149 89 17 17 289 -1 unnamed_device 23.7 MiB 0.85 947 11771 3021 7217 1533 63.3 MiB 0.11 0.00 3.40475 -107.115 -3.40475 3.40475 0.34 0.000611176 0.000561225 0.0377071 0.0349827 -1 -1 -1 -1 32 2054 22 6.87369e+06 363320 586450. 2029.24 0.56 0.10753 0.0944819 25474 144626 -1 1803 18 928 1643 117337 27902 2.95826 2.95826 -108.892 -2.95826 0 0 744469. 2576.02 0.03 0.03 0.08 -1 -1 0.03 0.0114211 0.0100919 102 30 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_034.v common 4.89 vpr 63.20 MiB -1 -1 0.17 18508 1 0.03 -1 -1 30520 -1 -1 25 29 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64712 29 32 291 250 1 154 86 17 17 289 -1 unnamed_device 23.6 MiB 2.42 855 9536 2217 6358 961 63.2 MiB 0.09 0.00 3.08002 -99.9202 -3.08002 3.08002 0.34 0.000605347 0.000562439 0.0322847 0.0300207 -1 -1 -1 -1 32 1836 20 6.87369e+06 349346 586450. 2029.24 0.54 0.101683 0.0890847 25474 144626 -1 1618 17 896 1401 87699 22004 2.36147 2.36147 -96.2223 -2.36147 0 0 744469. 2576.02 0.03 0.05 0.12 -1 -1 0.03 0.0208019 0.0180997 105 54 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_035.v common 5.60 vpr 63.82 MiB -1 -1 0.22 18412 1 0.04 -1 -1 30340 -1 -1 40 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65356 32 32 367 282 1 201 104 17 17 289 -1 unnamed_device 24.2 MiB 2.99 1201 11572 2628 7875 1069 63.8 MiB 0.12 0.00 4.28409 -125.895 -4.28409 4.28409 0.33 0.000745621 0.000691639 0.0376247 0.0349383 -1 -1 -1 -1 32 2850 21 6.87369e+06 558954 586450. 2029.24 0.60 0.123608 0.108597 25474 144626 -1 2283 22 1202 2387 140467 34356 3.5931 3.5931 -122.354 -3.5931 0 0 744469. 2576.02 0.03 0.08 0.12 -1 -1 0.03 0.0309075 0.0268465 156 29 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_036.v common 5.65 vpr 63.77 MiB -1 -1 0.25 18384 1 0.03 -1 -1 30256 -1 -1 40 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65304 32 32 391 311 1 194 104 17 17 289 -1 unnamed_device 24.1 MiB 2.85 1115 17428 4398 11199 1831 63.8 MiB 0.18 0.00 4.01296 -135.521 -4.01296 4.01296 0.33 0.000766942 0.000704452 0.0562864 0.0519881 -1 -1 -1 -1 32 2421 26 6.87369e+06 558954 586450. 2029.24 0.61 0.150049 0.132322 25474 144626 -1 2065 20 1509 2448 142727 34833 3.01616 3.01616 -125.596 -3.01616 0 0 744469. 2576.02 0.03 0.08 0.12 -1 -1 0.03 0.029391 0.0255786 149 65 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_037.v common 4.36 vpr 63.29 MiB -1 -1 0.22 18292 1 0.13 -1 -1 30024 -1 -1 18 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64804 31 32 279 237 1 166 81 17 17 289 -1 unnamed_device 23.6 MiB 1.83 846 9881 2610 5928 1343 63.3 MiB 0.10 0.00 4.09163 -121.619 -4.09163 4.09163 0.33 0.000593945 0.000552927 0.0353443 0.0329006 -1 -1 -1 -1 32 1941 25 6.87369e+06 251529 586450. 2029.24 0.56 0.108321 0.0951512 25474 144626 -1 1646 21 1100 1628 113634 27943 2.96331 2.96331 -109.173 -2.96331 0 0 744469. 2576.02 0.03 0.04 0.08 -1 -1 0.03 0.0136148 0.011982 105 34 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_038.v common 5.10 vpr 63.34 MiB -1 -1 0.20 18388 1 0.03 -1 -1 30396 -1 -1 26 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64856 31 32 370 297 1 187 89 17 17 289 -1 unnamed_device 24.3 MiB 2.43 1023 15533 5566 7049 2918 63.3 MiB 0.16 0.00 3.72294 -120.106 -3.72294 3.72294 0.33 0.000718031 0.000666124 0.0592263 0.0550182 -1 -1 -1 -1 30 2608 22 6.87369e+06 363320 556674. 1926.21 0.67 0.14449 0.127836 25186 138497 -1 2002 16 1255 2178 123141 30081 3.01531 3.01531 -116.913 -3.01531 0 0 706193. 2443.58 0.03 0.06 0.11 -1 -1 0.03 0.0236042 0.0206111 136 61 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_039.v common 6.30 vpr 63.29 MiB -1 -1 0.23 18360 1 0.03 -1 -1 30336 -1 -1 29 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64804 31 32 377 302 1 237 92 17 17 289 -1 unnamed_device 24.3 MiB 3.21 1226 11477 3074 7440 963 63.3 MiB 0.14 0.00 5.94301 -174.677 -5.94301 5.94301 0.33 0.000740882 0.00068947 0.0435873 0.0404978 -1 -1 -1 -1 32 3381 27 6.87369e+06 405241 586450. 2029.24 0.86 0.135821 0.119293 25474 144626 -1 2594 21 2065 3065 259228 59072 4.91379 4.91379 -168.168 -4.91379 0 0 744469. 2576.02 0.03 0.09 0.12 -1 -1 0.03 0.030074 0.0261518 156 64 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_040.v common 10.36 vpr 63.25 MiB -1 -1 0.13 18256 1 0.03 -1 -1 30432 -1 -1 28 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64772 31 32 383 305 1 212 91 17 17 289 -1 unnamed_device 24.2 MiB 3.73 1111 18247 5857 8950 3440 63.3 MiB 0.17 0.00 5.17369 -157.317 -5.17369 5.17369 0.34 0.000735997 0.000683017 0.0685617 0.0636389 -1 -1 -1 -1 32 3441 45 6.87369e+06 391268 586450. 2029.24 4.57 0.366723 0.317795 25474 144626 -1 2256 24 1622 2535 185379 47271 4.9157 4.9157 -166.109 -4.9157 0 0 744469. 2576.02 0.03 0.09 0.12 -1 -1 0.03 0.0333739 0.0289693 151 64 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_041.v common 5.01 vpr 63.19 MiB -1 -1 0.19 18320 1 0.03 -1 -1 30352 -1 -1 28 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64704 31 32 352 285 1 186 91 17 17 289 -1 unnamed_device 24.0 MiB 2.47 1131 11311 2943 7349 1019 63.2 MiB 0.13 0.00 4.13563 -130.877 -4.13563 4.13563 0.33 0.000699135 0.000649874 0.0415874 0.0386624 -1 -1 -1 -1 32 2600 24 6.87369e+06 391268 586450. 2029.24 0.59 0.128261 0.113076 25474 144626 -1 2128 18 1230 2196 131110 32142 3.01051 3.01051 -116.588 -3.01051 0 0 744469. 2576.02 0.04 0.07 0.13 -1 -1 0.04 0.0280873 0.0248281 132 55 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_042.v common 4.67 vpr 63.59 MiB -1 -1 0.14 18176 1 0.04 -1 -1 30420 -1 -1 22 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65116 32 32 291 242 1 183 86 17 17 289 -1 unnamed_device 24.0 MiB 2.08 1141 9158 2504 6028 626 63.6 MiB 0.10 0.00 4.45965 -121.916 -4.45965 4.45965 0.33 0.00062293 0.000575167 0.0320274 0.0298167 -1 -1 -1 -1 26 2762 22 6.87369e+06 307425 503264. 1741.40 0.76 0.106328 0.0931794 24322 120374 -1 2331 25 1513 2202 176135 41792 4.13656 4.13656 -128.468 -4.13656 0 0 618332. 2139.56 0.03 0.08 0.10 -1 -1 0.03 0.0285776 0.0247106 114 27 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_043.v common 6.01 vpr 64.14 MiB -1 -1 0.27 18596 1 0.03 -1 -1 30352 -1 -1 40 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65676 32 32 457 356 1 225 104 17 17 289 -1 unnamed_device 24.4 MiB 2.95 1251 16208 4389 10718 1101 64.1 MiB 0.18 0.00 4.91341 -158.695 -4.91341 4.91341 0.34 0.000867676 0.00080734 0.0602878 0.0560236 -1 -1 -1 -1 26 3607 38 6.87369e+06 558954 503264. 1741.40 0.89 0.190334 0.167176 24322 120374 -1 2874 24 2090 3334 245919 58359 4.21636 4.21636 -157.314 -4.21636 0 0 618332. 2139.56 0.03 0.11 0.07 -1 -1 0.03 0.0366054 0.0320578 173 87 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_044.v common 4.91 vpr 63.22 MiB -1 -1 0.23 18128 1 0.03 -1 -1 30180 -1 -1 20 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64740 31 32 261 225 1 148 83 17 17 289 -1 unnamed_device 23.7 MiB 1.65 712 6743 1427 4646 670 63.2 MiB 0.07 0.00 3.53695 -102.057 -3.53695 3.53695 0.33 0.000580111 0.000533635 0.0235301 0.0218269 -1 -1 -1 -1 30 1801 19 6.87369e+06 279477 556674. 1926.21 1.25 0.14987 0.128847 25186 138497 -1 1472 24 1139 2012 112446 28814 2.71766 2.71766 -99.2166 -2.71766 0 0 706193. 2443.58 0.03 0.06 0.11 -1 -1 0.03 0.025589 0.0220302 95 28 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_045.v common 5.49 vpr 63.11 MiB -1 -1 0.21 18396 1 0.03 -1 -1 30176 -1 -1 25 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64620 31 32 337 267 1 207 88 17 17 289 -1 unnamed_device 23.9 MiB 2.51 1167 9448 2299 6357 792 63.1 MiB 0.12 0.00 4.84783 -145.415 -4.84783 4.84783 0.33 0.000681899 0.000634009 0.0364431 0.0338906 -1 -1 -1 -1 26 3222 39 6.87369e+06 349346 503264. 1741.40 0.88 0.136534 0.11933 24322 120374 -1 2636 21 1907 2825 215476 51329 4.38896 4.38896 -148.594 -4.38896 0 0 618332. 2139.56 0.03 0.08 0.08 -1 -1 0.03 0.0276589 0.0240477 139 34 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_046.v common 4.53 vpr 63.29 MiB -1 -1 0.23 18428 1 0.02 -1 -1 30416 -1 -1 32 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64804 32 32 349 284 1 183 96 17 17 289 -1 unnamed_device 24.0 MiB 1.74 1161 10170 2713 6697 760 63.3 MiB 0.12 0.00 3.7235 -118.305 -3.7235 3.7235 0.33 0.000703426 0.000654268 0.0347901 0.0323485 -1 -1 -1 -1 26 2873 22 6.87369e+06 447163 503264. 1741.40 0.65 0.1171 0.102669 24322 120374 -1 2466 20 1440 2530 178173 43125 3.35021 3.35021 -123.042 -3.35021 0 0 618332. 2139.56 0.03 0.08 0.10 -1 -1 0.03 0.0267417 0.0232409 132 53 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_047.v common 3.82 vpr 63.13 MiB -1 -1 0.22 17884 1 0.03 -1 -1 30036 -1 -1 27 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64648 32 32 291 230 1 175 91 17 17 289 -1 unnamed_device 24.0 MiB 1.00 1037 12535 3539 7032 1964 63.1 MiB 0.12 0.00 4.26579 -130.11 -4.26579 4.26579 0.34 0.000634287 0.000590436 0.0406376 0.037797 -1 -1 -1 -1 32 2381 20 6.87369e+06 377294 586450. 2029.24 0.59 0.11394 0.10047 25474 144626 -1 2075 22 1239 2409 149946 36230 3.6841 3.6841 -125.065 -3.6841 0 0 744469. 2576.02 0.03 0.07 0.12 -1 -1 0.03 0.0262414 0.0227869 123 3 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_048.v common 5.51 vpr 63.22 MiB -1 -1 0.22 18364 1 0.03 -1 -1 30296 -1 -1 24 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64736 32 32 353 287 1 203 88 17 17 289 -1 unnamed_device 24.0 MiB 2.80 1201 14908 4043 8823 2042 63.2 MiB 0.16 0.00 4.51686 -135.518 -4.51686 4.51686 0.34 0.000707348 0.000657522 0.056763 0.0527529 -1 -1 -1 -1 26 2883 29 6.87369e+06 335372 503264. 1741.40 0.71 0.151137 0.133189 24322 120374 -1 2338 21 1528 2122 151377 36588 3.24291 3.24291 -125.294 -3.24291 0 0 618332. 2139.56 0.03 0.08 0.10 -1 -1 0.03 0.029332 0.0254611 133 55 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_049.v common 6.24 vpr 63.14 MiB -1 -1 0.26 18368 1 0.03 -1 -1 30236 -1 -1 33 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64652 32 32 361 291 1 189 97 17 17 289 -1 unnamed_device 24.1 MiB 2.80 942 18079 4845 10579 2655 63.1 MiB 0.17 0.00 3.80724 -119.205 -3.80724 3.80724 0.33 0.000719091 0.000668366 0.0611155 0.0567946 -1 -1 -1 -1 32 2842 49 6.87369e+06 461137 586450. 2029.24 0.76 0.175295 0.154435 25474 144626 -1 2003 21 1296 2243 161130 40238 3.17181 3.17181 -117.395 -3.17181 0 0 744469. 2576.02 0.03 0.08 0.12 -1 -1 0.03 0.0299406 0.0260509 137 55 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_050.v common 5.43 vpr 63.39 MiB -1 -1 0.26 18356 1 0.03 -1 -1 30236 -1 -1 35 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64916 32 32 382 305 1 193 99 17 17 289 -1 unnamed_device 24.3 MiB 2.75 1194 15147 4115 8922 2110 63.4 MiB 0.17 0.00 4.12873 -137.061 -4.12873 4.12873 0.33 0.000747128 0.000694047 0.0516993 0.0480117 -1 -1 -1 -1 30 2637 23 6.87369e+06 489084 556674. 1926.21 0.62 0.140245 0.123846 25186 138497 -1 2186 20 1312 2080 127606 30703 3.18081 3.18081 -123.292 -3.18081 0 0 706193. 2443.58 0.03 0.07 0.11 -1 -1 0.03 0.0284563 0.0247655 145 62 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_051.v common 3.96 vpr 63.45 MiB -1 -1 0.26 18084 1 0.03 -1 -1 30416 -1 -1 33 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64968 32 32 306 248 1 170 97 17 17 289 -1 unnamed_device 24.3 MiB 0.96 1051 16969 4458 10747 1764 63.4 MiB 0.16 0.00 4.25889 -127.121 -4.25889 4.25889 0.33 0.000643879 0.000599022 0.0513577 0.0476883 -1 -1 -1 -1 28 2418 26 6.87369e+06 461137 531479. 1839.03 0.59 0.132297 0.11702 24610 126494 -1 2119 22 1403 2481 165711 40053 4.2163 4.2163 -131.586 -4.2163 0 0 648988. 2245.63 0.03 0.07 0.10 -1 -1 0.03 0.0267192 0.0231603 124 24 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_052.v common 4.58 vpr 63.15 MiB -1 -1 0.18 18544 1 0.03 -1 -1 30256 -1 -1 23 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64664 32 32 319 257 1 203 87 17 17 289 -1 unnamed_device 24.0 MiB 1.82 1159 5847 1196 4159 492 63.1 MiB 0.07 0.00 4.90813 -141.116 -4.90813 4.90813 0.33 0.000655955 0.000610109 0.0221425 0.0206032 -1 -1 -1 -1 30 2614 20 6.87369e+06 321398 556674. 1926.21 0.61 0.0978835 0.0853734 25186 138497 -1 2189 21 1298 1910 108067 26664 3.78346 3.78346 -130.411 -3.78346 0 0 706193. 2443.58 0.03 0.06 0.11 -1 -1 0.03 0.026572 0.023122 131 29 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_053.v common 4.84 vpr 63.18 MiB -1 -1 0.15 18304 1 0.03 -1 -1 30300 -1 -1 24 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64696 31 32 373 299 1 204 87 17 17 289 -1 unnamed_device 23.9 MiB 2.11 1104 15639 5017 7583 3039 63.2 MiB 0.17 0.00 4.75448 -143.415 -4.75448 4.75448 0.34 0.000721909 0.000671142 0.0613266 0.0569853 -1 -1 -1 -1 32 2855 22 6.87369e+06 335372 586450. 2029.24 0.69 0.149738 0.132769 25474 144626 -1 2208 19 1430 2340 173817 40610 3.83796 3.83796 -133.557 -3.83796 0 0 744469. 2576.02 0.03 0.08 0.12 -1 -1 0.03 0.030116 0.0262036 140 62 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_054.v common 5.03 vpr 63.30 MiB -1 -1 0.14 18384 1 0.03 -1 -1 30284 -1 -1 22 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64816 32 32 387 315 1 194 86 17 17 289 -1 unnamed_device 24.2 MiB 2.41 1107 13883 4421 7374 2088 63.3 MiB 0.15 0.00 4.4264 -134.375 -4.4264 4.4264 0.34 0.00074745 0.000694485 0.0572042 0.0531062 -1 -1 -1 -1 32 2766 23 6.87369e+06 307425 586450. 2029.24 0.63 0.14684 0.129797 25474 144626 -1 2283 20 1421 2543 162506 40189 3.63536 3.63536 -132.707 -3.63536 0 0 744469. 2576.02 0.03 0.08 0.12 -1 -1 0.03 0.0293206 0.0255442 134 77 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_055.v common 3.49 vpr 63.16 MiB -1 -1 0.22 18112 1 0.03 -1 -1 30340 -1 -1 23 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64676 32 32 251 219 1 141 87 17 17 289 -1 unnamed_device 23.7 MiB 0.88 781 8151 1829 5687 635 63.2 MiB 0.08 0.00 3.42581 -102.974 -3.42581 3.42581 0.41 0.000559902 0.000521562 0.0254085 0.0236473 -1 -1 -1 -1 28 1904 23 6.87369e+06 321398 531479. 1839.03 0.53 0.0929223 0.0810831 24610 126494 -1 1688 22 1081 1762 117647 29623 2.79596 2.79596 -101.105 -2.79596 0 0 648988. 2245.63 0.03 0.06 0.10 -1 -1 0.03 0.0233409 0.0201884 93 23 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_056.v common 4.41 vpr 63.22 MiB -1 -1 0.25 18552 1 0.03 -1 -1 30108 -1 -1 20 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64736 32 32 341 285 1 188 84 17 17 289 -1 unnamed_device 24.0 MiB 1.74 910 13260 3607 7806 1847 63.2 MiB 0.14 0.00 3.77904 -129.086 -3.77904 3.77904 0.33 0.000677957 0.000630665 0.0508368 0.047249 -1 -1 -1 -1 32 2421 25 6.87369e+06 279477 586450. 2029.24 0.62 0.133094 0.117462 25474 144626 -1 1923 21 1469 2059 133480 33321 3.30611 3.30611 -126.077 -3.30611 0 0 744469. 2576.02 0.03 0.07 0.12 -1 -1 0.03 0.0269363 0.0233703 120 65 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_057.v common 5.27 vpr 63.93 MiB -1 -1 0.25 18328 1 0.03 -1 -1 30320 -1 -1 27 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65460 32 32 387 293 1 235 91 17 17 289 -1 unnamed_device 24.2 MiB 2.26 1446 16003 4513 9679 1811 63.9 MiB 0.20 0.00 5.45062 -164.1 -5.45062 5.45062 0.33 0.000765113 0.000710511 0.0625287 0.0580806 -1 -1 -1 -1 28 3827 27 6.87369e+06 377294 531479. 1839.03 0.95 0.162884 0.144247 24610 126494 -1 3174 24 2379 3636 266572 63430 5.026 5.026 -170.437 -5.026 0 0 648988. 2245.63 0.03 0.11 0.11 -1 -1 0.03 0.0356458 0.0310264 163 31 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_058.v common 5.19 vpr 63.83 MiB -1 -1 0.22 18408 1 0.03 -1 -1 30368 -1 -1 34 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65364 32 32 340 270 1 185 98 17 17 289 -1 unnamed_device 24.0 MiB 2.64 1118 12923 3108 8715 1100 63.8 MiB 0.14 0.00 4.49891 -142.201 -4.49891 4.49891 0.33 0.000673492 0.000619904 0.0430244 0.0399706 -1 -1 -1 -1 32 2521 22 6.87369e+06 475111 586450. 2029.24 0.58 0.126419 0.1116 25474 144626 -1 2072 19 1267 2113 137525 33579 3.11326 3.11326 -127.341 -3.11326 0 0 744469. 2576.02 0.03 0.07 0.12 -1 -1 0.03 0.0256752 0.0223967 137 34 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_059.v common 3.23 vpr 63.53 MiB -1 -1 0.24 18052 1 0.03 -1 -1 30460 -1 -1 25 30 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65052 30 32 278 235 1 150 87 17 17 289 -1 unnamed_device 23.8 MiB 0.67 780 11991 2894 8475 622 63.5 MiB 0.11 0.00 3.57685 -110.542 -3.57685 3.57685 0.30 0.00059148 0.000550047 0.0366114 0.0339228 -1 -1 -1 -1 26 2085 23 6.87369e+06 349346 503264. 1741.40 0.76 0.10767 0.0943904 24322 120374 -1 1811 21 1236 2012 147312 38902 3.10156 3.10156 -113.453 -3.10156 0 0 618332. 2139.56 0.03 0.07 0.10 -1 -1 0.03 0.023601 0.0204161 104 34 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_060.v common 6.87 vpr 63.43 MiB -1 -1 0.27 18568 1 0.03 -1 -1 30284 -1 -1 27 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64956 32 32 431 332 1 239 91 17 17 289 -1 unnamed_device 24.5 MiB 4.02 1420 13147 3569 8315 1263 63.4 MiB 0.16 0.00 5.92629 -174.407 -5.92629 5.92629 0.34 0.000833342 0.00077516 0.0564343 0.0524045 -1 -1 -1 -1 32 3147 27 6.87369e+06 377294 586450. 2029.24 0.69 0.163689 0.144051 25474 144626 -1 2602 19 1701 2677 174677 41715 4.7336 4.7336 -161.132 -4.7336 0 0 744469. 2576.02 0.03 0.08 0.12 -1 -1 0.03 0.0308763 0.0269051 166 65 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_061.v common 5.42 vpr 63.79 MiB -1 -1 0.24 18388 1 0.03 -1 -1 30364 -1 -1 35 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65316 32 32 336 268 1 182 99 17 17 289 -1 unnamed_device 24.0 MiB 2.76 1022 11043 2817 7461 765 63.8 MiB 0.11 0.00 4.68232 -141.336 -4.68232 4.68232 0.33 0.000696088 0.000647253 0.0357086 0.0331238 -1 -1 -1 -1 32 2244 25 6.87369e+06 489084 586450. 2029.24 0.59 0.120339 0.105641 25474 144626 -1 1837 21 1382 2159 118015 30016 3.5788 3.5788 -126.007 -3.5788 0 0 744469. 2576.02 0.03 0.07 0.12 -1 -1 0.03 0.0276469 0.0240155 135 34 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_062.v common 4.03 vpr 63.44 MiB -1 -1 0.22 17936 1 0.03 -1 -1 30292 -1 -1 28 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64960 32 32 231 199 1 142 92 17 17 289 -1 unnamed_device 23.9 MiB 0.76 952 13754 3685 8569 1500 63.4 MiB 0.12 0.00 3.65166 -105.903 -3.65166 3.65166 0.34 0.000538237 0.000500843 0.0381477 0.0354746 -1 -1 -1 -1 28 2055 22 6.87369e+06 391268 531479. 1839.03 0.54 0.102196 0.0900138 24610 126494 -1 1741 19 874 1554 114632 26729 3.03561 3.03561 -105.274 -3.03561 0 0 648988. 2245.63 0.03 0.06 0.08 -1 -1 0.03 0.0203082 0.0175966 96 3 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_063.v common 4.89 vpr 63.26 MiB -1 -1 0.23 18412 1 0.03 -1 -1 30272 -1 -1 37 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64776 32 32 349 273 1 191 101 17 17 289 -1 unnamed_device 24.0 MiB 2.00 1239 18196 5620 10238 2338 63.3 MiB 0.18 0.00 5.34161 -141.066 -5.34161 5.34161 0.33 0.000710511 0.000657709 0.0583585 0.0538307 -1 -1 -1 -1 30 2783 24 6.87369e+06 517032 556674. 1926.21 0.72 0.154647 0.136888 25186 138497 -1 2319 21 1461 2924 184023 42728 4.22195 4.22195 -135.723 -4.22195 0 0 706193. 2443.58 0.03 0.08 0.11 -1 -1 0.03 0.0286229 0.0248525 145 29 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_064.v common 3.54 vpr 63.56 MiB -1 -1 0.15 17904 1 0.03 -1 -1 30144 -1 -1 21 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65084 32 32 247 207 1 153 85 17 17 289 -1 unnamed_device 23.9 MiB 1.05 897 15337 5119 7874 2344 63.6 MiB 0.13 0.00 3.56305 -113.438 -3.56305 3.56305 0.33 0.000555907 0.000516935 0.048281 0.0448719 -1 -1 -1 -1 32 2070 20 6.87369e+06 293451 586450. 2029.24 0.56 0.113008 0.100078 25474 144626 -1 1815 21 1262 2238 153889 35786 2.87996 2.87996 -110.843 -2.87996 0 0 744469. 2576.02 0.03 0.07 0.13 -1 -1 0.03 0.0224254 0.0194167 99 3 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_065.v common 4.50 vpr 63.21 MiB -1 -1 0.24 18168 1 0.03 -1 -1 30436 -1 -1 34 30 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64732 30 32 278 235 1 151 96 17 17 289 -1 unnamed_device 23.6 MiB 2.07 912 16302 4828 9136 2338 63.2 MiB 0.08 0.00 3.98176 -118.667 -3.98176 3.98176 0.26 0.000276471 0.000248271 0.0217191 0.01981 -1 -1 -1 -1 26 2091 22 6.87369e+06 475111 503264. 1741.40 0.50 0.0611662 0.0536977 24322 120374 -1 1886 19 1130 2030 131294 33386 3.10226 3.10226 -114.681 -3.10226 0 0 618332. 2139.56 0.03 0.07 0.10 -1 -1 0.03 0.0221492 0.0191797 109 34 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_066.v common 5.18 vpr 63.14 MiB -1 -1 0.26 18392 1 0.03 -1 -1 30332 -1 -1 26 29 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64652 29 32 355 287 1 200 87 17 17 289 -1 unnamed_device 23.9 MiB 2.47 1138 9879 2524 6508 847 63.1 MiB 0.11 0.00 4.16737 -125.588 -4.16737 4.16737 0.34 0.00070545 0.000656964 0.038101 0.0354197 -1 -1 -1 -1 26 3080 23 6.87369e+06 363320 503264. 1741.40 0.65 0.124906 0.109698 24322 120374 -1 2586 20 1688 2528 198148 46939 3.83206 3.83206 -130.566 -3.83206 0 0 618332. 2139.56 0.03 0.08 0.10 -1 -1 0.03 0.0271976 0.0236497 136 62 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_067.v common 4.61 vpr 63.30 MiB -1 -1 0.14 18396 1 0.03 -1 -1 30300 -1 -1 26 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64820 32 32 358 289 1 183 90 17 17 289 -1 unnamed_device 24.0 MiB 2.07 1034 14763 4115 8879 1769 63.3 MiB 0.15 0.00 4.56255 -145.294 -4.56255 4.56255 0.33 0.000706084 0.000656237 0.0540242 0.050208 -1 -1 -1 -1 32 2336 21 6.87369e+06 363320 586450. 2029.24 0.63 0.138549 0.122618 25474 144626 -1 1904 17 1252 1923 121500 28801 3.85766 3.85766 -135.319 -3.85766 0 0 744469. 2576.02 0.03 0.04 0.08 -1 -1 0.03 0.0134867 0.0119686 132 54 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_068.v common 5.03 vpr 63.16 MiB -1 -1 0.26 18412 1 0.03 -1 -1 30232 -1 -1 29 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64676 32 32 353 285 1 188 93 17 17 289 -1 unnamed_device 23.9 MiB 2.18 1032 17103 5602 8670 2831 63.2 MiB 0.17 0.00 4.79103 -139.615 -4.79103 4.79103 0.34 0.000696183 0.000646015 0.0590853 0.0548123 -1 -1 -1 -1 32 2900 27 6.87369e+06 405241 586450. 2029.24 0.67 0.149928 0.132477 25474 144626 -1 2176 23 1449 2597 174377 41794 3.66236 3.66236 -128.606 -3.66236 0 0 744469. 2576.02 0.03 0.08 0.12 -1 -1 0.03 0.0307027 0.0267017 134 51 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_069.v common 4.97 vpr 63.34 MiB -1 -1 0.12 18092 1 0.03 -1 -1 30112 -1 -1 17 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64856 32 32 276 237 1 165 81 17 17 289 -1 unnamed_device 23.7 MiB 2.62 947 9706 2619 6448 639 63.3 MiB 0.10 0.00 4.51686 -127.927 -4.51686 4.51686 0.34 0.000594314 0.000552804 0.0348864 0.0324832 -1 -1 -1 -1 32 2103 29 6.87369e+06 237555 586450. 2029.24 0.57 0.11248 0.0986961 25474 144626 -1 1866 21 1041 1496 114762 27029 3.13531 3.13531 -117.494 -3.13531 0 0 744469. 2576.02 0.03 0.04 0.08 -1 -1 0.03 0.0134532 0.0118711 101 34 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_070.v common 4.98 vpr 63.09 MiB -1 -1 0.25 18468 1 0.03 -1 -1 30400 -1 -1 20 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64608 31 32 319 272 1 176 83 17 17 289 -1 unnamed_device 24.0 MiB 2.28 815 11963 2932 8103 928 63.1 MiB 0.11 0.00 3.7214 -117.821 -3.7214 3.7214 0.33 0.000642969 0.000598055 0.0446753 0.0415087 -1 -1 -1 -1 32 2447 35 6.87369e+06 279477 586450. 2029.24 0.65 0.132911 0.116764 25474 144626 -1 1648 18 1255 1811 115960 30273 3.13061 3.13061 -113.813 -3.13061 0 0 744469. 2576.02 0.03 0.06 0.12 -1 -1 0.03 0.023017 0.0200541 110 64 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_071.v common 4.91 vpr 63.10 MiB -1 -1 0.25 18340 1 0.03 -1 -1 30372 -1 -1 34 30 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64612 30 32 329 273 1 167 96 17 17 289 -1 unnamed_device 23.9 MiB 2.19 1016 17616 5582 9654 2380 63.1 MiB 0.16 0.00 3.48905 -102.473 -3.48905 3.48905 0.34 0.000658679 0.000611852 0.055243 0.0512742 -1 -1 -1 -1 28 2346 23 6.87369e+06 475111 531479. 1839.03 0.56 0.135181 0.119563 24610 126494 -1 2025 22 1317 2333 143046 35830 2.93056 2.93056 -101.97 -2.93056 0 0 648988. 2245.63 0.03 0.07 0.10 -1 -1 0.03 0.0274558 0.0237741 124 57 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_072.v common 4.74 vpr 63.03 MiB -1 -1 0.23 18160 1 0.03 -1 -1 30408 -1 -1 35 28 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64544 28 32 277 229 1 156 95 17 17 289 -1 unnamed_device 23.7 MiB 1.62 942 17375 5412 9917 2046 63.0 MiB 0.14 0.00 4.15879 -107.762 -4.15879 4.15879 0.33 0.000596877 0.000555385 0.0497932 0.046256 -1 -1 -1 -1 26 2158 21 6.87369e+06 489084 503264. 1741.40 0.68 0.128929 0.113776 24322 120374 -1 1940 81 3637 6717 511772 117111 3.947 3.947 -114.579 -3.947 0 0 618332. 2139.56 0.03 0.21 0.07 -1 -1 0.03 0.0759938 0.0645077 117 27 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_073.v common 5.24 vpr 63.37 MiB -1 -1 0.12 18380 1 0.03 -1 -1 30424 -1 -1 18 30 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64892 30 32 317 269 1 156 80 17 17 289 -1 unnamed_device 24.0 MiB 2.72 914 13496 4233 7612 1651 63.4 MiB 0.14 0.00 3.85608 -120.401 -3.85608 3.85608 0.34 0.000630011 0.000585172 0.051381 0.0476878 -1 -1 -1 -1 32 2066 24 6.87369e+06 251529 586450. 2029.24 0.61 0.132137 0.116563 25474 144626 -1 1808 22 1276 2281 150695 35758 3.09126 3.09126 -120.425 -3.09126 0 0 744469. 2576.02 0.03 0.07 0.12 -1 -1 0.03 0.0273207 0.0236964 105 63 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_074.v common 4.59 vpr 63.08 MiB -1 -1 0.24 18356 1 0.03 -1 -1 30072 -1 -1 20 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64592 32 32 335 282 1 189 84 17 17 289 -1 unnamed_device 23.9 MiB 2.01 1004 6855 1530 4961 364 63.1 MiB 0.08 0.00 3.6946 -124.308 -3.6946 3.6946 0.33 0.000666465 0.000620289 0.0269554 0.0250659 -1 -1 -1 -1 28 2476 23 6.87369e+06 279477 531479. 1839.03 0.58 0.106325 0.0927977 24610 126494 -1 2194 23 1488 2178 170330 42033 3.28611 3.28611 -130.137 -3.28611 0 0 648988. 2245.63 0.03 0.08 0.12 -1 -1 0.03 0.0285581 0.0246782 118 65 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_075.v common 3.51 vpr 63.07 MiB -1 -1 0.24 17948 1 0.03 -1 -1 30292 -1 -1 33 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64584 31 32 293 230 1 175 96 17 17 289 -1 unnamed_device 24.0 MiB 0.92 1091 9075 2015 6280 780 63.1 MiB 0.10 0.00 4.61548 -132.875 -4.61548 4.61548 0.33 0.000631977 0.000587553 0.028804 0.0267387 -1 -1 -1 -1 26 2616 23 6.87369e+06 461137 503264. 1741.40 0.69 0.105235 0.0920603 24322 120374 -1 2293 21 1418 2488 166028 39907 3.8604 3.8604 -130.723 -3.8604 0 0 618332. 2139.56 0.02 0.04 0.07 -1 -1 0.02 0.0137315 0.012053 130 4 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_076.v common 5.58 vpr 63.24 MiB -1 -1 0.15 18428 1 0.03 -1 -1 30448 -1 -1 25 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64756 32 32 350 275 1 214 89 17 17 289 -1 unnamed_device 24.3 MiB 2.94 1200 15731 4693 8579 2459 63.2 MiB 0.17 0.00 4.80258 -153.363 -4.80258 4.80258 0.33 0.000703729 0.0006543 0.0576808 0.053582 -1 -1 -1 -1 32 3003 23 6.87369e+06 349346 586450. 2029.24 0.66 0.14232 0.126023 25474 144626 -1 2526 21 1639 2470 197373 45896 4.12826 4.12826 -146.013 -4.12826 0 0 744469. 2576.02 0.03 0.08 0.12 -1 -1 0.03 0.0284546 0.0247738 142 34 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_077.v common 6.24 vpr 63.32 MiB -1 -1 0.26 18460 1 0.03 -1 -1 30252 -1 -1 37 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64836 32 32 385 308 1 195 101 17 17 289 -1 unnamed_device 24.2 MiB 3.49 1124 13496 3681 8868 947 63.3 MiB 0.15 0.00 5.22228 -150.906 -5.22228 5.22228 0.34 0.000752487 0.000696927 0.0455464 0.0421192 -1 -1 -1 -1 30 2530 21 6.87369e+06 517032 556674. 1926.21 0.66 0.135733 0.119283 25186 138497 -1 2081 21 1252 2234 136986 32950 3.78145 3.78145 -137.672 -3.78145 0 0 706193. 2443.58 0.03 0.07 0.11 -1 -1 0.03 0.0298214 0.0259139 147 65 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_078.v common 6.11 vpr 63.93 MiB -1 -1 0.26 18560 1 0.03 -1 -1 30276 -1 -1 41 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65468 32 32 387 309 1 192 105 17 17 289 -1 unnamed_device 24.2 MiB 2.74 987 13690 3687 9358 645 63.9 MiB 0.14 0.00 4.53808 -140.381 -4.53808 4.53808 0.33 0.000749439 0.000696383 0.0438679 0.0405747 -1 -1 -1 -1 40 2022 24 6.87369e+06 572927 706193. 2443.58 1.23 0.19167 0.166443 26914 176310 -1 1886 21 1261 2401 156153 39758 3.6171 3.6171 -127.506 -3.6171 0 0 926341. 3205.33 0.04 0.08 0.14 -1 -1 0.04 0.0300207 0.0261017 148 65 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_079.v common 4.70 vpr 63.23 MiB -1 -1 0.23 18128 1 0.03 -1 -1 30216 -1 -1 18 30 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64748 30 32 272 232 1 151 80 17 17 289 -1 unnamed_device 23.6 MiB 2.20 813 9024 2370 5899 755 63.2 MiB 0.10 0.00 3.89188 -117.262 -3.89188 3.89188 0.33 0.000584829 0.000544928 0.0324753 0.0302551 -1 -1 -1 -1 32 1912 21 6.87369e+06 251529 586450. 2029.24 0.55 0.100521 0.0882835 25474 144626 -1 1652 20 1057 1880 121709 29083 2.97696 2.97696 -107.258 -2.97696 0 0 744469. 2576.02 0.03 0.06 0.12 -1 -1 0.03 0.0226212 0.0196254 99 34 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_080.v common 5.57 vpr 63.89 MiB -1 -1 0.14 18284 1 0.02 -1 -1 30372 -1 -1 23 30 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65424 30 32 375 299 1 188 85 17 17 289 -1 unnamed_device 24.0 MiB 3.12 1029 9757 2105 6512 1140 63.9 MiB 0.12 0.00 4.57902 -143.928 -4.57902 4.57902 0.33 0.000730298 0.000678703 0.0403111 0.0374677 -1 -1 -1 -1 28 2535 23 6.87369e+06 321398 531479. 1839.03 0.64 0.127412 0.111966 24610 126494 -1 2307 21 1874 2865 205104 49082 3.9547 3.9547 -144.752 -3.9547 0 0 648988. 2245.63 0.02 0.05 0.07 -1 -1 0.02 0.0166106 0.0146556 137 63 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_081.v common 5.03 vpr 63.10 MiB -1 -1 0.24 18356 1 0.03 -1 -1 30352 -1 -1 25 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64612 32 32 340 270 1 204 89 17 17 289 -1 unnamed_device 23.9 MiB 2.02 1137 13355 3696 8021 1638 63.1 MiB 0.15 0.00 5.16481 -152.482 -5.16481 5.16481 0.33 0.00068747 0.000638496 0.0488585 0.0454013 -1 -1 -1 -1 28 3018 30 6.87369e+06 349346 531479. 1839.03 0.86 0.140547 0.123885 24610 126494 -1 2524 24 1875 2946 236442 55729 4.90886 4.90886 -155.241 -4.90886 0 0 648988. 2245.63 0.03 0.09 0.11 -1 -1 0.03 0.0312093 0.027068 136 34 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_082.v common 6.14 vpr 63.24 MiB -1 -1 0.24 18392 1 0.03 -1 -1 30196 -1 -1 31 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64760 31 32 340 275 1 201 94 17 17 289 -1 unnamed_device 24.0 MiB 2.51 1095 17560 6469 8624 2467 63.2 MiB 0.17 0.00 5.28104 -147.847 -5.28104 5.28104 0.33 0.000689075 0.000639545 0.0588762 0.0546834 -1 -1 -1 -1 28 3079 44 6.87369e+06 433189 531479. 1839.03 1.22 0.166584 0.14682 24610 126494 -1 2291 23 1877 3073 206403 52519 4.5206 4.5206 -147.07 -4.5206 0 0 648988. 2245.63 0.03 0.09 0.11 -1 -1 0.03 0.0302722 0.0262274 140 47 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_083.v common 6.21 vpr 63.17 MiB -1 -1 0.24 18292 1 0.03 -1 -1 30140 -1 -1 31 30 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64684 30 32 377 310 1 181 93 17 17 289 -1 unnamed_device 24.2 MiB 3.01 983 14163 4548 6741 2874 63.2 MiB 0.14 0.00 4.71548 -138.601 -4.71548 4.71548 0.34 0.000716083 0.000664063 0.0506003 0.0468682 -1 -1 -1 -1 28 3021 48 6.87369e+06 433189 531479. 1839.03 1.16 0.171331 0.149933 24610 126494 -1 2182 22 1471 2283 175084 45197 3.71216 3.71216 -131.63 -3.71216 0 0 648988. 2245.63 0.03 0.09 0.10 -1 -1 0.03 0.0304106 0.0263778 136 83 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_084.v common 5.01 vpr 63.27 MiB -1 -1 0.24 18436 1 0.03 -1 -1 30352 -1 -1 22 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64784 32 32 365 294 1 187 86 17 17 289 -1 unnamed_device 24.0 MiB 2.29 977 11804 3582 6996 1226 63.3 MiB 0.15 0.00 4.77578 -141.077 -4.77578 4.77578 0.34 0.000721237 0.000668993 0.0471484 0.0438001 -1 -1 -1 -1 30 2619 21 6.87369e+06 307425 556674. 1926.21 0.66 0.132756 0.116983 25186 138497 -1 2066 20 1426 2450 128813 33448 3.90766 3.90766 -135.71 -3.90766 0 0 706193. 2443.58 0.03 0.07 0.11 -1 -1 0.03 0.0277408 0.024151 132 57 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_085.v common 5.03 vpr 63.49 MiB -1 -1 0.27 18544 1 0.03 -1 -1 30308 -1 -1 29 29 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65016 29 32 378 310 1 179 90 17 17 289 -1 unnamed_device 24.2 MiB 2.28 945 16170 4095 11127 948 63.5 MiB 0.16 0.00 4.12999 -122.875 -4.12999 4.12999 0.33 0.000715356 0.000664292 0.0600459 0.055713 -1 -1 -1 -1 32 2398 22 6.87369e+06 405241 586450. 2029.24 0.61 0.145064 0.128358 25474 144626 -1 1959 21 1386 2247 136731 34828 3.12181 3.12181 -115.774 -3.12181 0 0 744469. 2576.02 0.03 0.07 0.12 -1 -1 0.03 0.0291387 0.025244 132 85 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_086.v common 3.69 vpr 63.22 MiB -1 -1 0.21 17864 1 0.03 -1 -1 30328 -1 -1 18 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64736 32 32 243 205 1 149 82 17 17 289 -1 unnamed_device 23.6 MiB 1.07 892 12542 3412 7235 1895 63.2 MiB 0.11 0.00 3.98264 -119.291 -3.98264 3.98264 0.33 0.000553243 0.000515291 0.0408922 0.0380681 -1 -1 -1 -1 26 1942 21 6.87369e+06 251529 503264. 1741.40 0.65 0.108051 0.0953921 24322 120374 -1 1729 19 926 1350 100477 24050 2.89096 2.89096 -109.681 -2.89096 0 0 618332. 2139.56 0.03 0.06 0.10 -1 -1 0.03 0.0209686 0.0181556 96 3 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_087.v common 6.89 vpr 64.11 MiB -1 -1 0.24 18352 1 0.03 -1 -1 30368 -1 -1 34 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65648 32 32 373 302 1 184 98 17 17 289 -1 unnamed_device 24.5 MiB 4.14 1136 12698 3213 8226 1259 64.1 MiB 0.13 0.00 4.61508 -140.435 -4.61508 4.61508 0.34 0.000724797 0.000672524 0.0434584 0.0402964 -1 -1 -1 -1 32 2571 23 6.87369e+06 475111 586450. 2029.24 0.63 0.131597 0.115659 25474 144626 -1 2066 23 1500 2612 174693 42709 3.7811 3.7811 -133.462 -3.7811 0 0 744469. 2576.02 0.03 0.08 0.12 -1 -1 0.03 0.0311492 0.0269934 138 65 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_088.v common 6.88 vpr 63.72 MiB -1 -1 0.25 18292 1 0.03 -1 -1 30264 -1 -1 22 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65248 32 32 397 314 1 197 86 17 17 289 -1 unnamed_device 24.2 MiB 4.05 1136 12749 3577 7664 1508 63.7 MiB 0.15 0.00 4.56982 -153.824 -4.56982 4.56982 0.33 0.000768687 0.00071409 0.0543177 0.0505018 -1 -1 -1 -1 32 2623 21 6.87369e+06 307425 586450. 2029.24 0.64 0.143276 0.12659 25474 144626 -1 2191 19 1626 2715 173775 41377 3.6728 3.6728 -145.994 -3.6728 0 0 744469. 2576.02 0.03 0.08 0.12 -1 -1 0.03 0.0289038 0.0252082 142 65 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_089.v common 4.79 vpr 63.60 MiB -1 -1 0.22 18128 1 0.03 -1 -1 30352 -1 -1 18 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65128 32 32 269 231 1 170 82 17 17 289 -1 unnamed_device 23.9 MiB 2.13 994 9694 2678 5995 1021 63.6 MiB 0.10 0.00 4.37292 -124.998 -4.37292 4.37292 0.33 0.00058825 0.000548397 0.0336292 0.0313019 -1 -1 -1 -1 26 2325 22 6.87369e+06 251529 503264. 1741.40 0.62 0.103077 0.090504 24322 120374 -1 2098 22 1212 1576 117648 28606 3.4928 3.4928 -124.305 -3.4928 0 0 618332. 2139.56 0.03 0.06 0.10 -1 -1 0.03 0.0245323 0.0212581 103 29 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_090.v common 3.70 vpr 63.16 MiB -1 -1 0.23 17880 1 0.03 -1 -1 30368 -1 -1 21 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64680 31 32 245 205 1 153 84 17 17 289 -1 unnamed_device 23.7 MiB 1.09 879 14358 4211 8419 1728 63.2 MiB 0.13 0.00 3.81898 -115.032 -3.81898 3.81898 0.33 0.000551096 0.000512803 0.0451184 0.0419713 -1 -1 -1 -1 32 1927 21 6.87369e+06 293451 586450. 2029.24 0.58 0.11685 0.103169 25474 144626 -1 1705 21 1147 1895 134417 30219 2.80196 2.80196 -107.148 -2.80196 0 0 744469. 2576.02 0.03 0.06 0.12 -1 -1 0.03 0.0226517 0.0196196 100 4 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_091.v common 5.14 vpr 63.21 MiB -1 -1 0.24 18416 1 0.03 -1 -1 30464 -1 -1 24 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64732 32 32 348 274 1 215 88 17 17 289 -1 unnamed_device 24.0 MiB 2.49 1167 13738 4717 6121 2900 63.2 MiB 0.14 0.00 4.82535 -151.45 -4.82535 4.82535 0.34 0.000702193 0.000652482 0.0514208 0.0477219 -1 -1 -1 -1 32 3056 26 6.87369e+06 335372 586450. 2029.24 0.67 0.140939 0.124324 25474 144626 -1 2359 21 1873 2516 192195 44591 3.83266 3.83266 -143.503 -3.83266 0 0 744469. 2576.02 0.03 0.05 0.08 -1 -1 0.03 0.0156955 0.0138414 141 34 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_092.v common 5.17 vpr 63.78 MiB -1 -1 0.25 18388 1 0.03 -1 -1 30312 -1 -1 29 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65308 32 32 356 289 1 202 93 17 17 289 -1 unnamed_device 24.2 MiB 2.40 1241 12693 3088 8410 1195 63.8 MiB 0.13 0.00 5.11649 -152.535 -5.11649 5.11649 0.33 0.000706963 0.00065777 0.0450642 0.0418974 -1 -1 -1 -1 28 2943 23 6.87369e+06 405241 531479. 1839.03 0.64 0.130506 0.115048 24610 126494 -1 2430 21 1668 2547 158583 40231 4.36435 4.36435 -151.153 -4.36435 0 0 648988. 2245.63 0.03 0.08 0.11 -1 -1 0.03 0.0292089 0.0254065 139 56 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_093.v common 4.00 vpr 63.20 MiB -1 -1 0.24 18152 1 0.03 -1 -1 30160 -1 -1 36 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64720 32 32 349 260 1 204 100 17 17 289 -1 unnamed_device 24.2 MiB 0.77 1214 20284 6668 9397 4219 63.2 MiB 0.18 0.00 5.27917 -148.68 -5.27917 5.27917 0.34 0.000718688 0.000667502 0.0652747 0.0605716 -1 -1 -1 -1 30 3191 43 6.87369e+06 503058 556674. 1926.21 1.11 0.184428 0.16278 25186 138497 -1 2376 22 1504 2809 174178 42314 4.70185 4.70185 -146.557 -4.70185 0 0 706193. 2443.58 0.03 0.08 0.11 -1 -1 0.03 0.0300945 0.0261648 157 3 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_094.v common 4.77 vpr 63.60 MiB -1 -1 0.25 18424 1 0.03 -1 -1 30380 -1 -1 34 30 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65128 30 32 316 264 1 165 96 17 17 289 -1 unnamed_device 24.0 MiB 2.11 882 12798 3427 7781 1590 63.6 MiB 0.12 0.00 3.60295 -105.856 -3.60295 3.60295 0.33 0.000644126 0.000598529 0.0398531 0.0369682 -1 -1 -1 -1 30 1919 24 6.87369e+06 475111 556674. 1926.21 0.60 0.11996 0.10565 25186 138497 -1 1665 19 1031 1845 92885 24170 2.80666 2.80666 -100.682 -2.80666 0 0 706193. 2443.58 0.03 0.06 0.11 -1 -1 0.03 0.0237563 0.0206309 119 52 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_095.v common 3.39 vpr 63.20 MiB -1 -1 0.12 18080 1 0.03 -1 -1 30460 -1 -1 24 27 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64720 27 32 255 219 1 139 83 17 17 289 -1 unnamed_device 23.6 MiB 0.98 659 7643 1786 5184 673 63.2 MiB 0.07 0.00 3.59463 -97.3218 -3.59463 3.59463 0.34 0.000551197 0.000513497 0.0250754 0.0233186 -1 -1 -1 -1 30 1508 21 6.87369e+06 335372 556674. 1926.21 0.53 0.0893672 0.0779488 25186 138497 -1 1307 22 912 1404 85222 19958 2.71066 2.71066 -92.8097 -2.71066 0 0 706193. 2443.58 0.03 0.06 0.11 -1 -1 0.03 0.0229535 0.0198213 97 34 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_096.v common 5.57 vpr 63.50 MiB -1 -1 0.26 18408 1 0.03 -1 -1 30300 -1 -1 26 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65020 32 32 421 327 1 233 90 17 17 289 -1 unnamed_device 24.5 MiB 2.67 1401 16170 4964 9023 2183 63.5 MiB 0.19 0.00 4.57338 -144.339 -4.57338 4.57338 0.34 0.000803223 0.000746133 0.0677135 0.0628702 -1 -1 -1 -1 32 3662 24 6.87369e+06 363320 586450. 2029.24 0.70 0.168427 0.149127 25474 144626 -1 2760 22 1992 3267 226149 52554 3.83566 3.83566 -137.079 -3.83566 0 0 744469. 2576.02 0.03 0.09 0.12 -1 -1 0.03 0.0347115 0.0301949 162 65 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_097.v common 7.33 vpr 63.27 MiB -1 -1 0.27 18584 1 0.03 -1 -1 30256 -1 -1 24 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64788 31 32 365 296 1 202 87 17 17 289 -1 unnamed_device 24.3 MiB 4.65 1098 14103 3985 8981 1137 63.3 MiB 0.15 0.00 5.44942 -162.48 -5.44942 5.44942 0.33 0.000708544 0.000658436 0.0547442 0.0506825 -1 -1 -1 -1 28 2855 25 6.87369e+06 335372 531479. 1839.03 0.67 0.143032 0.126211 24610 126494 -1 2448 22 2045 3179 239679 55911 4.60955 4.60955 -160.284 -4.60955 0 0 648988. 2245.63 0.02 0.06 0.07 -1 -1 0.02 0.0166077 0.0146544 137 64 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_098.v common 7.03 vpr 63.37 MiB -1 -1 0.24 18372 1 0.03 -1 -1 30304 -1 -1 19 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64892 32 32 331 280 1 185 83 17 17 289 -1 unnamed_device 24.2 MiB 4.00 817 15383 5423 7661 2299 63.4 MiB 0.14 0.00 4.40108 -141.085 -4.40108 4.40108 0.33 0.000661923 0.000615234 0.0586678 0.0545053 -1 -1 -1 -1 34 2276 26 6.87369e+06 265503 618332. 2139.56 0.97 0.191061 0.167089 25762 151098 -1 1676 18 1284 1782 118864 30915 3.63746 3.63746 -132.494 -3.63746 0 0 787024. 2723.27 0.03 0.06 0.12 -1 -1 0.03 0.0237079 0.0206514 117 65 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_099.v common 4.26 vpr 63.08 MiB -1 -1 0.24 18356 1 0.03 -1 -1 30340 -1 -1 33 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64592 32 32 326 263 1 176 97 17 17 289 -1 unnamed_device 23.9 MiB 1.26 996 18079 6285 9338 2456 63.1 MiB 0.17 0.00 5.05545 -135.157 -5.05545 5.05545 0.34 0.0006787 0.00062261 0.0569607 0.0526736 -1 -1 -1 -1 28 2735 32 6.87369e+06 461137 531479. 1839.03 0.90 0.150988 0.132992 24610 126494 -1 2184 23 1538 2474 186286 44655 3.7844 3.7844 -127.117 -3.7844 0 0 648988. 2245.63 0.03 0.08 0.10 -1 -1 0.03 0.0289064 0.0250237 129 34 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_100.v common 4.36 vpr 63.26 MiB -1 -1 0.27 18324 1 0.03 -1 -1 30424 -1 -1 34 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64776 31 32 373 294 1 197 97 17 17 289 -1 unnamed_device 24.2 MiB 1.61 975 8977 1882 6473 622 63.3 MiB 0.10 0.00 4.47518 -127.7 -4.47518 4.47518 0.34 0.000735349 0.000682437 0.0320028 0.0296931 -1 -1 -1 -1 30 2526 22 6.87369e+06 475111 556674. 1926.21 0.65 0.121632 0.106372 25186 138497 -1 1772 20 1161 1988 89442 23941 3.59926 3.59926 -123.864 -3.59926 0 0 706193. 2443.58 0.03 0.06 0.11 -1 -1 0.03 0.0287372 0.0250502 149 50 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_101.v common 4.69 vpr 63.14 MiB -1 -1 0.25 18476 1 0.03 -1 -1 30092 -1 -1 31 30 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64656 30 32 325 268 1 172 93 17 17 289 -1 unnamed_device 24.0 MiB 1.89 1016 17523 5783 9680 2060 63.1 MiB 0.16 0.00 3.6935 -107.395 -3.6935 3.6935 0.33 0.000656932 0.000610154 0.0564618 0.0524435 -1 -1 -1 -1 32 2389 47 6.87369e+06 433189 586450. 2029.24 0.66 0.157482 0.138428 25474 144626 -1 2002 22 1287 2224 135136 33535 3.14781 3.14781 -106.636 -3.14781 0 0 744469. 2576.02 0.03 0.07 0.12 -1 -1 0.03 0.0272988 0.0236707 124 51 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_102.v common 6.12 vpr 63.13 MiB -1 -1 0.25 18248 1 0.03 -1 -1 30228 -1 -1 24 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64644 32 32 350 275 1 215 88 17 17 289 -1 unnamed_device 24.1 MiB 3.33 1248 13738 4274 7446 2018 63.1 MiB 0.15 0.00 4.85883 -154.737 -4.85883 4.85883 0.33 0.000713451 0.000654801 0.0520909 0.0481021 -1 -1 -1 -1 32 3121 22 6.87369e+06 335372 586450. 2029.24 0.63 0.136198 0.12007 25474 144626 -1 2484 20 1815 2844 200706 47665 4.17706 4.17706 -148.515 -4.17706 0 0 744469. 2576.02 0.03 0.08 0.12 -1 -1 0.03 0.0274458 0.0239019 143 34 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_103.v common 5.85 vpr 63.91 MiB -1 -1 0.25 18376 1 0.03 -1 -1 30128 -1 -1 36 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65444 32 32 386 307 1 196 100 17 17 289 -1 unnamed_device 24.3 MiB 3.01 1086 10308 2517 7280 511 63.9 MiB 0.12 0.00 4.14663 -136.709 -4.14663 4.14663 0.34 0.000747845 0.000694676 0.0358158 0.0332704 -1 -1 -1 -1 28 2852 22 6.87369e+06 503058 531479. 1839.03 0.74 0.128014 0.1121 24610 126494 -1 2345 20 1518 2459 158677 39350 3.26061 3.26061 -128.829 -3.26061 0 0 648988. 2245.63 0.03 0.08 0.10 -1 -1 0.03 0.0293717 0.0255279 148 62 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_104.v common 4.20 vpr 63.19 MiB -1 -1 0.22 18280 1 0.03 -1 -1 30284 -1 -1 20 29 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64708 29 32 269 229 1 150 81 17 17 289 -1 unnamed_device 23.5 MiB 1.73 676 13381 4841 5719 2821 63.2 MiB 0.12 0.00 3.95844 -115.993 -3.95844 3.95844 0.33 0.000576391 0.00053603 0.0458306 0.0426133 -1 -1 -1 -1 32 1602 21 6.87369e+06 279477 586450. 2029.24 0.54 0.11245 0.0993597 25474 144626 -1 1303 20 1078 1620 101124 24300 3.02726 3.02726 -105.477 -3.02726 0 0 744469. 2576.02 0.03 0.06 0.12 -1 -1 0.03 0.0226321 0.0196502 101 34 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_105.v common 4.33 vpr 63.11 MiB -1 -1 0.24 18380 1 0.03 -1 -1 30284 -1 -1 20 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64624 32 32 310 266 1 175 84 17 17 289 -1 unnamed_device 24.0 MiB 1.51 1025 15456 4644 9539 1273 63.1 MiB 0.15 0.00 3.98516 -120.978 -3.98516 3.98516 0.33 0.000629119 0.000584837 0.0550716 0.051179 -1 -1 -1 -1 26 2517 27 6.87369e+06 279477 503264. 1741.40 0.77 0.135191 0.119354 24322 120374 -1 2108 22 1426 1967 170507 40619 3.43941 3.43941 -126.369 -3.43941 0 0 618332. 2139.56 0.03 0.08 0.10 -1 -1 0.03 0.0266223 0.0230652 108 58 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_106.v common 4.68 vpr 63.76 MiB -1 -1 0.15 18476 1 0.03 -1 -1 30344 -1 -1 39 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65292 31 32 326 261 1 178 102 17 17 289 -1 unnamed_device 24.0 MiB 1.43 987 18428 5110 10243 3075 63.8 MiB 0.17 0.00 4.59612 -128.416 -4.59612 4.59612 0.33 0.00066769 0.000620041 0.0537939 0.049922 -1 -1 -1 -1 26 2846 38 6.87369e+06 544980 503264. 1741.40 1.16 0.153274 0.135079 24322 120374 -1 2300 23 1587 2983 214840 50593 4.066 4.066 -137.302 -4.066 0 0 618332. 2139.56 0.02 0.05 0.07 -1 -1 0.02 0.0152959 0.0134031 135 33 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_107.v common 4.72 vpr 63.51 MiB -1 -1 0.22 18056 1 0.03 -1 -1 30240 -1 -1 20 29 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65032 29 32 262 224 1 168 81 17 17 289 -1 unnamed_device 23.9 MiB 2.21 926 13031 3833 7297 1901 63.5 MiB 0.12 0.00 4.39772 -121.351 -4.39772 4.39772 0.34 0.000564946 0.000526026 0.0438255 0.0407939 -1 -1 -1 -1 26 2366 26 6.87369e+06 279477 503264. 1741.40 0.58 0.115317 0.101479 24322 120374 -1 1950 21 1326 1745 124283 31179 3.5018 3.5018 -119.379 -3.5018 0 0 618332. 2139.56 0.03 0.06 0.10 -1 -1 0.03 0.0230083 0.0198986 103 31 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_108.v common 6.22 vpr 63.16 MiB -1 -1 0.23 18184 1 0.03 -1 -1 30060 -1 -1 17 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64672 32 32 278 238 1 158 81 17 17 289 -1 unnamed_device 23.5 MiB 3.10 830 13556 5623 7156 777 63.2 MiB 0.12 0.00 3.89598 -121.823 -3.89598 3.89598 0.34 0.000599774 0.000558122 0.0486182 0.0452549 -1 -1 -1 -1 30 2401 40 6.87369e+06 237555 556674. 1926.21 1.16 0.151662 0.13314 25186 138497 -1 1517 22 1110 1832 122846 32031 2.91031 2.91031 -105.79 -2.91031 0 0 706193. 2443.58 0.03 0.07 0.11 -1 -1 0.03 0.0248086 0.0215212 102 34 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_109.v common 5.22 vpr 63.86 MiB -1 -1 0.26 18380 1 0.03 -1 -1 30372 -1 -1 38 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65392 31 32 373 300 1 185 101 17 17 289 -1 unnamed_device 24.3 MiB 2.52 996 8326 1655 6069 602 63.9 MiB 0.09 0.00 3.95528 -124.82 -3.95528 3.95528 0.33 0.00073019 0.000672729 0.028011 0.0259846 -1 -1 -1 -1 30 2187 19 6.87369e+06 531006 556674. 1926.21 0.58 0.110267 0.0962367 25186 138497 -1 1812 19 1272 2135 103364 26073 2.96596 2.96596 -116.595 -2.96596 0 0 706193. 2443.58 0.03 0.07 0.11 -1 -1 0.03 0.0270136 0.0235073 142 64 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_110.v common 4.45 vpr 63.19 MiB -1 -1 0.23 18184 1 0.03 -1 -1 30328 -1 -1 18 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64704 31 32 265 230 1 169 81 17 17 289 -1 unnamed_device 23.5 MiB 1.98 964 7606 1989 5205 412 63.2 MiB 0.08 0.00 3.71466 -116.831 -3.71466 3.71466 0.33 0.00058092 0.000541652 0.026736 0.0248919 -1 -1 -1 -1 30 2104 20 6.87369e+06 251529 556674. 1926.21 0.54 0.0928595 0.0811791 25186 138497 -1 1736 21 950 1365 79050 19847 3.06461 3.06461 -112.199 -3.06461 0 0 706193. 2443.58 0.03 0.06 0.11 -1 -1 0.03 0.0278341 0.0244082 101 34 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_111.v common 5.45 vpr 63.81 MiB -1 -1 0.25 18348 1 0.03 -1 -1 29996 -1 -1 32 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65340 32 32 349 286 1 177 96 17 17 289 -1 unnamed_device 24.1 MiB 2.52 1048 13455 3508 9157 790 63.8 MiB 0.13 0.00 3.8199 -117.926 -3.8199 3.8199 0.34 0.000698483 0.000649166 0.0451115 0.0418957 -1 -1 -1 -1 26 2805 33 6.87369e+06 447163 503264. 1741.40 0.91 0.145167 0.127573 24322 120374 -1 2183 29 1347 2248 170016 40039 3.04151 3.04151 -116.867 -3.04151 0 0 618332. 2139.56 0.03 0.09 0.10 -1 -1 0.03 0.0361119 0.0312691 130 57 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_112.v common 5.38 vpr 63.44 MiB -1 -1 0.15 18316 1 0.04 -1 -1 30280 -1 -1 33 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64960 31 32 396 325 1 185 96 17 17 289 -1 unnamed_device 24.4 MiB 2.88 1015 16959 5374 8849 2736 63.4 MiB 0.17 0.00 3.7606 -128.355 -3.7606 3.7606 0.33 0.000748216 0.000694083 0.0605097 0.0561856 -1 -1 -1 -1 32 2262 24 6.87369e+06 461137 586450. 2029.24 0.59 0.150753 0.133203 25474 144626 -1 1821 20 1416 2136 127559 31716 2.80391 2.80391 -117.048 -2.80391 0 0 744469. 2576.02 0.03 0.04 0.08 -1 -1 0.03 0.0156045 0.0137633 138 91 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_113.v common 4.70 vpr 63.33 MiB -1 -1 0.24 18292 1 0.03 -1 -1 30324 -1 -1 17 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64852 32 32 303 262 1 154 81 17 17 289 -1 unnamed_device 24.0 MiB 2.09 926 11806 3071 7035 1700 63.3 MiB 0.11 0.00 3.46595 -111.033 -3.46595 3.46595 0.34 0.000626318 0.000581564 0.0441167 0.0410371 -1 -1 -1 -1 32 1999 19 6.87369e+06 237555 586450. 2029.24 0.56 0.115252 0.101659 25474 144626 -1 1755 16 874 1380 84592 21150 2.99146 2.99146 -110.25 -2.99146 0 0 744469. 2576.02 0.03 0.05 0.12 -1 -1 0.03 0.0205676 0.0179449 99 57 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_114.v common 4.69 vpr 63.04 MiB -1 -1 0.23 18180 1 0.03 -1 -1 30264 -1 -1 19 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64548 32 32 290 244 1 176 83 17 17 289 -1 unnamed_device 24.0 MiB 1.70 868 9623 2653 6092 878 63.0 MiB 0.10 0.00 4.12463 -125.158 -4.12463 4.12463 0.29 0.000611296 0.000568942 0.0346504 0.0322298 -1 -1 -1 -1 28 2577 24 6.87369e+06 265503 531479. 1839.03 0.64 0.108794 0.0953846 24610 126494 -1 2089 21 1614 2365 175909 43157 3.21861 3.21861 -122.623 -3.21861 0 0 648988. 2245.63 0.03 0.08 0.07 -1 -1 0.03 0.0247676 0.021436 110 34 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_115.v common 4.68 vpr 63.23 MiB -1 -1 0.12 18288 1 0.03 -1 -1 30172 -1 -1 22 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64752 32 32 318 257 1 196 86 17 17 289 -1 unnamed_device 24.1 MiB 2.03 1052 5567 1101 4155 311 63.2 MiB 0.07 0.00 4.84388 -137.106 -4.84388 4.84388 0.33 0.000657365 0.000611273 0.0214686 0.0199696 -1 -1 -1 -1 26 2782 21 6.87369e+06 307425 503264. 1741.40 0.77 0.101909 0.0887736 24322 120374 -1 2258 23 1745 2467 162233 39815 4.05606 4.05606 -137.797 -4.05606 0 0 618332. 2139.56 0.03 0.08 0.10 -1 -1 0.03 0.0293776 0.0254551 128 30 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_116.v common 5.13 vpr 63.11 MiB -1 -1 0.25 18372 1 0.03 -1 -1 30196 -1 -1 29 29 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64624 29 32 324 268 1 169 90 17 17 289 -1 unnamed_device 24.0 MiB 2.37 1060 14562 4184 8868 1510 63.1 MiB 0.14 0.00 4.11363 -115.792 -4.11363 4.11363 0.34 0.000654586 0.000608681 0.0494721 0.0459961 -1 -1 -1 -1 30 2285 32 6.87369e+06 405241 556674. 1926.21 0.70 0.138159 0.121704 25186 138497 -1 1890 18 982 1734 104165 24665 3.11651 3.11651 -108.645 -3.11651 0 0 706193. 2443.58 0.03 0.06 0.11 -1 -1 0.03 0.023576 0.0205441 123 55 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_117.v common 6.17 vpr 64.10 MiB -1 -1 0.26 18404 1 0.03 -1 -1 30556 -1 -1 24 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65640 32 32 393 312 1 215 88 17 17 289 -1 unnamed_device 24.4 MiB 2.82 1203 9838 2479 6641 718 64.1 MiB 0.07 0.00 5.21116 -164.931 -5.21116 5.21116 0.32 0.000342348 0.000315851 0.0195076 0.017971 -1 -1 -1 -1 26 3413 41 6.87369e+06 335372 503264. 1741.40 1.24 0.136273 0.117963 24322 120374 -1 2693 21 2122 3152 243393 57965 4.48486 4.48486 -163.249 -4.48486 0 0 618332. 2139.56 0.03 0.10 0.10 -1 -1 0.03 0.0332255 0.0289183 148 65 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_118.v common 3.52 vpr 63.05 MiB -1 -1 0.13 17992 1 0.03 -1 -1 30080 -1 -1 18 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64568 31 32 229 197 1 143 81 17 17 289 -1 unnamed_device 23.5 MiB 1.06 844 13556 4454 6953 2149 63.1 MiB 0.11 0.00 3.44201 -103.957 -3.44201 3.44201 0.33 0.000529031 0.000492592 0.0429559 0.0399555 -1 -1 -1 -1 32 1714 22 6.87369e+06 251529 586450. 2029.24 0.52 0.105722 0.0934036 25474 144626 -1 1496 19 749 1215 76767 19027 2.80296 2.80296 -100.579 -2.80296 0 0 744469. 2576.02 0.03 0.05 0.12 -1 -1 0.03 0.0199165 0.0172949 93 4 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_119.v common 4.64 vpr 64.04 MiB -1 -1 0.26 18464 1 0.03 -1 -1 30180 -1 -1 35 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65572 32 32 412 334 1 194 99 17 17 289 -1 unnamed_device 24.3 MiB 1.86 1127 14007 4056 9039 912 64.0 MiB 0.15 0.00 4.44135 -147.306 -4.44135 4.44135 0.33 0.000765121 0.0007102 0.0495822 0.0459695 -1 -1 -1 -1 32 2681 24 6.87369e+06 489084 586450. 2029.24 0.63 0.142967 0.125789 25474 144626 -1 2165 21 1488 2138 146818 34899 3.61706 3.61706 -138.505 -3.61706 0 0 744469. 2576.02 0.03 0.08 0.12 -1 -1 0.03 0.0315295 0.0274102 145 90 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_120.v common 6.55 vpr 63.58 MiB -1 -1 0.24 18480 1 0.03 -1 -1 30084 -1 -1 18 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65104 32 32 376 318 1 168 82 17 17 289 -1 unnamed_device 24.3 MiB 3.93 818 7914 1986 4991 937 63.6 MiB 0.09 0.00 3.65241 -126.689 -3.65241 3.65241 0.33 0.000716521 0.000665697 0.0339799 0.0315396 -1 -1 -1 -1 32 2064 21 6.87369e+06 251529 586450. 2029.24 0.59 0.116999 0.102344 25474 144626 -1 1733 19 1279 1863 114597 28329 3.23576 3.23576 -126.641 -3.23576 0 0 744469. 2576.02 0.03 0.06 0.12 -1 -1 0.03 0.0262627 0.022804 114 96 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_121.v common 6.17 vpr 63.64 MiB -1 -1 0.25 18384 1 0.03 -1 -1 30248 -1 -1 33 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65164 32 32 360 293 1 182 97 17 17 289 -1 unnamed_device 23.9 MiB 2.69 898 12973 3607 6302 3064 63.6 MiB 0.12 0.00 4.14663 -123.081 -4.14663 4.14663 0.34 0.000720368 0.000669204 0.0442353 0.0410851 -1 -1 -1 -1 38 1952 42 6.87369e+06 461137 678818. 2348.85 1.36 0.212778 0.184969 26626 170182 -1 1572 22 1060 1841 100003 27096 2.90726 2.90726 -103.051 -2.90726 0 0 902133. 3121.57 0.04 0.07 0.14 -1 -1 0.04 0.0297464 0.0258138 134 60 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_122.v common 6.58 vpr 63.31 MiB -1 -1 0.26 18704 1 0.03 -1 -1 30276 -1 -1 28 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64828 32 32 396 299 1 240 92 17 17 289 -1 unnamed_device 24.2 MiB 3.74 1352 13547 3389 8039 2119 63.3 MiB 0.16 0.00 5.90291 -180.768 -5.90291 5.90291 0.34 0.000788625 0.000732777 0.0532663 0.0495082 -1 -1 -1 -1 32 3301 23 6.87369e+06 391268 586450. 2029.24 0.68 0.150416 0.132504 25474 144626 -1 2681 21 1910 2779 189482 44795 4.7146 4.7146 -162.466 -4.7146 0 0 744469. 2576.02 0.03 0.08 0.12 -1 -1 0.03 0.0313979 0.0273791 166 34 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_123.v common 3.78 vpr 63.04 MiB -1 -1 0.23 18216 1 0.03 -1 -1 30092 -1 -1 17 30 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64548 30 32 224 207 1 137 79 17 17 289 -1 unnamed_device 23.5 MiB 1.42 736 10050 2579 6391 1080 63.0 MiB 0.08 0.00 3.03066 -94.5748 -3.03066 3.03066 0.33 0.000502701 0.000468535 0.0314551 0.0293165 -1 -1 -1 -1 28 1682 16 6.87369e+06 237555 531479. 1839.03 0.48 0.086592 0.0763637 24610 126494 -1 1538 16 849 1106 81342 20313 2.33677 2.33677 -94.3105 -2.33677 0 0 648988. 2245.63 0.03 0.05 0.10 -1 -1 0.03 0.0165481 0.014396 79 34 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_124.v common 3.57 vpr 63.29 MiB -1 -1 0.24 18220 1 0.03 -1 -1 30420 -1 -1 20 30 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64804 30 32 286 239 1 151 82 17 17 289 -1 unnamed_device 23.7 MiB 1.04 731 7380 1917 5120 343 63.3 MiB 0.08 0.00 3.87678 -118.42 -3.87678 3.87678 0.33 0.000600531 0.000558766 0.026782 0.0248795 -1 -1 -1 -1 32 1689 23 6.87369e+06 279477 586450. 2029.24 0.55 0.0992538 0.0866565 25474 144626 -1 1447 20 1008 1567 100138 24264 2.91726 2.91726 -109.833 -2.91726 0 0 744469. 2576.02 0.03 0.06 0.12 -1 -1 0.03 0.023328 0.0202272 106 34 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_125.v common 3.96 vpr 63.45 MiB -1 -1 0.23 18024 1 0.03 -1 -1 30136 -1 -1 24 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64972 32 32 296 247 1 158 88 17 17 289 -1 unnamed_device 24.1 MiB 1.28 827 11008 2805 7715 488 63.4 MiB 0.11 0.00 3.50695 -115.703 -3.50695 3.50695 0.34 0.000611987 0.000568066 0.0367104 0.0340078 -1 -1 -1 -1 30 2028 21 6.87369e+06 335372 556674. 1926.21 0.59 0.11109 0.0974798 25186 138497 -1 1700 22 1189 2126 133167 32788 2.77666 2.77666 -111.905 -2.77666 0 0 706193. 2443.58 0.03 0.07 0.15 -1 -1 0.03 0.0257043 0.0222411 109 34 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_126.v common 3.33 vpr 63.15 MiB -1 -1 0.22 18056 1 0.03 -1 -1 30200 -1 -1 29 25 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64668 25 32 216 194 1 123 86 17 17 289 -1 unnamed_device 23.7 MiB 0.77 530 12749 4269 6130 2350 63.2 MiB 0.09 0.00 3.47695 -80.5857 -3.47695 3.47695 0.33 0.0004763 0.000442656 0.0337173 0.0313435 -1 -1 -1 -1 26 1598 25 6.87369e+06 405241 503264. 1741.40 0.61 0.0930319 0.0815502 24322 120374 -1 1295 22 926 1589 114692 31959 3.18916 3.18916 -83.8265 -3.18916 0 0 618332. 2139.56 0.03 0.06 0.10 -1 -1 0.03 0.019951 0.017194 87 29 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_127.v common 4.84 vpr 63.82 MiB -1 -1 0.26 18400 1 0.02 -1 -1 30200 -1 -1 22 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65352 32 32 376 307 1 192 86 17 17 289 -1 unnamed_device 24.3 MiB 2.17 1073 10103 2684 6858 561 63.8 MiB 0.12 0.00 4.3826 -130.721 -4.3826 4.3826 0.33 0.000726689 0.000675651 0.0411834 0.0382518 -1 -1 -1 -1 32 2888 48 6.87369e+06 307425 586450. 2029.24 0.67 0.155062 0.135398 25474 144626 -1 2276 23 1464 2573 168340 41015 3.76866 3.76866 -132.172 -3.76866 0 0 744469. 2576.02 0.03 0.06 0.08 -1 -1 0.03 0.0253656 0.0220242 131 72 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_128.v common 5.17 vpr 63.73 MiB -1 -1 0.16 18400 1 0.03 -1 -1 30232 -1 -1 34 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65256 31 32 409 331 1 193 97 17 17 289 -1 unnamed_device 24.6 MiB 2.48 1085 16969 4812 9841 2316 63.7 MiB 0.18 0.00 4.13563 -135.401 -4.13563 4.13563 0.34 0.000767021 0.000711856 0.0614545 0.0570203 -1 -1 -1 -1 32 2578 24 6.87369e+06 475111 586450. 2029.24 0.64 0.156363 0.138015 25474 144626 -1 2084 20 1557 2479 147944 37335 3.31091 3.31091 -126.692 -3.31091 0 0 744469. 2576.02 0.03 0.08 0.12 -1 -1 0.03 0.0301933 0.0262737 145 90 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_001.v common 4.66 vpr 63.12 MiB -1 -1 0.14 18384 1 0.03 -1 -1 30160 -1 -1 26 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64632 32 32 354 285 1 223 90 17 17 289 -1 unnamed_device 23.9 MiB 1.53 1144 16773 5687 8252 2834 63.1 MiB 0.17 0.00 5.45687 -159.577 -5.45687 5.45687 0.34 0.000707441 0.000653701 0.061291 0.0568531 -1 -1 -1 -1 34 2960 24 6.89349e+06 366440 618332. 2139.56 1.09 0.207628 0.181784 25762 151098 -1 2314 21 1560 2311 158787 38584 4.32749 4.32749 -146.434 -4.32749 0 0 787024. 2723.27 0.03 0.08 0.12 -1 -1 0.03 0.0285389 0.0248246 147 50 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_002.v common 4.15 vpr 63.02 MiB -1 -1 0.15 18292 1 0.03 -1 -1 30292 -1 -1 27 30 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64528 30 32 363 293 1 229 89 17 17 289 -1 unnamed_device 23.8 MiB 1.45 1225 15929 4471 9301 2157 63.0 MiB 0.17 0.00 4.93328 -152.269 -4.93328 4.93328 0.33 0.00070826 0.000658533 0.059288 0.0551026 -1 -1 -1 -1 32 2735 20 6.89349e+06 380534 586450. 2029.24 0.63 0.140514 0.124521 25474 144626 -1 2348 22 1808 2627 169139 39727 4.37429 4.37429 -148.001 -4.37429 0 0 744469. 2576.02 0.03 0.08 0.12 -1 -1 0.03 0.0294465 0.0255588 152 63 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_003.v common 3.95 vpr 63.16 MiB -1 -1 0.15 18440 1 0.03 -1 -1 30276 -1 -1 22 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64680 32 32 299 247 1 190 86 17 17 289 -1 unnamed_device 23.8 MiB 1.46 1082 9347 2400 6379 568 63.2 MiB 0.11 0.00 4.40779 -123.677 -4.40779 4.40779 0.33 0.000627725 0.000584049 0.0331316 0.0308045 -1 -1 -1 -1 32 2691 28 6.89349e+06 310065 586450. 2029.24 0.67 0.112808 0.098724 25474 144626 -1 2073 23 1284 1874 184866 63739 3.5931 3.5931 -118.498 -3.5931 0 0 744469. 2576.02 0.03 0.06 0.08 -1 -1 0.03 0.0153008 0.0134022 120 29 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_004.v common 3.84 vpr 62.98 MiB -1 -1 0.14 18404 1 0.03 -1 -1 30420 -1 -1 26 29 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64492 29 32 308 248 1 195 87 17 17 289 -1 unnamed_device 23.6 MiB 0.95 951 10263 2585 7026 652 63.0 MiB 0.11 0.00 4.86959 -129.584 -4.86959 4.86959 0.34 0.000636109 0.000591613 0.0361167 0.0335751 -1 -1 -1 -1 28 3005 28 6.89349e+06 366440 531479. 1839.03 0.68 0.120664 0.105707 24610 126494 -1 2203 22 1625 2536 169563 42479 3.88885 3.88885 -122.914 -3.88885 0 0 648988. 2245.63 0.03 0.08 0.12 -1 -1 0.03 0.0270146 0.0233596 129 31 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_005.v common 4.59 vpr 63.03 MiB -1 -1 0.12 18460 1 0.03 -1 -1 30380 -1 -1 25 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64540 32 32 336 268 1 211 89 17 17 289 -1 unnamed_device 23.9 MiB 1.80 1050 7811 1753 4971 1087 63.0 MiB 0.10 0.00 5.38315 -149.438 -5.38315 5.38315 0.33 0.000688856 0.000640885 0.0290867 0.0270305 -1 -1 -1 -1 32 3345 25 6.89349e+06 352346 586450. 2029.24 0.86 0.115075 0.10053 25474 144626 -1 2357 19 1556 2826 200073 48417 4.30019 4.30019 -144.205 -4.30019 0 0 744469. 2576.02 0.03 0.08 0.12 -1 -1 0.03 0.0260687 0.0227533 142 34 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_006.v common 6.50 vpr 63.19 MiB -1 -1 0.24 18468 1 0.03 -1 -1 30296 -1 -1 36 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64704 32 32 366 295 1 231 100 17 17 289 -1 unnamed_device 24.2 MiB 1.97 1368 19124 5354 11242 2528 63.2 MiB 0.20 0.00 3.9181 -129.371 -3.9181 3.9181 0.33 0.000727192 0.000668329 0.0619439 0.0572887 -1 -1 -1 -1 34 3191 49 6.89349e+06 507378 618332. 2139.56 2.36 0.313352 0.271209 25762 151098 -1 2602 18 1437 2357 160277 38051 3.77285 3.77285 -129.656 -3.77285 0 0 787024. 2723.27 0.03 0.07 0.13 -1 -1 0.03 0.0257907 0.022465 160 58 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_007.v common 3.66 vpr 63.09 MiB -1 -1 0.24 18076 1 0.03 -1 -1 30616 -1 -1 23 27 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64608 27 32 259 221 1 159 82 17 17 289 -1 unnamed_device 23.4 MiB 1.06 879 11118 3409 5655 2054 63.1 MiB 0.10 0.00 4.18543 -114.454 -4.18543 4.18543 0.33 0.000554655 0.000516362 0.0367097 0.0341929 -1 -1 -1 -1 32 1862 23 6.89349e+06 324158 586450. 2029.24 0.56 0.103219 0.0906636 25474 144626 -1 1552 19 1103 1617 122140 28845 3.05681 3.05681 -101.377 -3.05681 0 0 744469. 2576.02 0.03 0.06 0.12 -1 -1 0.03 0.020955 0.0181463 104 34 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_008.v common 3.23 vpr 63.25 MiB -1 -1 0.24 17896 1 0.03 -1 -1 30072 -1 -1 33 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64768 31 32 271 219 1 164 96 17 17 289 -1 unnamed_device 23.7 MiB 0.69 1005 15426 4709 8488 2229 63.2 MiB 0.13 0.00 3.4228 -103.716 -3.4228 3.4228 0.34 0.000604642 0.000562503 0.0441211 0.0409163 -1 -1 -1 -1 28 2278 18 6.89349e+06 465097 531479. 1839.03 0.59 0.113764 0.100286 24610 126494 -1 1960 21 984 1876 126536 30064 2.74275 2.74275 -99.134 -2.74275 0 0 648988. 2245.63 0.03 0.07 0.11 -1 -1 0.03 0.024197 0.0208898 119 4 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_009.v common 4.33 vpr 62.99 MiB -1 -1 0.25 18400 1 0.03 -1 -1 30104 -1 -1 23 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64504 31 32 317 271 1 207 86 17 17 289 -1 unnamed_device 23.9 MiB 1.34 1155 7268 1767 5042 459 63.0 MiB 0.09 0.00 3.82142 -128.247 -3.82142 3.82142 0.35 0.000636774 0.000591731 0.0269233 0.0250475 -1 -1 -1 -1 26 2876 45 6.89349e+06 324158 503264. 1741.40 0.90 0.132233 0.114585 24322 120374 -1 2342 20 1613 2208 151619 36411 3.18635 3.18635 -129.05 -3.18635 0 0 618332. 2139.56 0.03 0.07 0.10 -1 -1 0.03 0.0244437 0.0211571 127 64 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_010.v common 3.73 vpr 63.29 MiB -1 -1 0.23 18084 1 0.03 -1 -1 30100 -1 -1 19 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64812 32 32 298 248 1 185 83 17 17 289 -1 unnamed_device 23.5 MiB 1.32 1016 13403 3997 7277 2129 63.3 MiB 0.13 0.00 4.04458 -135.099 -4.04458 4.04458 0.33 0.000622664 0.000578974 0.0484274 0.0450254 -1 -1 -1 -1 32 2225 21 6.89349e+06 267783 586450. 2029.24 0.44 0.0955189 0.085246 25474 144626 -1 1903 22 1388 1865 125529 29254 3.16081 3.16081 -123.282 -3.16081 0 0 744469. 2576.02 0.03 0.07 0.12 -1 -1 0.03 0.0257408 0.0222766 115 34 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_011.v common 4.16 vpr 63.26 MiB -1 -1 0.24 18540 1 0.03 -1 -1 30356 -1 -1 22 30 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64780 30 32 303 262 1 191 84 17 17 289 -1 unnamed_device 23.8 MiB 1.30 1088 5025 984 3702 339 63.3 MiB 0.07 0.00 4.60737 -131.829 -4.60737 4.60737 0.34 0.000620433 0.000577956 0.0189258 0.0176171 -1 -1 -1 -1 28 2554 23 6.89349e+06 310065 531479. 1839.03 0.73 0.0965181 0.0836945 24610 126494 -1 2229 56 2310 3097 367190 160866 3.73355 3.73355 -130.996 -3.73355 0 0 648988. 2245.63 0.03 0.20 0.11 -1 -1 0.03 0.0586778 0.0500746 121 63 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_012.v common 3.13 vpr 63.18 MiB -1 -1 0.13 18280 1 0.03 -1 -1 30140 -1 -1 18 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64692 32 32 276 237 1 171 82 17 17 289 -1 unnamed_device 23.6 MiB 1.10 901 12008 3961 5948 2099 63.2 MiB 0.06 0.00 3.74726 -113.02 -3.74726 3.74726 0.25 0.00026857 0.000246966 0.0193216 0.0178049 -1 -1 -1 -1 32 2217 28 6.89349e+06 253689 586450. 2029.24 0.42 0.0559151 0.0489354 25474 144626 -1 1652 16 887 1232 89434 21858 2.94461 2.94461 -102.907 -2.94461 0 0 744469. 2576.02 0.03 0.05 0.13 -1 -1 0.03 0.0193158 0.016865 103 34 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_013.v common 4.97 vpr 63.11 MiB -1 -1 0.25 18540 1 0.03 -1 -1 30284 -1 -1 25 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64620 32 32 344 272 1 209 89 17 17 289 -1 unnamed_device 23.9 MiB 1.57 1074 17909 6040 8736 3133 63.1 MiB 0.19 0.00 4.12632 -131.306 -4.12632 4.12632 0.33 0.000711974 0.000656424 0.0666116 0.0619691 -1 -1 -1 -1 34 2530 24 6.89349e+06 352346 618332. 2139.56 1.19 0.206474 0.181297 25762 151098 -1 2158 21 1742 2755 187996 44706 3.06371 3.06371 -119.293 -3.06371 0 0 787024. 2723.27 0.03 0.08 0.12 -1 -1 0.03 0.0278169 0.0241449 140 34 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_014.v common 4.61 vpr 63.06 MiB -1 -1 0.26 18368 1 0.03 -1 -1 30416 -1 -1 26 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64576 32 32 363 295 1 232 90 17 17 289 -1 unnamed_device 23.8 MiB 1.69 1317 8934 2260 6054 620 63.1 MiB 0.11 0.00 5.47091 -159.697 -5.47091 5.47091 0.34 0.000714498 0.000664629 0.034308 0.0318658 -1 -1 -1 -1 30 3054 31 6.89349e+06 366440 556674. 1926.21 0.79 0.134776 0.118237 25186 138497 -1 2456 20 1444 1896 112257 27701 4.29299 4.29299 -145.544 -4.29299 0 0 706193. 2443.58 0.03 0.07 0.11 -1 -1 0.03 0.0276819 0.0241024 150 61 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_015.v common 3.83 vpr 63.12 MiB -1 -1 0.23 17984 1 0.03 -1 -1 30328 -1 -1 21 29 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64632 29 32 248 215 1 160 82 17 17 289 -1 unnamed_device 23.9 MiB 1.19 800 6312 1422 4248 642 63.1 MiB 0.07 0.00 3.24338 -96.3619 -3.24338 3.24338 0.34 0.000543947 0.000506693 0.0209547 0.0194873 -1 -1 -1 -1 26 2192 20 6.89349e+06 295971 503264. 1741.40 0.54 0.0836996 0.0728293 24322 120374 -1 1835 19 1035 1404 99484 24827 3.30421 3.30421 -105.89 -3.30421 0 0 618332. 2139.56 0.03 0.06 0.10 -1 -1 0.03 0.0205603 0.0178196 99 27 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_016.v common 5.15 vpr 63.16 MiB -1 -1 0.25 18360 1 0.03 -1 -1 30420 -1 -1 27 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64676 32 32 370 297 1 234 91 17 17 289 -1 unnamed_device 24.0 MiB 2.18 1431 13351 3686 8381 1284 63.2 MiB 0.16 0.00 4.1691 -138.277 -4.1691 4.1691 0.34 0.000725196 0.000673597 0.0499479 0.0463746 -1 -1 -1 -1 32 3294 30 6.89349e+06 380534 586450. 2029.24 0.77 0.151269 0.133213 25474 144626 -1 2734 21 1994 3084 228982 52255 3.74455 3.74455 -136.57 -3.74455 0 0 744469. 2576.02 0.03 0.09 0.12 -1 -1 0.03 0.0292561 0.0254045 157 58 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_017.v common 4.44 vpr 63.09 MiB -1 -1 0.15 18504 1 0.03 -1 -1 30092 -1 -1 25 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64604 32 32 338 269 1 205 89 17 17 289 -1 unnamed_device 23.9 MiB 1.60 1160 9593 2673 5745 1175 63.1 MiB 0.11 0.00 4.11158 -133.367 -4.11158 4.11158 0.33 0.000685651 0.000637337 0.0352935 0.0328014 -1 -1 -1 -1 34 2547 20 6.89349e+06 352346 618332. 2139.56 0.97 0.173434 0.15089 25762 151098 -1 2202 19 1226 1793 150582 33445 2.96516 2.96516 -117.404 -2.96516 0 0 787024. 2723.27 0.03 0.04 0.09 -1 -1 0.03 0.0144492 0.0127946 138 34 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_018.v common 5.42 vpr 62.96 MiB -1 -1 0.14 18316 1 0.03 -1 -1 30408 -1 -1 24 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64476 32 32 323 276 1 215 88 17 17 289 -1 unnamed_device 23.8 MiB 1.51 1219 7888 1702 5732 454 63.0 MiB 0.10 0.00 3.59345 -126.377 -3.59345 3.59345 0.34 0.000652743 0.000606899 0.0293208 0.0272933 -1 -1 -1 -1 30 2682 34 6.89349e+06 338252 556674. 1926.21 1.97 0.239653 0.205887 25186 138497 -1 2052 17 1244 1673 101028 24727 2.79796 2.79796 -117.425 -2.79796 0 0 706193. 2443.58 0.03 0.06 0.11 -1 -1 0.03 0.0223332 0.0194694 128 65 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_019.v common 3.07 vpr 63.13 MiB -1 -1 0.20 18224 1 0.03 -1 -1 30144 -1 -1 16 30 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64644 30 32 222 206 1 141 78 17 17 289 -1 unnamed_device 23.7 MiB 0.69 830 12694 4493 6588 1613 63.1 MiB 0.10 0.00 2.70263 -92.4151 -2.70263 2.70263 0.33 0.000497119 0.000462474 0.0395541 0.0367909 -1 -1 -1 -1 26 1667 21 6.89349e+06 225501 503264. 1741.40 0.57 0.098353 0.0869129 24322 120374 -1 1469 15 644 725 56762 13692 2.10807 2.10807 -91.092 -2.10807 0 0 618332. 2139.56 0.03 0.04 0.10 -1 -1 0.03 0.0154699 0.0134615 79 34 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_020.v common 4.34 vpr 63.45 MiB -1 -1 0.12 18396 1 0.03 -1 -1 30352 -1 -1 21 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64972 31 32 291 243 1 179 84 17 17 289 -1 unnamed_device 23.8 MiB 1.54 893 15822 5900 7652 2270 63.4 MiB 0.16 0.00 4.76892 -141.867 -4.76892 4.76892 0.33 0.00061535 0.000572916 0.0553325 0.0514682 -1 -1 -1 -1 30 2276 47 6.89349e+06 295971 556674. 1926.21 0.89 0.152349 0.134171 25186 138497 -1 1693 19 941 1425 99203 23814 3.59095 3.59095 -125.815 -3.59095 0 0 706193. 2443.58 0.03 0.06 0.11 -1 -1 0.03 0.0232762 0.0202107 115 34 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_021.v common 4.49 vpr 63.07 MiB -1 -1 0.24 18576 1 0.03 -1 -1 30444 -1 -1 35 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64584 32 32 342 271 1 207 99 17 17 289 -1 unnamed_device 23.9 MiB 1.31 1197 19479 5549 11862 2068 63.1 MiB 0.19 0.00 4.72649 -149.912 -4.72649 4.72649 0.37 0.000706398 0.000656772 0.0619063 0.0575159 -1 -1 -1 -1 34 2608 22 6.89349e+06 493284 618332. 2139.56 1.01 0.197307 0.172912 25762 151098 -1 2194 20 1354 2047 139470 34278 4.03544 4.03544 -144.363 -4.03544 0 0 787024. 2723.27 0.03 0.07 0.12 -1 -1 0.03 0.0275815 0.0240026 150 34 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_022.v common 4.77 vpr 63.10 MiB -1 -1 0.25 18376 1 0.03 -1 -1 30376 -1 -1 25 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64612 32 32 372 300 1 229 89 17 17 289 -1 unnamed_device 23.9 MiB 1.25 1325 9791 2524 6598 669 63.1 MiB 0.13 0.00 4.60648 -139.803 -4.60648 4.60648 0.33 0.000731497 0.000680237 0.0409879 0.0380157 -1 -1 -1 -1 26 3361 41 6.89349e+06 352346 503264. 1741.40 1.33 0.161648 0.141511 24322 120374 -1 2926 25 2536 3825 316091 89851 3.9097 3.9097 -143.697 -3.9097 0 0 618332. 2139.56 0.03 0.12 0.10 -1 -1 0.03 0.0337451 0.0292678 154 62 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_023.v common 3.15 vpr 63.02 MiB -1 -1 0.21 18180 1 0.02 -1 -1 30560 -1 -1 19 26 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64532 26 32 190 182 1 126 77 17 17 289 -1 unnamed_device 23.6 MiB 0.72 539 10346 4260 5337 749 63.0 MiB 0.07 0.00 2.69961 -73.3828 -2.69961 2.69961 0.34 0.000428627 0.000398029 0.0284074 0.0263245 -1 -1 -1 -1 28 1430 47 6.89349e+06 267783 531479. 1839.03 0.60 0.100975 0.0884533 24610 126494 -1 1019 14 577 682 43677 12108 2.11835 2.11835 -70.8739 -2.11835 0 0 648988. 2245.63 0.02 0.02 0.07 -1 -1 0.02 0.0077792 0.00694829 72 30 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_024.v common 4.58 vpr 63.12 MiB -1 -1 0.23 17996 1 0.03 -1 -1 30308 -1 -1 23 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64640 32 32 285 227 1 169 87 17 17 289 -1 unnamed_device 23.6 MiB 0.98 1063 11799 3182 7057 1560 63.1 MiB 0.12 0.00 4.60563 -130.083 -4.60563 4.60563 0.33 0.000618593 0.000574802 0.0400595 0.0372659 -1 -1 -1 -1 32 2381 24 6.89349e+06 324158 586450. 2029.24 1.59 0.232922 0.201157 25474 144626 -1 1999 22 1208 2278 146746 35126 3.61225 3.61225 -118.524 -3.61225 0 0 744469. 2576.02 0.03 0.09 0.12 -1 -1 0.03 0.0317339 0.0274249 119 3 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_025.v common 3.02 vpr 62.83 MiB -1 -1 0.21 17648 1 0.02 -1 -1 30064 -1 -1 12 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64340 32 32 173 169 1 114 76 17 17 289 -1 unnamed_device 23.6 MiB 0.50 458 9356 2990 4431 1935 62.8 MiB 0.06 0.00 2.39862 -72.6001 -2.39862 2.39862 0.33 0.000423472 0.000392915 0.0258794 0.024019 -1 -1 -1 -1 28 1318 45 6.89349e+06 169126 531479. 1839.03 0.63 0.0914474 0.079783 24610 126494 -1 1010 26 617 760 72909 29156 2.06796 2.06796 -77.4474 -2.06796 0 0 648988. 2245.63 0.03 0.06 0.10 -1 -1 0.03 0.0206634 0.0178415 65 3 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_026.v common 4.11 vpr 63.18 MiB -1 -1 0.24 18204 1 0.03 -1 -1 30152 -1 -1 22 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64696 32 32 300 245 1 187 86 17 17 289 -1 unnamed_device 23.8 MiB 1.33 1053 11993 3304 7573 1116 63.2 MiB 0.13 0.00 4.96363 -136.721 -4.96363 4.96363 0.33 0.000634294 0.000590454 0.0424028 0.0394305 -1 -1 -1 -1 26 2626 25 6.89349e+06 310065 503264. 1741.40 0.71 0.126284 0.111236 24322 120374 -1 2255 19 1275 1846 130434 31937 4.03626 4.03626 -132.507 -4.03626 0 0 618332. 2139.56 0.03 0.07 0.10 -1 -1 0.03 0.0237551 0.0206724 121 24 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_027.v common 4.10 vpr 63.39 MiB -1 -1 0.13 17964 1 0.03 -1 -1 30384 -1 -1 31 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64916 32 32 297 233 1 177 95 17 17 289 -1 unnamed_device 23.7 MiB 0.72 1102 17591 5006 10257 2328 63.4 MiB 0.16 0.00 3.451 -111.885 -3.451 3.451 0.33 0.00063647 0.000592222 0.0539327 0.050037 -1 -1 -1 -1 28 2445 37 6.89349e+06 436909 531479. 1839.03 0.74 0.144368 0.127087 24610 126494 -1 2122 22 1263 2289 148196 36337 2.70081 2.70081 -107.98 -2.70081 0 0 648988. 2245.63 0.03 0.07 0.10 -1 -1 0.03 0.0265493 0.0230306 130 3 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_028.v common 4.69 vpr 63.19 MiB -1 -1 0.22 18324 1 0.04 -1 -1 30232 -1 -1 25 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64704 32 32 338 277 1 215 89 17 17 289 -1 unnamed_device 24.0 MiB 1.53 1243 15731 5322 7942 2467 63.2 MiB 0.16 0.00 4.85308 -135.583 -4.85308 4.85308 0.34 0.000677722 0.000629341 0.0560551 0.0520986 -1 -1 -1 -1 34 2722 22 6.89349e+06 352346 618332. 2139.56 1.01 0.191487 0.167422 25762 151098 -1 2278 31 1627 2535 251591 103662 3.88626 3.88626 -128.863 -3.88626 0 0 787024. 2723.27 0.03 0.13 0.12 -1 -1 0.03 0.0378982 0.03271 137 50 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_029.v common 4.12 vpr 63.19 MiB -1 -1 0.24 18212 1 0.03 -1 -1 30176 -1 -1 20 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64704 32 32 284 241 1 177 84 17 17 289 -1 unnamed_device 23.5 MiB 1.50 858 7404 1661 5300 443 63.2 MiB 0.08 0.00 3.57057 -118.05 -3.57057 3.57057 0.33 0.000603773 0.000561645 0.0263248 0.0244661 -1 -1 -1 -1 30 2159 29 6.89349e+06 281877 556674. 1926.21 0.61 0.10458 0.0911146 25186 138497 -1 1647 24 1045 1462 82574 21562 2.89411 2.89411 -113.44 -2.89411 0 0 706193. 2443.58 0.03 0.06 0.11 -1 -1 0.03 0.027174 0.023497 111 34 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_030.v common 3.96 vpr 63.05 MiB -1 -1 0.23 18120 1 0.03 -1 -1 30204 -1 -1 19 30 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64560 30 32 262 227 1 161 81 17 17 289 -1 unnamed_device 23.5 MiB 1.22 853 8831 2240 5845 746 63.0 MiB 0.09 0.00 4.14292 -115.815 -4.14292 4.14292 0.34 0.000568229 0.000527448 0.0307247 0.0285885 -1 -1 -1 -1 32 2011 26 6.89349e+06 267783 586450. 2029.24 0.56 0.102284 0.0894845 25474 144626 -1 1708 19 771 1233 86550 20089 3.0851 3.0851 -107.118 -3.0851 0 0 744469. 2576.02 0.03 0.05 0.12 -1 -1 0.03 0.0214461 0.0185758 102 34 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_031.v common 3.94 vpr 63.12 MiB -1 -1 0.24 18036 1 0.03 -1 -1 30032 -1 -1 25 28 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64632 28 32 260 223 1 163 85 17 17 289 -1 unnamed_device 23.6 MiB 1.23 910 14593 5077 7414 2102 63.1 MiB 0.13 0.00 4.29929 -120.332 -4.29929 4.29929 0.34 0.000557357 0.000518617 0.0461162 0.0428912 -1 -1 -1 -1 32 2100 20 6.89349e+06 352346 586450. 2029.24 0.56 0.111197 0.098241 25474 144626 -1 1696 21 895 1529 95985 22999 3.23235 3.23235 -110.54 -3.23235 0 0 744469. 2576.02 0.03 0.03 0.08 -1 -1 0.03 0.0122668 0.0107644 108 34 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_032.v common 3.76 vpr 63.04 MiB -1 -1 0.23 17900 1 0.03 -1 -1 30224 -1 -1 18 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64548 32 32 253 210 1 156 82 17 17 289 -1 unnamed_device 23.5 MiB 1.06 749 9160 2232 6447 481 63.0 MiB 0.09 0.00 3.86328 -116.366 -3.86328 3.86328 0.33 0.000573773 0.000532341 0.031373 0.0291874 -1 -1 -1 -1 28 2273 28 6.89349e+06 253689 531479. 1839.03 0.68 0.104099 0.0910894 24610 126494 -1 1785 34 1750 3035 275769 99959 2.87716 2.87716 -113.369 -2.87716 0 0 648988. 2245.63 0.03 0.12 0.10 -1 -1 0.03 0.0338085 0.0290584 101 3 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_033.v common 3.63 vpr 63.10 MiB -1 -1 0.24 18240 1 0.03 -1 -1 30132 -1 -1 21 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64612 31 32 271 231 1 172 84 17 17 289 -1 unnamed_device 23.5 MiB 1.03 896 7770 1848 5501 421 63.1 MiB 0.09 0.00 3.62655 -110.965 -3.62655 3.62655 0.33 0.000583477 0.000543265 0.0267762 0.0249136 -1 -1 -1 -1 26 2417 31 6.89349e+06 295971 503264. 1741.40 0.65 0.104233 0.0908852 24322 120374 -1 1997 26 1435 2066 169243 52516 2.81636 2.81636 -107.029 -2.81636 0 0 618332. 2139.56 0.03 0.08 0.10 -1 -1 0.03 0.0282252 0.024338 105 30 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_034.v common 4.52 vpr 63.24 MiB -1 -1 0.24 18424 1 0.03 -1 -1 30452 -1 -1 24 29 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64760 29 32 291 250 1 185 85 17 17 289 -1 unnamed_device 23.9 MiB 1.72 987 11989 3361 6675 1953 63.2 MiB 0.11 0.00 3.73533 -108.087 -3.73533 3.73533 0.34 0.000596376 0.000554792 0.0403117 0.0374762 -1 -1 -1 -1 26 2360 26 6.89349e+06 338252 503264. 1741.40 0.89 0.122772 0.107939 24322 120374 -1 2030 21 1210 1703 126678 30193 2.95146 2.95146 -109.609 -2.95146 0 0 618332. 2139.56 0.02 0.04 0.07 -1 -1 0.02 0.0132468 0.0116048 117 54 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_035.v common 5.23 vpr 63.10 MiB -1 -1 0.24 18260 1 0.03 -1 -1 30420 -1 -1 28 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64616 32 32 367 282 1 224 92 17 17 289 -1 unnamed_device 23.9 MiB 1.16 1265 10649 3041 6726 882 63.1 MiB 0.13 0.00 4.57545 -131.234 -4.57545 4.57545 0.33 0.000735448 0.000683785 0.0403333 0.0374629 -1 -1 -1 -1 28 3232 44 6.89349e+06 394628 531479. 1839.03 2.16 0.272148 0.23506 24610 126494 -1 2714 22 1537 2644 200999 47427 3.7547 3.7547 -129.761 -3.7547 0 0 648988. 2245.63 0.02 0.05 0.07 -1 -1 0.02 0.0172363 0.0151812 155 29 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_036.v common 4.75 vpr 63.11 MiB -1 -1 0.25 18380 1 0.03 -1 -1 30400 -1 -1 29 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64628 32 32 391 311 1 250 93 17 17 289 -1 unnamed_device 24.1 MiB 1.73 1433 15423 4226 9063 2134 63.1 MiB 0.18 0.00 4.56723 -154.163 -4.56723 4.56723 0.33 0.000759097 0.000705105 0.0586858 0.0546043 -1 -1 -1 -1 30 3141 34 6.89349e+06 408721 556674. 1926.21 0.84 0.164331 0.145039 25186 138497 -1 2546 22 2111 2906 187308 44776 3.63025 3.63025 -138.661 -3.63025 0 0 706193. 2443.58 0.03 0.09 0.11 -1 -1 0.03 0.0322373 0.0280504 162 65 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_037.v common 3.71 vpr 63.12 MiB -1 -1 0.24 18508 1 0.03 -1 -1 30236 -1 -1 18 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64632 31 32 279 237 1 166 81 17 17 289 -1 unnamed_device 23.6 MiB 1.01 863 12331 3145 7318 1868 63.1 MiB 0.12 0.00 4.00748 -119.789 -4.00748 4.00748 0.34 0.000603096 0.000561509 0.0437123 0.0406478 -1 -1 -1 -1 32 1949 21 6.89349e+06 253689 586450. 2029.24 0.58 0.11396 0.100554 25474 144626 -1 1645 19 873 1326 100623 24502 3.22455 3.22455 -109.63 -3.22455 0 0 744469. 2576.02 0.03 0.06 0.14 -1 -1 0.03 0.0229871 0.0200214 106 34 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_038.v common 4.53 vpr 63.14 MiB -1 -1 0.28 18500 1 0.03 -1 -1 30392 -1 -1 28 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64656 31 32 370 297 1 235 91 17 17 289 -1 unnamed_device 24.2 MiB 1.85 1334 16615 5524 9183 1908 63.1 MiB 0.18 0.00 4.35803 -138.286 -4.35803 4.35803 0.33 0.000727677 0.000676594 0.0611783 0.0568038 -1 -1 -1 -1 32 3139 23 6.89349e+06 394628 586450. 2029.24 0.64 0.148113 0.131113 25474 144626 -1 2593 17 1393 2113 153401 34955 3.66925 3.66925 -132.64 -3.66925 0 0 744469. 2576.02 0.03 0.04 0.08 -1 -1 0.03 0.0137367 0.0121843 154 61 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_039.v common 4.31 vpr 63.20 MiB -1 -1 0.26 18304 1 0.03 -1 -1 30332 -1 -1 28 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64720 31 32 377 302 1 241 91 17 17 289 -1 unnamed_device 24.1 MiB 1.60 1343 10699 2924 7083 692 63.2 MiB 0.07 0.00 5.62498 -166.87 -5.62498 5.62498 0.26 0.000327803 0.000302305 0.0189607 0.0174255 -1 -1 -1 -1 34 3178 21 6.89349e+06 394628 618332. 2139.56 0.88 0.100962 0.0873837 25762 151098 -1 2774 21 2014 3034 249717 56521 4.87549 4.87549 -160.742 -4.87549 0 0 787024. 2723.27 0.03 0.09 0.12 -1 -1 0.03 0.0301309 0.0261619 159 64 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_040.v common 4.99 vpr 63.14 MiB -1 -1 0.26 18304 1 0.03 -1 -1 30548 -1 -1 30 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64652 31 32 383 305 1 240 93 17 17 289 -1 unnamed_device 24.1 MiB 2.16 1180 16893 5958 8269 2666 63.1 MiB 0.18 0.00 5.57018 -172.63 -5.57018 5.57018 0.33 0.000739064 0.000686488 0.0616354 0.0572376 -1 -1 -1 -1 32 2992 25 6.89349e+06 422815 586450. 2029.24 0.67 0.153088 0.135511 25474 144626 -1 2271 22 1773 2638 157146 39758 4.86068 4.86068 -161.708 -4.86068 0 0 744469. 2576.02 0.03 0.08 0.12 -1 -1 0.03 0.0314788 0.0273736 163 64 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_041.v common 4.16 vpr 63.20 MiB -1 -1 0.26 18440 1 0.03 -1 -1 30376 -1 -1 27 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64720 31 32 352 285 1 223 90 17 17 289 -1 unnamed_device 24.0 MiB 1.25 1293 12150 3370 7532 1248 63.2 MiB 0.14 0.00 4.06478 -128.581 -4.06478 4.06478 0.34 0.000699316 0.000650208 0.0445193 0.0413753 -1 -1 -1 -1 30 2866 44 6.89349e+06 380534 556674. 1926.21 0.76 0.154584 0.135395 25186 138497 -1 2238 19 1372 2024 123195 28998 2.85031 2.85031 -111.874 -2.85031 0 0 706193. 2443.58 0.03 0.07 0.11 -1 -1 0.03 0.026008 0.0226341 146 55 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_042.v common 3.87 vpr 63.28 MiB -1 -1 0.15 18076 1 0.03 -1 -1 30476 -1 -1 22 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64796 32 32 291 242 1 188 86 17 17 289 -1 unnamed_device 23.7 MiB 1.37 1096 9347 2440 6352 555 63.3 MiB 0.10 0.00 4.52484 -122.151 -4.52484 4.52484 0.34 0.000629764 0.000586024 0.0325575 0.0302635 -1 -1 -1 -1 26 2789 28 6.89349e+06 310065 503264. 1741.40 0.59 0.119867 0.104736 24322 120374 -1 2323 23 1271 1766 129816 31818 4.20376 4.20376 -129.093 -4.20376 0 0 618332. 2139.56 0.03 0.07 0.10 -1 -1 0.03 0.0269782 0.0233675 114 27 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_043.v common 5.49 vpr 63.48 MiB -1 -1 0.28 18520 1 0.03 -1 -1 30440 -1 -1 35 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65000 32 32 457 356 1 296 99 17 17 289 -1 unnamed_device 24.4 MiB 2.27 1650 16971 5334 10464 1173 63.5 MiB 0.21 0.00 5.33145 -171.907 -5.33145 5.33145 0.33 0.000866659 0.000806268 0.0674064 0.0626669 -1 -1 -1 -1 30 4216 33 6.89349e+06 493284 556674. 1926.21 0.96 0.188556 0.166125 25186 138497 -1 3338 24 2618 3983 274830 62997 4.22004 4.22004 -160.102 -4.22004 0 0 706193. 2443.58 0.03 0.11 0.11 -1 -1 0.03 0.038707 0.0334571 198 87 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_044.v common 3.45 vpr 63.15 MiB -1 -1 0.22 18152 1 0.03 -1 -1 30152 -1 -1 19 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64668 31 32 261 225 1 171 82 17 17 289 -1 unnamed_device 23.6 MiB 0.92 942 13966 3994 8618 1354 63.2 MiB 0.13 0.00 3.7719 -110.938 -3.7719 3.7719 0.34 0.00056775 0.000527039 0.0461714 0.0428804 -1 -1 -1 -1 32 2071 21 6.89349e+06 267783 586450. 2029.24 0.55 0.112744 0.0995375 25474 144626 -1 1805 18 1021 1430 85739 21011 2.97291 2.97291 -107.69 -2.97291 0 0 744469. 2576.02 0.03 0.05 0.12 -1 -1 0.03 0.0206187 0.0179139 101 28 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_045.v common 4.28 vpr 63.04 MiB -1 -1 0.25 18404 1 0.03 -1 -1 30324 -1 -1 25 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64556 31 32 337 267 1 207 88 17 17 289 -1 unnamed_device 23.9 MiB 1.40 1128 5158 1029 3935 194 63.0 MiB 0.07 0.00 4.79572 -142.454 -4.79572 4.79572 0.33 0.000682908 0.000635379 0.020152 0.018729 -1 -1 -1 -1 30 3093 24 6.89349e+06 352346 556674. 1926.21 0.79 0.10569 0.0919385 25186 138497 -1 2432 21 1436 2183 149532 35823 3.8035 3.8035 -133.873 -3.8035 0 0 706193. 2443.58 0.03 0.10 0.11 -1 -1 0.03 0.0356862 0.030933 139 34 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_046.v common 4.46 vpr 62.96 MiB -1 -1 0.24 18576 1 0.03 -1 -1 30268 -1 -1 26 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64468 32 32 349 284 1 222 90 17 17 289 -1 unnamed_device 23.8 MiB 1.47 1260 16572 5549 8089 2934 63.0 MiB 0.18 0.00 4.31681 -131.797 -4.31681 4.31681 0.33 0.000692411 0.000641627 0.0595607 0.0553191 -1 -1 -1 -1 30 3482 26 6.89349e+06 366440 556674. 1926.21 0.88 0.149362 0.132119 25186 138497 -1 2487 19 1298 2160 137638 32282 3.5623 3.5623 -128.005 -3.5623 0 0 706193. 2443.58 0.03 0.07 0.11 -1 -1 0.03 0.0258789 0.0225371 144 53 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_047.v common 3.55 vpr 63.14 MiB -1 -1 0.22 17968 1 0.03 -1 -1 30124 -1 -1 27 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64660 32 32 291 230 1 175 91 17 17 289 -1 unnamed_device 23.5 MiB 0.86 1024 12535 4004 6635 1896 63.1 MiB 0.12 0.00 4.24939 -127.739 -4.24939 4.24939 0.34 0.000626882 0.000582042 0.0404428 0.0375685 -1 -1 -1 -1 30 2604 24 6.89349e+06 380534 556674. 1926.21 0.80 0.121426 0.106891 25186 138497 -1 2002 21 1172 2290 138411 33291 3.7797 3.7797 -124.432 -3.7797 0 0 706193. 2443.58 0.03 0.04 0.08 -1 -1 0.03 0.0133723 0.0117291 123 3 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_048.v common 4.77 vpr 63.05 MiB -1 -1 0.28 18268 1 0.03 -1 -1 30436 -1 -1 26 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64568 32 32 353 287 1 220 90 17 17 289 -1 unnamed_device 23.9 MiB 1.62 1205 14160 4623 7104 2433 63.1 MiB 0.15 0.00 4.53365 -132.672 -4.53365 4.53365 0.33 0.000702424 0.000652946 0.0516625 0.047998 -1 -1 -1 -1 34 2570 25 6.89349e+06 366440 618332. 2139.56 0.99 0.192065 0.16748 25762 151098 -1 2196 20 1406 1993 141307 33538 2.97461 2.97461 -113.427 -2.97461 0 0 787024. 2723.27 0.03 0.08 0.14 -1 -1 0.03 0.0287041 0.0250712 144 55 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_049.v common 4.25 vpr 62.99 MiB -1 -1 0.20 18388 1 0.03 -1 -1 30456 -1 -1 27 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64500 32 32 361 291 1 231 91 17 17 289 -1 unnamed_device 23.8 MiB 1.62 1319 11719 3360 7306 1053 63.0 MiB 0.13 0.00 4.35427 -138.392 -4.35427 4.35427 0.34 0.00071535 0.000665097 0.0433557 0.0402936 -1 -1 -1 -1 32 3081 26 6.89349e+06 380534 586450. 2029.24 0.66 0.134295 0.118074 25474 144626 -1 2546 19 1445 2296 155633 36953 3.5784 3.5784 -132.657 -3.5784 0 0 744469. 2576.02 0.03 0.07 0.12 -1 -1 0.03 0.0272115 0.0237062 150 55 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_050.v common 4.45 vpr 63.27 MiB -1 -1 0.15 18284 1 0.03 -1 -1 30272 -1 -1 29 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64784 32 32 382 305 1 243 93 17 17 289 -1 unnamed_device 24.2 MiB 1.82 1354 11013 2770 7342 901 63.3 MiB 0.14 0.00 4.10168 -137.131 -4.10168 4.10168 0.34 0.000748223 0.000695404 0.0415654 0.0385876 -1 -1 -1 -1 30 3073 25 6.89349e+06 408721 556674. 1926.21 0.66 0.13636 0.119723 25186 138497 -1 2540 20 1947 2716 173555 41121 3.04971 3.04971 -124.464 -3.04971 0 0 706193. 2443.58 0.03 0.08 0.11 -1 -1 0.03 0.0287943 0.0250355 159 62 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_051.v common 3.92 vpr 63.27 MiB -1 -1 0.23 18164 1 0.03 -1 -1 30292 -1 -1 23 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64788 32 32 306 248 1 188 87 17 17 289 -1 unnamed_device 23.9 MiB 1.18 1147 11415 2989 7053 1373 63.3 MiB 0.13 0.00 4.54599 -133.889 -4.54599 4.54599 0.37 0.000644979 0.000600797 0.0406247 0.0377905 -1 -1 -1 -1 32 2476 35 6.89349e+06 324158 586450. 2029.24 0.69 0.129621 0.113845 25474 144626 -1 2005 18 990 1620 98880 24505 3.75136 3.75136 -128.852 -3.75136 0 0 744469. 2576.02 0.03 0.06 0.12 -1 -1 0.03 0.0228982 0.0199258 123 24 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_052.v common 3.57 vpr 62.88 MiB -1 -1 0.25 18484 1 0.03 -1 -1 30248 -1 -1 23 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64392 32 32 319 257 1 203 87 17 17 289 -1 unnamed_device 23.8 MiB 1.09 1148 6615 1319 4717 579 62.9 MiB 0.08 0.00 4.91833 -140.754 -4.91833 4.91833 0.33 0.000637588 0.000591183 0.024425 0.0226801 -1 -1 -1 -1 30 2668 20 6.89349e+06 324158 556674. 1926.21 0.52 0.0904977 0.0791909 25186 138497 -1 2236 17 1169 1725 100590 25384 3.88906 3.88906 -133.285 -3.88906 0 0 706193. 2443.58 0.03 0.06 0.11 -1 -1 0.03 0.0236237 0.0206546 131 29 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_053.v common 4.35 vpr 63.11 MiB -1 -1 0.13 18300 1 0.03 -1 -1 30220 -1 -1 26 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64620 31 32 373 299 1 227 89 17 17 289 -1 unnamed_device 23.9 MiB 1.37 1306 13157 4083 6906 2168 63.1 MiB 0.17 0.00 5.25751 -154.663 -5.25751 5.25751 0.34 0.000721686 0.000669571 0.0502774 0.0466585 -1 -1 -1 -1 32 3764 25 6.89349e+06 366440 586450. 2029.24 0.85 0.145706 0.128385 25474 144626 -1 2751 21 1664 2716 207648 48307 4.15579 4.15579 -142.835 -4.15579 0 0 744469. 2576.02 0.03 0.09 0.12 -1 -1 0.03 0.0297176 0.0258399 155 62 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_054.v common 5.33 vpr 63.47 MiB -1 -1 0.25 18388 1 0.03 -1 -1 30332 -1 -1 27 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64992 32 32 387 315 1 249 91 17 17 289 -1 unnamed_device 24.4 MiB 2.16 1369 10699 2773 7321 605 63.5 MiB 0.13 0.00 4.4039 -135.938 -4.4039 4.4039 0.34 0.000745108 0.000692475 0.0415056 0.03857 -1 -1 -1 -1 30 3425 47 6.89349e+06 380534 556674. 1926.21 0.90 0.159767 0.139571 25186 138497 -1 2692 20 1852 2783 171746 42117 3.78786 3.78786 -132.451 -3.78786 0 0 706193. 2443.58 0.03 0.08 0.11 -1 -1 0.03 0.0292884 0.0254611 160 77 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_055.v common 3.68 vpr 63.38 MiB -1 -1 0.22 18284 1 0.03 -1 -1 30324 -1 -1 16 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64904 32 32 251 219 1 156 80 17 17 289 -1 unnamed_device 23.9 MiB 1.15 968 9884 3170 5972 742 63.4 MiB 0.10 0.00 3.65338 -113.663 -3.65338 3.65338 0.34 0.000557214 0.000519308 0.0338722 0.0315232 -1 -1 -1 -1 26 2145 22 6.89349e+06 225501 503264. 1741.40 0.55 0.101291 0.0888997 24322 120374 -1 1959 19 996 1479 106757 25612 2.85716 2.85716 -108.907 -2.85716 0 0 618332. 2139.56 0.03 0.06 0.10 -1 -1 0.03 0.0212693 0.0184118 93 23 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_056.v common 4.22 vpr 63.04 MiB -1 -1 0.24 18256 1 0.03 -1 -1 30104 -1 -1 23 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64552 32 32 341 285 1 219 87 17 17 289 -1 unnamed_device 23.9 MiB 1.46 1204 15063 4606 8153 2304 63.0 MiB 0.16 0.00 4.24829 -145.937 -4.24829 4.24829 0.34 0.000655336 0.000607838 0.0545409 0.0505648 -1 -1 -1 -1 32 2744 26 6.89349e+06 324158 586450. 2029.24 0.69 0.140808 0.124229 25474 144626 -1 2232 22 1780 2381 178535 41142 3.41065 3.41065 -135.918 -3.41065 0 0 744469. 2576.02 0.03 0.08 0.12 -1 -1 0.03 0.0286557 0.0248215 136 65 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_057.v common 4.37 vpr 63.22 MiB -1 -1 0.14 18388 1 0.03 -1 -1 30348 -1 -1 28 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64736 32 32 387 293 1 236 92 17 17 289 -1 unnamed_device 24.1 MiB 1.35 1443 17066 4876 10038 2152 63.2 MiB 0.22 0.00 5.64443 -167.498 -5.64443 5.64443 0.34 0.000765852 0.000709055 0.0743247 0.0688831 -1 -1 -1 -1 30 3359 23 6.89349e+06 394628 556674. 1926.21 0.95 0.173139 0.153793 25186 138497 -1 2667 19 1557 2441 145588 35515 4.518 4.518 -152.271 -4.518 0 0 706193. 2443.58 0.03 0.07 0.12 -1 -1 0.03 0.0286564 0.0249778 165 31 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_058.v common 3.82 vpr 62.89 MiB -1 -1 0.23 18300 1 0.03 -1 -1 30372 -1 -1 24 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64404 32 32 340 270 1 212 88 17 17 289 -1 unnamed_device 23.7 MiB 1.21 1010 9253 2367 6211 675 62.9 MiB 0.11 0.00 4.52842 -139.562 -4.52842 4.52842 0.33 0.000695565 0.000647443 0.0350358 0.0325681 -1 -1 -1 -1 32 2815 22 6.89349e+06 338252 586450. 2029.24 0.62 0.11666 0.102399 25474 144626 -1 2068 20 1496 2142 129245 33747 3.14581 3.14581 -124.156 -3.14581 0 0 744469. 2576.02 0.03 0.04 0.08 -1 -1 0.03 0.0147189 0.013011 138 34 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_059.v common 3.76 vpr 63.19 MiB -1 -1 0.22 18128 1 0.03 -1 -1 30292 -1 -1 32 30 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64704 30 32 278 235 1 175 94 17 17 289 -1 unnamed_device 23.5 MiB 1.14 1024 12874 3468 8240 1166 63.2 MiB 0.12 0.00 4.47049 -132.736 -4.47049 4.47049 0.34 0.000591147 0.000550387 0.0376377 0.035018 -1 -1 -1 -1 30 2105 29 6.89349e+06 451003 556674. 1926.21 0.65 0.114659 0.100534 25186 138497 -1 1762 16 808 1327 79604 19215 3.28235 3.28235 -119.718 -3.28235 0 0 706193. 2443.58 0.03 0.03 0.08 -1 -1 0.03 0.0110994 0.00986156 118 34 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_060.v common 6.75 vpr 63.58 MiB -1 -1 0.27 18564 1 0.03 -1 -1 30328 -1 -1 30 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65108 32 32 431 332 1 270 94 17 17 289 -1 unnamed_device 24.4 MiB 2.13 1619 17986 5403 10561 2022 63.6 MiB 0.24 0.00 6.59551 -192.054 -6.59551 6.59551 0.33 0.000831495 0.000773267 0.0731955 0.0679824 -1 -1 -1 -1 28 4388 40 6.89349e+06 422815 531479. 1839.03 1.97 0.200701 0.177309 24610 126494 -1 3470 20 2642 4025 308722 70368 5.71403 5.71403 -194.029 -5.71403 0 0 648988. 2245.63 0.03 0.11 0.10 -1 -1 0.03 0.032305 0.0280885 182 65 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_061.v common 3.81 vpr 63.02 MiB -1 -1 0.25 18456 1 0.03 -1 -1 30388 -1 -1 24 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64536 32 32 336 268 1 205 88 17 17 289 -1 unnamed_device 23.9 MiB 1.08 1137 10813 2763 7196 854 63.0 MiB 0.12 0.00 4.72832 -143.926 -4.72832 4.72832 0.33 0.000692091 0.000644121 0.0406228 0.0377437 -1 -1 -1 -1 32 2643 21 6.89349e+06 338252 586450. 2029.24 0.61 0.120863 0.106453 25474 144626 -1 2018 21 1352 1915 128396 31135 3.77496 3.77496 -130.281 -3.77496 0 0 744469. 2576.02 0.03 0.07 0.12 -1 -1 0.03 0.0278993 0.0242939 137 34 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_062.v common 3.51 vpr 62.98 MiB -1 -1 0.21 17716 1 0.03 -1 -1 30348 -1 -1 28 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64496 32 32 231 199 1 142 92 17 17 289 -1 unnamed_device 23.5 MiB 0.66 899 10442 2539 7234 669 63.0 MiB 0.09 0.00 3.74796 -106.15 -3.74796 3.74796 0.34 0.000537312 0.000498943 0.0288017 0.0267915 -1 -1 -1 -1 26 2030 41 6.89349e+06 394628 503264. 1741.40 0.74 0.111582 0.0973333 24322 120374 -1 1784 16 857 1521 132124 30767 2.76611 2.76611 -102.751 -2.76611 0 0 618332. 2139.56 0.02 0.03 0.07 -1 -1 0.02 0.00972577 0.00858825 96 3 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_063.v common 4.60 vpr 63.09 MiB -1 -1 0.24 18380 1 0.03 -1 -1 30100 -1 -1 26 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64600 32 32 349 273 1 214 90 17 17 289 -1 unnamed_device 23.9 MiB 1.33 1355 16170 4932 9466 1772 63.1 MiB 0.19 0.00 5.58068 -148.576 -5.58068 5.58068 0.33 0.000719063 0.000665538 0.059174 0.0549681 -1 -1 -1 -1 32 3180 29 6.89349e+06 366440 586450. 2029.24 0.69 0.151357 0.133795 25474 144626 -1 2518 19 1325 2433 219000 66008 4.4206 4.4206 -142.493 -4.4206 0 0 744469. 2576.02 0.03 0.09 0.12 -1 -1 0.03 0.0263949 0.023001 146 29 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_064.v common 3.67 vpr 63.05 MiB -1 -1 0.21 17800 1 0.03 -1 -1 30244 -1 -1 21 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64568 32 32 247 207 1 153 85 17 17 289 -1 unnamed_device 23.5 MiB 0.87 891 15337 5125 8270 1942 63.1 MiB 0.13 0.00 3.52535 -111.929 -3.52535 3.52535 0.33 0.000559146 0.000520281 0.0482944 0.0449195 -1 -1 -1 -1 26 2290 19 6.89349e+06 295971 503264. 1741.40 0.72 0.114782 0.101391 24322 120374 -1 1920 21 1302 2203 154418 36179 3.04446 3.04446 -113.324 -3.04446 0 0 618332. 2139.56 0.03 0.07 0.10 -1 -1 0.03 0.0227125 0.0196338 99 3 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_065.v common 3.64 vpr 63.23 MiB -1 -1 0.24 18144 1 0.03 -1 -1 30288 -1 -1 22 30 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64744 30 32 278 235 1 175 84 17 17 289 -1 unnamed_device 23.6 MiB 0.98 917 10881 3295 5387 2199 63.2 MiB 0.11 0.00 4.06868 -118.013 -4.06868 4.06868 0.33 0.000597679 0.000556849 0.0374305 0.0348579 -1 -1 -1 -1 32 2116 27 6.89349e+06 310065 586450. 2029.24 0.61 0.112829 0.0991106 25474 144626 -1 1713 20 1160 1632 117204 27751 2.95736 2.95736 -107.161 -2.95736 0 0 744469. 2576.02 0.03 0.06 0.12 -1 -1 0.03 0.0230017 0.0199624 109 34 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_066.v common 4.84 vpr 63.07 MiB -1 -1 0.28 18368 1 0.03 -1 -1 30332 -1 -1 28 29 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64588 29 32 355 287 1 223 89 17 17 289 -1 unnamed_device 23.9 MiB 1.72 1229 6425 1379 4495 551 63.1 MiB 0.08 0.00 4.8249 -138.276 -4.8249 4.8249 0.34 0.000700395 0.000650932 0.0248723 0.0231064 -1 -1 -1 -1 26 3328 33 6.89349e+06 394628 503264. 1741.40 0.88 0.125183 0.109068 24322 120374 -1 2799 24 2068 3062 210909 50490 3.7379 3.7379 -132.702 -3.7379 0 0 618332. 2139.56 0.03 0.09 0.10 -1 -1 0.03 0.0314127 0.027215 152 62 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_067.v common 4.54 vpr 63.60 MiB -1 -1 0.24 18384 1 0.03 -1 -1 30424 -1 -1 27 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65124 32 32 358 289 1 230 91 17 17 289 -1 unnamed_device 23.8 MiB 1.66 1245 10291 2585 6901 805 63.6 MiB 0.12 0.00 4.97429 -154.181 -4.97429 4.97429 0.33 0.000704582 0.000654569 0.0379535 0.035253 -1 -1 -1 -1 28 3175 41 6.89349e+06 380534 531479. 1839.03 0.85 0.143398 0.125254 24610 126494 -1 2476 20 1870 2854 177942 48948 4.35429 4.35429 -156.801 -4.35429 0 0 648988. 2245.63 0.03 0.08 0.10 -1 -1 0.03 0.027464 0.0238779 149 54 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_068.v common 4.93 vpr 63.02 MiB -1 -1 0.25 18324 1 0.03 -1 -1 30260 -1 -1 26 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64532 32 32 353 285 1 227 90 17 17 289 -1 unnamed_device 23.8 MiB 1.82 1210 8733 1986 6236 511 63.0 MiB 0.10 0.00 5.34202 -151.585 -5.34202 5.34202 0.34 0.000705474 0.000656524 0.0328942 0.0305707 -1 -1 -1 -1 26 3649 31 6.89349e+06 366440 503264. 1741.40 1.03 0.132915 0.116362 24322 120374 -1 2740 21 1884 2686 230511 56296 4.53469 4.53469 -147.361 -4.53469 0 0 618332. 2139.56 0.03 0.09 0.10 -1 -1 0.03 0.0292088 0.0253831 146 51 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_069.v common 3.73 vpr 63.15 MiB -1 -1 0.13 18188 1 0.03 -1 -1 30032 -1 -1 17 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64668 32 32 276 237 1 165 81 17 17 289 -1 unnamed_device 23.5 MiB 1.15 871 3931 655 3141 135 63.2 MiB 0.06 0.00 4.46017 -120.461 -4.46017 4.46017 0.34 0.000593021 0.000552445 0.0156305 0.0145703 -1 -1 -1 -1 30 2086 27 6.89349e+06 239595 556674. 1926.21 0.68 0.0928547 0.0804175 25186 138497 -1 1729 16 784 1086 70234 17238 3.25235 3.25235 -112.221 -3.25235 0 0 706193. 2443.58 0.03 0.05 0.11 -1 -1 0.03 0.01966 0.0171497 103 34 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_070.v common 4.36 vpr 63.02 MiB -1 -1 0.25 18380 1 0.03 -1 -1 30444 -1 -1 22 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64532 31 32 319 272 1 203 85 17 17 289 -1 unnamed_device 23.9 MiB 1.54 1210 15151 5151 8255 1745 63.0 MiB 0.15 0.00 3.66845 -123.484 -3.66845 3.66845 0.33 0.00063923 0.000594111 0.0541146 0.0502601 -1 -1 -1 -1 32 2715 35 6.89349e+06 310065 586450. 2029.24 0.72 0.143233 0.12627 25474 144626 -1 2185 19 1447 2045 164947 37343 3.05026 3.05026 -122.595 -3.05026 0 0 744469. 2576.02 0.03 0.07 0.12 -1 -1 0.03 0.0238382 0.0207107 127 64 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_071.v common 4.40 vpr 63.01 MiB -1 -1 0.15 18448 1 0.03 -1 -1 30356 -1 -1 28 30 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64524 30 32 329 273 1 213 90 17 17 289 -1 unnamed_device 23.8 MiB 1.49 1234 14763 4989 7695 2079 63.0 MiB 0.15 0.00 3.80105 -113.334 -3.80105 3.80105 0.34 0.000656327 0.000609934 0.0504816 0.0468668 -1 -1 -1 -1 30 2615 23 6.89349e+06 394628 556674. 1926.21 0.70 0.132708 0.117104 25186 138497 -1 2145 19 1352 2014 134738 31173 2.97966 2.97966 -109.442 -2.97966 0 0 706193. 2443.58 0.03 0.04 0.09 -1 -1 0.03 0.0138568 0.0122877 138 57 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_072.v common 3.69 vpr 63.15 MiB -1 -1 0.13 18208 1 0.03 -1 -1 30420 -1 -1 25 28 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64668 28 32 277 229 1 171 85 17 17 289 -1 unnamed_device 23.5 MiB 0.99 923 11245 3753 5730 1762 63.2 MiB 0.11 0.00 4.46115 -110.761 -4.46115 4.46115 0.33 0.00060266 0.000561416 0.0376426 0.0350269 -1 -1 -1 -1 28 2469 30 6.89349e+06 352346 531479. 1839.03 0.86 0.117551 0.103027 24610 126494 -1 1900 22 1381 2326 186866 44119 3.83606 3.83606 -113.041 -3.83606 0 0 648988. 2245.63 0.03 0.08 0.11 -1 -1 0.03 0.0250041 0.0216064 115 27 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_073.v common 4.79 vpr 62.96 MiB -1 -1 0.24 18256 1 0.03 -1 -1 30104 -1 -1 23 30 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64468 30 32 317 269 1 202 85 17 17 289 -1 unnamed_device 23.9 MiB 1.68 1124 13291 3381 8166 1744 63.0 MiB 0.14 0.00 4.63488 -140.051 -4.63488 4.63488 0.34 0.000636406 0.000592078 0.0477161 0.0443528 -1 -1 -1 -1 32 2429 23 6.89349e+06 324158 586450. 2029.24 0.61 0.124909 0.110186 25474 144626 -1 1995 19 1301 1790 109578 27087 3.6673 3.6673 -130.434 -3.6673 0 0 744469. 2576.02 0.03 0.06 0.12 -1 -1 0.03 0.0240123 0.0208538 128 63 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_074.v common 4.21 vpr 63.02 MiB -1 -1 0.13 18384 1 0.03 -1 -1 30192 -1 -1 24 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64536 32 32 335 282 1 222 88 17 17 289 -1 unnamed_device 23.8 MiB 1.47 1239 12568 3430 7475 1663 63.0 MiB 0.13 0.00 3.7742 -133.009 -3.7742 3.7742 0.33 0.000664956 0.000618415 0.0447926 0.0416428 -1 -1 -1 -1 32 2833 27 6.89349e+06 338252 586450. 2029.24 0.70 0.131488 0.115631 25474 144626 -1 2413 20 1588 2181 168563 38088 3.18355 3.18355 -131.632 -3.18355 0 0 744469. 2576.02 0.03 0.07 0.12 -1 -1 0.03 0.0256674 0.0222751 133 65 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_075.v common 3.51 vpr 63.45 MiB -1 -1 0.22 17972 1 0.03 -1 -1 30312 -1 -1 33 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64972 31 32 293 230 1 175 96 17 17 289 -1 unnamed_device 23.8 MiB 0.77 1103 14112 3589 8517 2006 63.4 MiB 0.14 0.00 4.63486 -133.995 -4.63486 4.63486 0.33 0.00063778 0.000594069 0.0425839 0.0395444 -1 -1 -1 -1 28 2576 21 6.89349e+06 465097 531479. 1839.03 0.72 0.118561 0.104437 24610 126494 -1 2268 21 1305 2452 192766 43424 3.62795 3.62795 -125.412 -3.62795 0 0 648988. 2245.63 0.03 0.08 0.11 -1 -1 0.03 0.025889 0.022415 130 4 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_076.v common 4.35 vpr 63.03 MiB -1 -1 0.24 18408 1 0.03 -1 -1 30516 -1 -1 25 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64544 32 32 350 275 1 214 89 17 17 289 -1 unnamed_device 23.9 MiB 1.58 1204 14147 4115 8000 2032 63.0 MiB 0.16 0.00 4.81472 -152.879 -4.81472 4.81472 0.33 0.000713612 0.00066296 0.0527005 0.0489823 -1 -1 -1 -1 32 2800 23 6.89349e+06 352346 586450. 2029.24 0.65 0.137284 0.121308 25474 144626 -1 2317 21 1635 2522 187160 42770 3.8758 3.8758 -140.975 -3.8758 0 0 744469. 2576.02 0.03 0.08 0.12 -1 -1 0.03 0.0281242 0.0243733 143 34 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_077.v common 4.98 vpr 63.16 MiB -1 -1 0.25 18400 1 0.03 -1 -1 30216 -1 -1 28 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64676 32 32 385 308 1 244 92 17 17 289 -1 unnamed_device 24.2 MiB 1.68 1347 9407 2294 6525 588 63.2 MiB 0.12 0.00 5.6895 -177.24 -5.6895 5.6895 0.33 0.000746964 0.000693943 0.0373846 0.0346814 -1 -1 -1 -1 28 3596 30 6.89349e+06 394628 531479. 1839.03 1.17 0.140526 0.123176 24610 126494 -1 2869 20 2183 3007 233547 53265 4.69799 4.69799 -165.692 -4.69799 0 0 648988. 2245.63 0.03 0.09 0.10 -1 -1 0.03 0.0293827 0.0255822 161 65 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_078.v common 5.06 vpr 63.14 MiB -1 -1 0.26 18460 1 0.03 -1 -1 30344 -1 -1 29 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64660 32 32 387 309 1 248 93 17 17 289 -1 unnamed_device 24.1 MiB 1.83 1466 18573 6017 10061 2495 63.1 MiB 0.21 0.00 4.98426 -161.513 -4.98426 4.98426 0.33 0.000745137 0.000692261 0.0686335 0.0637203 -1 -1 -1 -1 32 3734 46 6.89349e+06 408721 586450. 2029.24 0.94 0.186493 0.164388 25474 144626 -1 2791 30 1829 2643 232893 69888 3.80764 3.80764 -144.244 -3.80764 0 0 744469. 2576.02 0.03 0.11 0.12 -1 -1 0.03 0.0401642 0.0346113 163 65 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_079.v common 3.84 vpr 63.10 MiB -1 -1 0.23 17964 1 0.03 -1 -1 30168 -1 -1 21 30 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64616 30 32 272 232 1 175 83 17 17 289 -1 unnamed_device 23.4 MiB 1.16 864 9623 2791 6175 657 63.1 MiB 0.10 0.00 4.24433 -123.741 -4.24433 4.24433 0.34 0.000589478 0.000548752 0.0331759 0.0308786 -1 -1 -1 -1 28 2246 22 6.89349e+06 295971 531479. 1839.03 0.70 0.105201 0.0923129 24610 126494 -1 2113 23 1215 1799 157163 37079 3.2147 3.2147 -116.086 -3.2147 0 0 648988. 2245.63 0.03 0.07 0.10 -1 -1 0.03 0.0250651 0.0216604 107 34 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_080.v common 4.75 vpr 63.14 MiB -1 -1 0.26 18540 1 0.03 -1 -1 30432 -1 -1 28 30 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64652 30 32 375 299 1 236 90 17 17 289 -1 unnamed_device 23.9 MiB 1.88 1308 14160 4517 7515 2128 63.1 MiB 0.16 0.00 5.42371 -164.677 -5.42371 5.42371 0.33 0.000721813 0.000670845 0.0531936 0.0494265 -1 -1 -1 -1 30 2972 24 6.89349e+06 394628 556674. 1926.21 0.73 0.143432 0.126451 25186 138497 -1 2403 23 1699 2389 185688 50884 4.29135 4.29135 -150.641 -4.29135 0 0 706193. 2443.58 0.03 0.09 0.11 -1 -1 0.03 0.0317448 0.0275301 158 63 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_081.v common 3.20 vpr 62.95 MiB -1 -1 0.26 18268 1 0.03 -1 -1 30276 -1 -1 25 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64464 32 32 340 270 1 204 89 17 17 289 -1 unnamed_device 23.8 MiB 0.94 1210 12365 3326 7764 1275 63.0 MiB 0.08 0.00 5.21531 -154.715 -5.21531 5.21531 0.26 0.000308828 0.000284704 0.0209834 0.0193316 -1 -1 -1 -1 30 2780 24 6.89349e+06 352346 556674. 1926.21 0.47 0.0641112 0.0562922 25186 138497 -1 2260 20 1189 2085 141591 32513 3.706 3.706 -133.226 -3.706 0 0 706193. 2443.58 0.03 0.07 0.11 -1 -1 0.03 0.0265655 0.0231263 137 34 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_082.v common 4.42 vpr 63.12 MiB -1 -1 0.25 18396 1 0.03 -1 -1 30196 -1 -1 27 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64640 31 32 340 275 1 211 90 17 17 289 -1 unnamed_device 23.9 MiB 1.73 1088 9336 2201 6577 558 63.1 MiB 0.11 0.00 5.04444 -145.956 -5.04444 5.04444 0.33 0.000682831 0.000634779 0.0339186 0.0315045 -1 -1 -1 -1 30 3021 26 6.89349e+06 380534 556674. 1926.21 0.72 0.119856 0.104908 25186 138497 -1 2171 23 1498 2362 145453 36505 4.09269 4.09269 -138.021 -4.09269 0 0 706193. 2443.58 0.03 0.07 0.11 -1 -1 0.03 0.0293748 0.0254617 142 47 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_083.v common 4.58 vpr 63.17 MiB -1 -1 0.14 18380 1 0.03 -1 -1 30344 -1 -1 31 30 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64688 30 32 377 310 1 239 93 17 17 289 -1 unnamed_device 24.1 MiB 2.01 1323 12063 3354 7850 859 63.2 MiB 0.14 0.00 4.83716 -144.714 -4.83716 4.83716 0.33 0.000719058 0.000668266 0.0438683 0.0407063 -1 -1 -1 -1 32 2950 22 6.89349e+06 436909 586450. 2029.24 0.66 0.130212 0.114357 25474 144626 -1 2460 21 1800 2541 167992 39051 3.90729 3.90729 -133.383 -3.90729 0 0 744469. 2576.02 0.03 0.08 0.12 -1 -1 0.03 0.0291132 0.0252641 162 83 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_084.v common 5.99 vpr 63.04 MiB -1 -1 0.25 18364 1 0.03 -1 -1 30288 -1 -1 26 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64548 32 32 365 294 1 230 90 17 17 289 -1 unnamed_device 23.8 MiB 1.86 1092 15567 4590 6963 4014 63.0 MiB 0.16 0.00 5.6409 -158.927 -5.6409 5.6409 0.34 0.000720219 0.000668988 0.0581987 0.0540796 -1 -1 -1 -1 34 3619 33 6.89349e+06 366440 618332. 2139.56 1.95 0.221661 0.193481 25762 151098 -1 2572 25 1984 2947 239771 67911 4.98165 4.98165 -156.918 -4.98165 0 0 787024. 2723.27 0.03 0.10 0.12 -1 -1 0.03 0.0334628 0.0290116 151 57 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_085.v common 4.92 vpr 63.19 MiB -1 -1 0.25 18304 1 0.03 -1 -1 30296 -1 -1 31 29 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64708 29 32 378 310 1 246 92 17 17 289 -1 unnamed_device 24.2 MiB 1.69 1339 9614 2583 6226 805 63.2 MiB 0.12 0.00 4.41229 -132.994 -4.41229 4.41229 0.33 0.000723843 0.000673123 0.0356484 0.0331262 -1 -1 -1 -1 26 3357 38 6.89349e+06 436909 503264. 1741.40 0.83 0.139778 0.121811 24322 120374 -1 2824 21 1988 2689 179674 43789 3.8739 3.8739 -130.747 -3.8739 0 0 618332. 2139.56 0.03 0.08 0.10 -1 -1 0.03 0.0292634 0.0254058 162 85 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_086.v common 3.65 vpr 63.10 MiB -1 -1 0.22 17748 1 0.03 -1 -1 30352 -1 -1 18 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64616 32 32 243 205 1 149 82 17 17 289 -1 unnamed_device 23.6 MiB 0.87 838 12898 4054 7091 1753 63.1 MiB 0.11 0.00 4.02268 -119.775 -4.02268 4.02268 0.33 0.000557295 0.000517941 0.0420267 0.0390778 -1 -1 -1 -1 26 1995 21 6.89349e+06 253689 503264. 1741.40 0.68 0.108061 0.0954187 24322 120374 -1 1750 22 1141 1815 129271 32121 3.18261 3.18261 -113.015 -3.18261 0 0 618332. 2139.56 0.03 0.07 0.10 -1 -1 0.03 0.0232934 0.0201544 96 3 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_087.v common 4.55 vpr 63.14 MiB -1 -1 0.24 18560 1 0.03 -1 -1 30352 -1 -1 28 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64660 32 32 373 302 1 241 92 17 17 289 -1 unnamed_device 24.1 MiB 1.47 1291 10235 2595 6457 1183 63.1 MiB 0.12 0.00 5.77588 -165.464 -5.77588 5.77588 0.34 0.000729409 0.00067721 0.038424 0.0356736 -1 -1 -1 -1 30 3322 35 6.89349e+06 394628 556674. 1926.21 1.05 0.14557 0.1274 25186 138497 -1 2519 21 1710 2466 183371 42664 4.33599 4.33599 -150.293 -4.33599 0 0 706193. 2443.58 0.03 0.08 0.11 -1 -1 0.03 0.0296157 0.0257431 155 65 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_088.v common 5.19 vpr 63.13 MiB -1 -1 0.25 18448 1 0.04 -1 -1 30336 -1 -1 28 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64648 32 32 397 314 1 256 92 17 17 289 -1 unnamed_device 24.2 MiB 2.23 1407 8786 2137 6079 570 63.1 MiB 0.12 0.00 5.27081 -172.748 -5.27081 5.27081 0.33 0.000770991 0.000716489 0.03513 0.0325996 -1 -1 -1 -1 32 3621 24 6.89349e+06 394628 586450. 2029.24 0.79 0.130154 0.113934 25474 144626 -1 2864 22 2168 3080 220520 52161 4.84749 4.84749 -175.594 -4.84749 0 0 744469. 2576.02 0.03 0.09 0.13 -1 -1 0.03 0.0320689 0.0278814 166 65 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_089.v common 3.80 vpr 62.94 MiB -1 -1 0.24 17984 1 0.03 -1 -1 30408 -1 -1 18 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64452 32 32 269 231 1 172 82 17 17 289 -1 unnamed_device 23.3 MiB 1.21 899 11118 3315 7044 759 62.9 MiB 0.11 0.00 4.18332 -118.029 -4.18332 4.18332 0.34 0.000692468 0.000644391 0.0384675 0.0357526 -1 -1 -1 -1 28 2251 26 6.89349e+06 253689 531479. 1839.03 0.61 0.112145 0.0985028 24610 126494 -1 1976 18 1203 1615 120050 29053 3.0427 3.0427 -111.888 -3.0427 0 0 648988. 2245.63 0.02 0.03 0.07 -1 -1 0.02 0.0115051 0.0101418 105 29 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_090.v common 3.42 vpr 63.11 MiB -1 -1 0.15 18008 1 0.03 -1 -1 30428 -1 -1 21 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64620 31 32 245 205 1 153 84 17 17 289 -1 unnamed_device 23.6 MiB 0.92 877 14358 4451 8131 1776 63.1 MiB 0.13 0.00 3.85018 -115.459 -3.85018 3.85018 0.33 0.000550858 0.000512522 0.0450623 0.0419209 -1 -1 -1 -1 28 2049 19 6.89349e+06 295971 531479. 1839.03 0.53 0.108923 0.096296 24610 126494 -1 1856 18 1120 1831 134085 31948 2.85656 2.85656 -108.983 -2.85656 0 0 648988. 2245.63 0.03 0.06 0.11 -1 -1 0.03 0.0197642 0.0171304 100 4 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_091.v common 4.34 vpr 63.12 MiB -1 -1 0.25 18396 1 0.03 -1 -1 30436 -1 -1 24 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64640 32 32 348 274 1 215 88 17 17 289 -1 unnamed_device 23.9 MiB 1.47 1149 12373 3613 6249 2511 63.1 MiB 0.13 0.00 4.70278 -145.116 -4.70278 4.70278 0.34 0.000707734 0.00065781 0.0467155 0.0434349 -1 -1 -1 -1 32 3020 24 6.89349e+06 338252 586450. 2029.24 0.73 0.135011 0.118726 25474 144626 -1 2279 24 1755 2520 205609 47921 3.7285 3.7285 -135.021 -3.7285 0 0 744469. 2576.02 0.04 0.09 0.12 -1 -1 0.04 0.031859 0.0275796 142 34 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_092.v common 4.35 vpr 62.97 MiB -1 -1 0.26 18404 1 0.03 -1 -1 30308 -1 -1 26 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64480 32 32 356 289 1 224 90 17 17 289 -1 unnamed_device 23.8 MiB 1.71 1387 15768 4665 9408 1695 63.0 MiB 0.16 0.00 4.93824 -150.865 -4.93824 4.93824 0.33 0.000707307 0.00065752 0.0579457 0.0538599 -1 -1 -1 -1 32 2960 23 6.89349e+06 366440 586450. 2029.24 0.61 0.142278 0.12601 25474 144626 -1 2441 19 1502 2031 146713 34429 4.31335 4.31335 -145.674 -4.31335 0 0 744469. 2576.02 0.03 0.04 0.08 -1 -1 0.03 0.0149205 0.0132196 146 56 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_093.v common 3.84 vpr 62.96 MiB -1 -1 0.24 18176 1 0.03 -1 -1 30164 -1 -1 36 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64468 32 32 349 260 1 204 100 17 17 289 -1 unnamed_device 23.8 MiB 0.63 1297 14020 4001 8993 1026 63.0 MiB 0.16 0.00 5.06861 -145.864 -5.06861 5.06861 0.34 0.000718071 0.000667292 0.0458058 0.0424592 -1 -1 -1 -1 34 2833 23 6.89349e+06 507378 618332. 2139.56 1.07 0.190472 0.165979 25762 151098 -1 2405 23 1609 3278 247297 58434 4.21774 4.21774 -141.15 -4.21774 0 0 787024. 2723.27 0.03 0.10 0.12 -1 -1 0.03 0.0317497 0.0275213 157 3 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_094.v common 4.18 vpr 62.96 MiB -1 -1 0.24 18544 1 0.03 -1 -1 30348 -1 -1 28 30 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64476 30 32 316 264 1 208 90 17 17 289 -1 unnamed_device 23.8 MiB 1.38 1151 9537 2188 6582 767 63.0 MiB 0.10 0.00 3.84589 -112.336 -3.84589 3.84589 0.35 0.000639828 0.000595437 0.0323691 0.0300937 -1 -1 -1 -1 28 2906 29 6.89349e+06 394628 531479. 1839.03 0.71 0.116019 0.101378 24610 126494 -1 2387 21 1722 2519 171565 40702 3.44771 3.44771 -115.179 -3.44771 0 0 648988. 2245.63 0.03 0.07 0.10 -1 -1 0.03 0.0258409 0.0224091 132 52 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_095.v common 3.23 vpr 63.04 MiB -1 -1 0.18 18184 1 0.03 -1 -1 30320 -1 -1 24 27 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64556 27 32 255 219 1 162 83 17 17 289 -1 unnamed_device 23.5 MiB 0.98 926 13583 4648 7594 1341 63.0 MiB 0.06 0.00 4.47779 -119.514 -4.47779 4.47779 0.26 0.000247066 0.000227214 0.019932 0.0183537 -1 -1 -1 -1 32 1959 29 6.89349e+06 338252 586450. 2029.24 0.40 0.0556146 0.0486965 25474 144626 -1 1697 17 910 1320 100724 23559 3.7556 3.7556 -118.676 -3.7556 0 0 744469. 2576.02 0.03 0.05 0.12 -1 -1 0.03 0.018915 0.016398 106 34 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_096.v common 5.54 vpr 63.31 MiB -1 -1 0.26 18612 1 0.03 -1 -1 30436 -1 -1 30 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64828 32 32 421 327 1 271 94 17 17 289 -1 unnamed_device 24.2 MiB 1.97 1509 10957 2826 6796 1335 63.3 MiB 0.14 0.00 4.63892 -149.381 -4.63892 4.63892 0.33 0.00080454 0.000748076 0.043944 0.0407989 -1 -1 -1 -1 28 4136 42 6.89349e+06 422815 531479. 1839.03 1.38 0.170393 0.149095 24610 126494 -1 3075 22 2130 3307 228365 66158 4.43289 4.43289 -149.976 -4.43289 0 0 648988. 2245.63 0.03 0.10 0.11 -1 -1 0.03 0.0340225 0.0295636 180 65 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_097.v common 4.62 vpr 63.55 MiB -1 -1 0.15 18416 1 0.03 -1 -1 30312 -1 -1 26 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65080 31 32 365 296 1 233 89 17 17 289 -1 unnamed_device 23.8 MiB 1.82 1244 11771 3259 7075 1437 63.6 MiB 0.13 0.00 5.7998 -165.192 -5.7998 5.7998 0.33 0.000716053 0.000665573 0.0448739 0.0416641 -1 -1 -1 -1 32 2788 40 6.89349e+06 366440 586450. 2029.24 0.77 0.149219 0.130667 25474 144626 -1 2412 21 1884 2692 188955 47019 4.67615 4.67615 -156.175 -4.67615 0 0 744469. 2576.02 0.03 0.08 0.12 -1 -1 0.03 0.0298131 0.0259191 151 64 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_098.v common 4.36 vpr 63.19 MiB -1 -1 0.24 18252 1 0.03 -1 -1 30300 -1 -1 23 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64708 32 32 331 280 1 221 87 17 17 289 -1 unnamed_device 24.0 MiB 1.50 1210 16215 5301 8723 2191 63.2 MiB 0.16 0.00 4.58923 -148.326 -4.58923 4.58923 0.33 0.0006606 0.000613763 0.0578794 0.0537729 -1 -1 -1 -1 32 2913 35 6.89349e+06 324158 586450. 2029.24 0.73 0.148838 0.131354 25474 144626 -1 2294 21 1390 1919 151908 35287 3.53034 3.53034 -135.127 -3.53034 0 0 744469. 2576.02 0.03 0.07 0.12 -1 -1 0.03 0.0263792 0.022873 133 65 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_099.v common 4.18 vpr 62.95 MiB -1 -1 0.22 18340 1 0.03 -1 -1 30340 -1 -1 23 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64464 32 32 326 263 1 203 87 17 17 289 -1 unnamed_device 23.8 MiB 1.50 1177 10839 2952 6847 1040 63.0 MiB 0.12 0.00 5.3443 -147.376 -5.3443 5.3443 0.34 0.000668278 0.000621623 0.0399339 0.0371137 -1 -1 -1 -1 28 2718 26 6.89349e+06 324158 531479. 1839.03 0.63 0.125826 0.110548 24610 126494 -1 2267 19 1287 1917 125964 31009 3.99916 3.99916 -137.804 -3.99916 0 0 648988. 2245.63 0.02 0.04 0.07 -1 -1 0.02 0.013763 0.0121788 131 34 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_100.v common 4.05 vpr 63.06 MiB -1 -1 0.26 18404 1 0.03 -1 -1 30484 -1 -1 28 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64576 31 32 373 294 1 231 91 17 17 289 -1 unnamed_device 23.8 MiB 1.46 1232 10291 2595 7126 570 63.1 MiB 0.13 0.00 4.53972 -131.904 -4.53972 4.53972 0.33 0.000731723 0.000679966 0.0398017 0.0369928 -1 -1 -1 -1 30 2836 17 6.89349e+06 394628 556674. 1926.21 0.57 0.120718 0.106209 25186 138497 -1 2405 21 1646 2522 144904 35098 3.7514 3.7514 -127.877 -3.7514 0 0 706193. 2443.58 0.03 0.07 0.11 -1 -1 0.03 0.0296711 0.0258196 158 50 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_101.v common 4.41 vpr 63.09 MiB -1 -1 0.25 18444 1 0.03 -1 -1 30376 -1 -1 26 30 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64608 30 32 325 268 1 210 88 17 17 289 -1 unnamed_device 23.9 MiB 1.46 1228 15493 4762 8305 2426 63.1 MiB 0.16 0.00 4.32549 -122.97 -4.32549 4.32549 0.33 0.000656747 0.000610369 0.0543623 0.0505311 -1 -1 -1 -1 32 2960 24 6.89349e+06 366440 586450. 2029.24 0.62 0.134116 0.118568 25474 144626 -1 2431 20 1284 2055 142826 33487 3.4732 3.4732 -117.819 -3.4732 0 0 744469. 2576.02 0.03 0.07 0.12 -1 -1 0.03 0.025544 0.0221956 135 51 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_102.v common 4.78 vpr 63.11 MiB -1 -1 0.23 18348 1 0.03 -1 -1 30356 -1 -1 24 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64620 32 32 350 275 1 215 88 17 17 289 -1 unnamed_device 23.9 MiB 1.99 1263 13738 4130 7532 2076 63.1 MiB 0.15 0.00 4.94548 -156.272 -4.94548 4.94548 0.34 0.000704088 0.000654957 0.0519574 0.0483078 -1 -1 -1 -1 30 3289 25 6.89349e+06 338252 556674. 1926.21 0.72 0.141395 0.124798 25186 138497 -1 2682 20 1660 2612 206101 48392 4.08826 4.08826 -148.158 -4.08826 0 0 706193. 2443.58 0.03 0.08 0.11 -1 -1 0.03 0.027773 0.0241643 143 34 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_103.v common 4.90 vpr 63.29 MiB -1 -1 0.26 18364 1 0.03 -1 -1 29992 -1 -1 29 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64812 32 32 386 307 1 246 93 17 17 289 -1 unnamed_device 24.2 MiB 2.08 1385 10173 2853 6391 929 63.3 MiB 0.13 0.00 4.14004 -138.199 -4.14004 4.14004 0.34 0.000745923 0.000693144 0.0389369 0.0361605 -1 -1 -1 -1 32 2986 22 6.89349e+06 408721 586450. 2029.24 0.69 0.136751 0.120104 25474 144626 -1 2555 21 1564 2245 157911 36196 3.16905 3.16905 -127.104 -3.16905 0 0 744469. 2576.02 0.03 0.08 0.12 -1 -1 0.03 0.0306084 0.0266787 160 62 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_104.v common 3.55 vpr 63.16 MiB -1 -1 0.23 18076 1 0.03 -1 -1 30300 -1 -1 22 29 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64672 29 32 269 229 1 173 83 17 17 289 -1 unnamed_device 23.6 MiB 1.04 921 15203 4495 9007 1701 63.2 MiB 0.07 0.00 4.26549 -127.928 -4.26549 4.26549 0.26 0.000257923 0.000237812 0.0232568 0.0214446 -1 -1 -1 -1 32 1876 20 6.89349e+06 310065 586450. 2029.24 0.36 0.0570895 0.0503884 25474 144626 -1 1616 18 1054 1422 95047 22199 3.09471 3.09471 -112.522 -3.09471 0 0 744469. 2576.02 0.03 0.05 0.12 -1 -1 0.03 0.0207153 0.018007 108 34 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_105.v common 4.02 vpr 63.02 MiB -1 -1 0.25 18392 1 0.03 -1 -1 30292 -1 -1 21 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64528 32 32 310 266 1 198 85 17 17 289 -1 unnamed_device 23.9 MiB 1.24 1127 10501 2841 7009 651 63.0 MiB 0.12 0.00 4.32781 -135.016 -4.32781 4.32781 0.34 0.000627421 0.000582935 0.0377596 0.0350767 -1 -1 -1 -1 32 2500 22 6.89349e+06 295971 586450. 2029.24 0.69 0.114651 0.100669 25474 144626 -1 2074 20 1415 1937 138914 33147 3.5422 3.5422 -128.549 -3.5422 0 0 744469. 2576.02 0.03 0.07 0.12 -1 -1 0.03 0.0241437 0.0209333 121 58 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_106.v common 4.86 vpr 63.02 MiB -1 -1 0.25 18412 1 0.03 -1 -1 30448 -1 -1 26 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64536 31 32 326 261 1 204 89 17 17 289 -1 unnamed_device 23.9 MiB 1.17 1108 10583 2739 6769 1075 63.0 MiB 0.12 0.00 5.02183 -139.303 -5.02183 5.02183 0.33 0.000666098 0.000619577 0.0377341 0.0350695 -1 -1 -1 -1 36 2340 22 6.89349e+06 366440 648988. 2245.63 1.15 0.169204 0.14718 26050 158493 -1 2066 18 1163 1883 137081 32533 3.75856 3.75856 -127.625 -3.75856 0 0 828058. 2865.25 0.03 0.07 0.13 -1 -1 0.03 0.0242178 0.0211161 134 33 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_107.v common 4.07 vpr 63.09 MiB -1 -1 0.25 18156 1 0.03 -1 -1 30312 -1 -1 20 29 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64600 29 32 262 224 1 168 81 17 17 289 -1 unnamed_device 23.5 MiB 1.30 845 8306 2095 5417 794 63.1 MiB 0.09 0.00 4.25195 -113.857 -4.25195 4.25195 0.33 0.000574 0.000535503 0.0287148 0.0267542 -1 -1 -1 -1 28 2177 33 6.89349e+06 281877 531479. 1839.03 0.68 0.104971 0.0914314 24610 126494 -1 1920 28 1357 1777 186903 65337 3.169 3.169 -109.113 -3.169 0 0 648988. 2245.63 0.03 0.09 0.10 -1 -1 0.03 0.0289744 0.0249371 104 31 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_108.v common 4.81 vpr 63.11 MiB -1 -1 0.23 18156 1 0.03 -1 -1 30064 -1 -1 20 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64620 32 32 278 238 1 182 84 17 17 289 -1 unnamed_device 23.5 MiB 1.41 1019 13809 4194 7374 2241 63.1 MiB 0.13 0.00 4.20123 -130.77 -4.20123 4.20123 0.34 0.000595178 0.00055434 0.0468899 0.0436464 -1 -1 -1 -1 28 2671 42 6.89349e+06 281877 531479. 1839.03 0.95 0.140562 0.123393 24610 126494 -1 2173 24 1552 2167 196263 44101 3.30321 3.30321 -128.538 -3.30321 0 0 648988. 2245.63 0.03 0.08 0.11 -1 -1 0.03 0.0270876 0.0233899 109 34 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_109.v common 4.58 vpr 63.64 MiB -1 -1 0.26 18424 1 0.03 -1 -1 30380 -1 -1 28 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65164 31 32 373 300 1 237 91 17 17 289 -1 unnamed_device 23.8 MiB 1.80 1293 14983 4153 9099 1731 63.6 MiB 0.17 0.00 4.61837 -148.41 -4.61837 4.61837 0.33 0.00072392 0.000673027 0.0559176 0.0519563 -1 -1 -1 -1 28 3195 26 6.89349e+06 394628 531479. 1839.03 0.65 0.14627 0.129198 24610 126494 -1 2553 20 1986 2698 186531 44431 3.81965 3.81965 -141.172 -3.81965 0 0 648988. 2245.63 0.03 0.08 0.10 -1 -1 0.03 0.0281923 0.0245186 155 64 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_110.v common 3.60 vpr 63.05 MiB -1 -1 0.23 18092 1 0.03 -1 -1 30472 -1 -1 19 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64568 31 32 265 230 1 175 82 17 17 289 -1 unnamed_device 23.5 MiB 1.02 883 8804 2413 5751 640 63.1 MiB 0.09 0.00 3.61555 -111.504 -3.61555 3.61555 0.33 0.00057191 0.000532928 0.0300125 0.0279299 -1 -1 -1 -1 30 2116 21 6.89349e+06 267783 556674. 1926.21 0.54 0.0967442 0.0847373 25186 138497 -1 1746 22 1000 1418 88147 21633 2.90311 2.90311 -110.877 -2.90311 0 0 706193. 2443.58 0.03 0.06 0.11 -1 -1 0.03 0.0237371 0.0205404 104 34 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_111.v common 4.24 vpr 63.06 MiB -1 -1 0.15 18416 1 0.03 -1 -1 30020 -1 -1 25 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64576 32 32 349 286 1 221 89 17 17 289 -1 unnamed_device 23.8 MiB 1.50 1245 11969 3140 7616 1213 63.1 MiB 0.13 0.00 4.39413 -130.035 -4.39413 4.39413 0.34 0.000697558 0.00064848 0.0442265 0.0410941 -1 -1 -1 -1 30 2800 29 6.89349e+06 352346 556674. 1926.21 0.70 0.136708 0.120083 25186 138497 -1 2259 17 1056 1557 104303 24463 3.1503 3.1503 -117.968 -3.1503 0 0 706193. 2443.58 0.03 0.06 0.11 -1 -1 0.03 0.0240403 0.021017 142 57 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_112.v common 5.19 vpr 63.09 MiB -1 -1 0.29 18380 1 0.03 -1 -1 30260 -1 -1 30 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64608 31 32 396 325 1 259 93 17 17 289 -1 unnamed_device 24.0 MiB 2.12 1311 17313 4833 10070 2410 63.1 MiB 0.19 0.00 4.94622 -159.495 -4.94622 4.94622 0.33 0.000741991 0.000685776 0.0638633 0.0592945 -1 -1 -1 -1 32 3396 38 6.89349e+06 422815 586450. 2029.24 0.81 0.172103 0.15195 25474 144626 -1 2671 23 1970 2785 193766 45890 4.04249 4.04249 -151.176 -4.04249 0 0 744469. 2576.02 0.03 0.09 0.12 -1 -1 0.03 0.0322965 0.0279992 166 91 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_113.v common 4.65 vpr 63.05 MiB -1 -1 0.25 18472 1 0.03 -1 -1 30280 -1 -1 21 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64560 32 32 303 262 1 200 85 17 17 289 -1 unnamed_device 23.9 MiB 1.42 1134 7153 1649 5156 348 63.0 MiB 0.09 0.00 3.69791 -119.314 -3.69791 3.69791 0.33 0.000617724 0.000574295 0.0263615 0.0244812 -1 -1 -1 -1 26 3014 50 6.89349e+06 295971 503264. 1741.40 0.74 0.12603 0.109223 24322 120374 -1 2497 19 1652 2257 182227 43841 3.70126 3.70126 -131.815 -3.70126 0 0 618332. 2139.56 0.03 0.08 0.10 -1 -1 0.03 0.0236811 0.0205417 121 57 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_114.v common 3.82 vpr 63.18 MiB -1 -1 0.22 18576 1 0.03 -1 -1 30256 -1 -1 19 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64700 32 32 290 244 1 176 83 17 17 289 -1 unnamed_device 23.6 MiB 1.05 898 9983 2681 6247 1055 63.2 MiB 0.12 0.00 4.17923 -126.577 -4.17923 4.17923 0.38 0.000618611 0.000576399 0.0436637 0.0406308 -1 -1 -1 -1 32 2248 27 6.89349e+06 267783 586450. 2029.24 0.63 0.121099 0.106383 25474 144626 -1 1913 21 1176 1778 129091 30495 3.09046 3.09046 -115.484 -3.09046 0 0 744469. 2576.02 0.03 0.06 0.12 -1 -1 0.03 0.0244933 0.0211951 111 34 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_115.v common 3.94 vpr 63.05 MiB -1 -1 0.25 18588 1 0.03 -1 -1 30212 -1 -1 22 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64560 32 32 318 257 1 197 86 17 17 289 -1 unnamed_device 23.9 MiB 1.27 1186 12749 3185 7710 1854 63.0 MiB 0.14 0.00 4.93863 -137.49 -4.93863 4.93863 0.33 0.000656922 0.000610981 0.0463924 0.0431523 -1 -1 -1 -1 32 2500 21 6.89349e+06 310065 586450. 2029.24 0.56 0.123594 0.109192 25474 144626 -1 2078 17 1022 1495 99056 24002 3.94516 3.94516 -130.465 -3.94516 0 0 744469. 2576.02 0.03 0.06 0.12 -1 -1 0.03 0.0227076 0.0198018 129 30 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_116.v common 3.94 vpr 63.00 MiB -1 -1 0.14 18364 1 0.03 -1 -1 30024 -1 -1 28 29 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64516 29 32 324 268 1 207 89 17 17 289 -1 unnamed_device 23.9 MiB 1.34 1163 13949 4509 7225 2215 63.0 MiB 0.14 0.00 4.06068 -113.604 -4.06068 4.06068 0.36 0.000648988 0.000603481 0.0483598 0.0449987 -1 -1 -1 -1 32 2498 22 6.89349e+06 394628 586450. 2029.24 0.57 0.125864 0.111182 25474 144626 -1 2113 18 1091 1529 102409 24986 3.1726 3.1726 -107.969 -3.1726 0 0 744469. 2576.02 0.03 0.06 0.12 -1 -1 0.03 0.0235466 0.0205043 136 55 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_117.v common 5.04 vpr 63.17 MiB -1 -1 0.26 18540 1 0.03 -1 -1 30420 -1 -1 26 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64684 32 32 393 312 1 243 90 17 17 289 -1 unnamed_device 24.1 MiB 2.00 1197 8532 1944 6080 508 63.2 MiB 0.11 0.00 5.6615 -176.256 -5.6615 5.6615 0.33 0.000765182 0.000711071 0.034673 0.0322116 -1 -1 -1 -1 32 3572 28 6.89349e+06 366440 586450. 2029.24 0.87 0.132281 0.11584 25474 144626 -1 2640 22 1876 2860 206960 49868 4.38809 4.38809 -163.546 -4.38809 0 0 744469. 2576.02 0.03 0.09 0.12 -1 -1 0.03 0.0314949 0.0273942 161 65 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_118.v common 3.73 vpr 63.07 MiB -1 -1 0.23 17908 1 0.03 -1 -1 30152 -1 -1 18 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64588 31 32 229 197 1 143 81 17 17 289 -1 unnamed_device 23.5 MiB 0.88 858 12156 3731 6704 1721 63.1 MiB 0.11 0.00 3.31865 -102.092 -3.31865 3.31865 0.33 0.000531063 0.000495106 0.0385232 0.0358846 -1 -1 -1 -1 30 1864 18 6.89349e+06 253689 556674. 1926.21 0.52 0.0984705 0.0870618 25186 138497 -1 1477 21 802 1292 78949 19537 2.35985 2.35985 -93.6869 -2.35985 0 0 706193. 2443.58 0.03 0.05 0.11 -1 -1 0.03 0.0215092 0.0186059 93 4 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_119.v common 4.40 vpr 63.87 MiB -1 -1 0.25 18480 1 0.03 -1 -1 30404 -1 -1 30 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65400 32 32 412 334 1 269 94 17 17 289 -1 unnamed_device 24.2 MiB 1.70 1511 17773 5393 10213 2167 63.9 MiB 0.19 0.00 5.64972 -177.297 -5.64972 5.64972 0.33 0.000351025 0.000323302 0.0594056 0.0549061 -1 -1 -1 -1 32 3132 28 6.89349e+06 422815 586450. 2029.24 0.51 0.130668 0.115927 25474 144626 -1 2549 18 1654 2142 127890 31978 4.60024 4.60024 -163.543 -4.60024 0 0 744469. 2576.02 0.03 0.07 0.12 -1 -1 0.03 0.0277509 0.0242359 173 90 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_120.v common 4.89 vpr 63.25 MiB -1 -1 0.15 18432 1 0.03 -1 -1 30176 -1 -1 28 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64764 32 32 376 318 1 259 92 17 17 289 -1 unnamed_device 24.2 MiB 1.84 1293 9614 2367 6489 758 63.2 MiB 0.12 0.00 4.89568 -164.328 -4.89568 4.89568 0.33 0.000704531 0.000653159 0.0352242 0.0326131 -1 -1 -1 -1 32 3167 23 6.89349e+06 394628 586450. 2029.24 0.73 0.122092 0.106854 25474 144626 -1 2517 22 2283 2786 179066 44397 4.21384 4.21384 -161.857 -4.21384 0 0 744469. 2576.02 0.03 0.08 0.12 -1 -1 0.03 0.0296871 0.0257565 155 96 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_121.v common 4.27 vpr 63.02 MiB -1 -1 0.25 18248 1 0.03 -1 -1 30208 -1 -1 27 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64532 32 32 360 293 1 226 91 17 17 289 -1 unnamed_device 23.8 MiB 1.40 1307 13759 4403 8202 1154 63.0 MiB 0.17 0.00 4.10168 -130.557 -4.10168 4.10168 0.33 0.000711311 0.00066117 0.0570836 0.0530446 -1 -1 -1 -1 32 2791 48 6.89349e+06 380534 586450. 2029.24 0.71 0.169513 0.148957 25474 144626 -1 2228 17 1439 1975 125236 30124 2.97891 2.97891 -117.401 -2.97891 0 0 744469. 2576.02 0.03 0.06 0.12 -1 -1 0.03 0.0245511 0.0214454 147 60 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_122.v common 5.73 vpr 63.15 MiB -1 -1 0.14 18740 1 0.03 -1 -1 30328 -1 -1 28 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64668 32 32 396 299 1 240 92 17 17 289 -1 unnamed_device 24.1 MiB 2.03 1350 12098 3111 7804 1183 63.2 MiB 0.17 0.00 5.93815 -178.759 -5.93815 5.93815 0.34 0.000774961 0.000720753 0.0484735 0.0450489 -1 -1 -1 -1 30 3179 30 6.89349e+06 394628 556674. 1926.21 1.07 0.154751 0.136253 25186 138497 -1 2629 22 1591 2517 184543 45433 4.56655 4.56655 -159.834 -4.56655 0 0 706193. 2443.58 0.03 0.05 0.08 -1 -1 0.03 0.0173111 0.0152944 167 34 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_123.v common 3.42 vpr 63.09 MiB -1 -1 0.18 18056 1 0.03 -1 -1 30168 -1 -1 17 30 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64608 30 32 224 207 1 138 79 17 17 289 -1 unnamed_device 23.6 MiB 0.86 744 11064 2972 6586 1506 63.1 MiB 0.09 0.00 3.06986 -93.837 -3.06986 3.06986 0.33 0.00050022 0.000465468 0.0342512 0.0318795 -1 -1 -1 -1 32 1608 21 6.89349e+06 239595 586450. 2029.24 0.51 0.0930254 0.0819585 25474 144626 -1 1362 19 746 975 64274 15732 2.15637 2.15637 -86.663 -2.15637 0 0 744469. 2576.02 0.03 0.05 0.12 -1 -1 0.03 0.0186802 0.0161973 80 34 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_124.v common 4.09 vpr 63.19 MiB -1 -1 0.24 18064 1 0.03 -1 -1 30332 -1 -1 23 30 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64708 30 32 286 239 1 176 85 17 17 289 -1 unnamed_device 23.6 MiB 1.17 970 14221 4684 7353 2184 63.2 MiB 0.13 0.00 4.47457 -139.461 -4.47457 4.47457 0.33 0.000598059 0.000556233 0.0476839 0.0443531 -1 -1 -1 -1 32 2088 19 6.89349e+06 324158 586450. 2029.24 0.57 0.116239 0.102831 25474 144626 -1 1798 19 1209 1755 123419 28254 3.20405 3.20405 -123.196 -3.20405 0 0 744469. 2576.02 0.04 0.06 0.14 -1 -1 0.04 0.0213811 0.0188746 120 34 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_125.v common 4.64 vpr 63.24 MiB -1 -1 0.14 18164 1 0.04 -1 -1 30036 -1 -1 25 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64756 32 32 296 247 1 187 89 17 17 289 -1 unnamed_device 23.9 MiB 1.81 1127 15137 4309 8906 1922 63.2 MiB 0.15 0.00 4.30299 -142.144 -4.30299 4.30299 0.33 0.000624179 0.000580082 0.0500647 0.0464926 -1 -1 -1 -1 32 2632 22 6.89349e+06 352346 586450. 2029.24 0.65 0.124241 0.109743 25474 144626 -1 2086 21 1194 2198 152487 35249 3.2979 3.2979 -129.639 -3.2979 0 0 744469. 2576.02 0.03 0.07 0.12 -1 -1 0.03 0.0252727 0.0218883 119 34 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_126.v common 3.81 vpr 63.04 MiB -1 -1 0.23 18076 1 0.03 -1 -1 30284 -1 -1 22 25 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64552 25 32 216 194 1 138 79 17 17 289 -1 unnamed_device 23.6 MiB 0.97 598 9881 3477 4123 2281 63.0 MiB 0.07 0.00 3.7089 -85.4656 -3.7089 3.7089 0.33 0.000478077 0.000444482 0.0293864 0.0272887 -1 -1 -1 -1 36 1448 42 6.89349e+06 310065 648988. 2245.63 1.04 0.136492 0.117908 26050 158493 -1 1138 18 657 975 59260 15977 2.93981 2.93981 -80.0624 -2.93981 0 0 828058. 2865.25 0.03 0.03 0.09 -1 -1 0.03 0.00980015 0.00865384 88 29 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_127.v common 4.99 vpr 63.14 MiB -1 -1 0.15 18352 1 0.03 -1 -1 30352 -1 -1 26 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64660 32 32 376 307 1 242 90 17 17 289 -1 unnamed_device 24.1 MiB 2.30 1430 16170 4616 9563 1991 63.1 MiB 0.18 0.00 4.51899 -138.857 -4.51899 4.51899 0.33 0.000721273 0.000669662 0.0603201 0.0559474 -1 -1 -1 -1 32 3301 26 6.89349e+06 366440 586450. 2029.24 0.66 0.151815 0.134188 25474 144626 -1 2662 22 1825 2779 185735 42367 3.63286 3.63286 -129.152 -3.63286 0 0 744469. 2576.02 0.03 0.05 0.08 -1 -1 0.03 0.0164302 0.0144632 156 72 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_128.v common 5.19 vpr 63.29 MiB -1 -1 0.27 18404 1 0.03 -1 -1 30280 -1 -1 33 31 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64812 31 32 409 331 1 264 96 17 17 289 -1 unnamed_device 24.2 MiB 2.08 1431 11703 3152 7474 1077 63.3 MiB 0.14 0.00 4.84775 -156.008 -4.84775 4.84775 0.33 0.000772559 0.000718063 0.0435525 0.0403604 -1 -1 -1 -1 26 3450 37 6.89349e+06 465097 503264. 1741.40 0.87 0.155585 0.13616 24322 120374 -1 3021 21 2266 3099 239025 58139 4.43869 4.43869 -159.514 -4.43869 0 0 618332. 2139.56 0.03 0.09 0.10 -1 -1 0.03 0.0309079 0.0268354 175 90 -1 -1 -1 -1 +arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time num_le num_luts num_add_blocks max_add_chain_length num_sub_blocks max_sub_chain_length +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_001.v common 4.14 vpr 64.34 MiB -1 -1 0.19 18372 14 0.23 -1 -1 32420 -1 -1 40 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65880 32 32 277 309 1 203 104 17 17 289 -1 unnamed_device 24.8 MiB 0.07 3169 1468 11328 2379 7541 1408 64.3 MiB 0.07 0.00 10.3228 8.34809 -172.958 -8.34809 8.34809 0.24 0.000458019 0.000420977 0.0267514 0.024586 -1 -1 -1 -1 26 4102 40 6.55708e+06 482200 477104. 1650.88 2.34 0.198273 0.175014 21022 109990 -1 3183 21 1415 4612 232092 56261 7.86483 7.86483 -171.918 -7.86483 0 0 585099. 2024.56 0.05 0.08 0.06 -1 -1 0.05 0.0346821 0.0278328 194 183 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_002.v common 2.82 vpr 64.72 MiB -1 -1 0.19 18608 14 0.26 -1 -1 32020 -1 -1 39 30 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66272 30 32 272 304 1 192 101 17 17 289 -1 unnamed_device 24.8 MiB 0.06 2855 1327 6211 1127 4807 277 64.7 MiB 0.04 0.00 10.4229 7.81577 -157.932 -7.81577 7.81577 0.25 0.00044353 0.000407199 0.0145115 0.013339 -1 -1 -1 -1 26 3276 21 6.55708e+06 470145 477104. 1650.88 1.03 0.138339 0.121807 21022 109990 -1 2977 18 1223 3838 191983 48311 7.09678 7.09678 -155.225 -7.09678 0 0 585099. 2024.56 0.02 0.06 0.06 -1 -1 0.02 0.0222913 0.0201627 191 184 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_003.v common 2.79 vpr 64.70 MiB -1 -1 0.14 17972 11 0.20 -1 -1 32500 -1 -1 39 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66252 32 32 280 312 1 187 103 17 17 289 -1 unnamed_device 24.7 MiB 0.06 2827 1361 6128 1131 4405 592 64.7 MiB 0.04 0.00 8.30478 6.65392 -136.28 -6.65392 6.65392 0.23 0.000444217 0.000407628 0.0153173 0.0140577 -1 -1 -1 -1 28 3532 22 6.55708e+06 470145 500653. 1732.36 1.13 0.141601 0.124216 21310 115450 -1 2893 19 1295 4984 238971 59050 5.81978 5.81978 -132.978 -5.81978 0 0 612192. 2118.31 0.02 0.06 0.06 -1 -1 0.02 0.022413 0.0200969 193 186 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_004.v common 2.40 vpr 64.21 MiB -1 -1 0.16 18368 12 0.29 -1 -1 32700 -1 -1 40 29 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65748 29 32 275 307 1 194 101 17 17 289 -1 unnamed_device 24.8 MiB 0.07 2959 1244 8326 1689 5934 703 64.2 MiB 0.05 0.00 9.98698 7.42963 -136.806 -7.42963 7.42963 0.33 0.000442208 0.000402322 0.0186625 0.0171344 -1 -1 -1 -1 22 3463 27 6.55708e+06 482200 420624. 1455.45 0.62 0.111711 0.100638 20158 92377 -1 3149 20 1718 5783 304181 76974 6.67344 6.67344 -140.022 -6.67344 0 0 500653. 1732.36 0.02 0.08 0.05 -1 -1 0.02 0.0253416 0.0228426 200 190 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_005.v common 2.59 vpr 64.82 MiB -1 -1 0.18 18364 13 0.24 -1 -1 31812 -1 -1 42 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66372 32 32 302 334 1 214 106 17 17 289 -1 unnamed_device 24.8 MiB 0.07 3277 1472 9856 1982 7031 843 64.8 MiB 0.05 0.00 10.9395 7.98333 -168.064 -7.98333 7.98333 0.23 0.000470534 0.000431442 0.0218695 0.0200206 -1 -1 -1 -1 26 3770 18 6.55708e+06 506310 477104. 1650.88 0.93 0.134458 0.118969 21022 109990 -1 3230 16 1274 3900 187211 47077 7.22463 7.22463 -162.98 -7.22463 0 0 585099. 2024.56 0.02 0.05 0.06 -1 -1 0.02 0.021449 0.0195803 217 208 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_006.v common 2.56 vpr 64.45 MiB -1 -1 0.25 18364 13 0.23 -1 -1 32448 -1 -1 42 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65996 32 32 292 324 1 212 106 17 17 289 -1 unnamed_device 24.8 MiB 0.08 2866 1500 7356 1329 5608 419 64.4 MiB 0.06 0.00 9.67796 7.98192 -159.937 -7.98192 7.98192 0.24 0.0011069 0.0010281 0.0237148 0.0219451 -1 -1 -1 -1 30 3231 22 6.55708e+06 506310 526063. 1820.29 0.67 0.135582 0.121368 21886 126133 -1 2914 15 1161 4203 188301 46205 6.76976 6.76976 -150.378 -6.76976 0 0 666494. 2306.21 0.03 0.06 0.07 -1 -1 0.03 0.0231856 0.0211083 204 198 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_007.v common 2.26 vpr 64.33 MiB -1 -1 0.17 17984 12 0.18 -1 -1 32260 -1 -1 38 27 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65872 27 32 229 261 1 167 97 17 17 289 -1 unnamed_device 24.9 MiB 0.05 2337 1007 8533 2013 5783 737 64.3 MiB 0.04 0.00 9.40566 7.49882 -132.896 -7.49882 7.49882 0.23 0.000357417 0.000327606 0.0166803 0.0152855 -1 -1 -1 -1 22 2846 33 6.55708e+06 458090 420624. 1455.45 0.73 0.0961015 0.0844727 20158 92377 -1 2495 21 936 2825 151732 38675 7.10844 7.10844 -133.129 -7.10844 0 0 500653. 1732.36 0.02 0.05 0.05 -1 -1 0.02 0.0221263 0.0200669 162 150 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_008.v common 2.26 vpr 63.80 MiB -1 -1 0.15 17980 12 0.16 -1 -1 32388 -1 -1 36 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65328 31 32 229 261 1 172 99 17 17 289 -1 unnamed_device 24.0 MiB 0.09 2493 1182 11499 2779 7797 923 63.8 MiB 0.05 0.00 7.48917 6.1978 -123.822 -6.1978 6.1978 0.23 0.000357937 0.00032045 0.0200933 0.0182708 -1 -1 -1 -1 26 3022 23 6.55708e+06 433980 477104. 1650.88 0.68 0.0929068 0.0826701 21022 109990 -1 2558 15 983 3146 160300 39339 5.61152 5.61152 -124 -5.61152 0 0 585099. 2024.56 0.02 0.04 0.06 -1 -1 0.02 0.0152523 0.0138522 153 138 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_009.v common 2.12 vpr 64.02 MiB -1 -1 0.18 18368 12 0.15 -1 -1 32260 -1 -1 35 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65552 31 32 235 267 1 170 98 17 17 289 -1 unnamed_device 24.4 MiB 0.05 2607 1194 6398 1155 4738 505 64.0 MiB 0.03 0.00 8.76355 7.13011 -140.761 -7.13011 7.13011 0.24 0.000359813 0.000329497 0.0130808 0.0120095 -1 -1 -1 -1 26 2823 45 6.55708e+06 421925 477104. 1650.88 0.53 0.0813171 0.0719305 21022 109990 -1 2481 18 878 2720 142628 35086 6.35464 6.35464 -138.252 -6.35464 0 0 585099. 2024.56 0.02 0.06 0.07 -1 -1 0.02 0.026961 0.024312 155 144 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_010.v common 2.73 vpr 64.53 MiB -1 -1 0.17 17972 13 0.23 -1 -1 32340 -1 -1 35 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66076 32 32 250 282 1 190 99 17 17 289 -1 unnamed_device 24.4 MiB 0.08 2595 1285 6255 1073 4701 481 64.5 MiB 0.04 0.00 9.61062 7.56812 -165.213 -7.56812 7.56812 0.26 0.000386406 0.000353879 0.0145749 0.0134141 -1 -1 -1 -1 26 3258 24 6.55708e+06 421925 477104. 1650.88 1.03 0.151248 0.131586 21022 109990 -1 2743 21 1276 3790 183407 45756 6.89358 6.89358 -162.183 -6.89358 0 0 585099. 2024.56 0.02 0.07 0.06 -1 -1 0.02 0.0293242 0.0262182 166 156 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_011.v common 2.49 vpr 64.09 MiB -1 -1 0.15 17980 12 0.16 -1 -1 32496 -1 -1 33 30 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65632 30 32 216 248 1 160 95 17 17 289 -1 unnamed_device 24.2 MiB 0.07 2363 1089 9383 1996 6576 811 64.1 MiB 0.04 0.00 8.78898 6.99514 -141.661 -6.99514 6.99514 0.25 0.00034128 0.000311808 0.0166983 0.0152604 -1 -1 -1 -1 28 2591 19 6.55708e+06 397815 500653. 1732.36 0.90 0.101924 0.0897543 21310 115450 -1 2231 16 835 2644 129323 32207 6.02864 6.02864 -134.773 -6.02864 0 0 612192. 2118.31 0.02 0.04 0.06 -1 -1 0.02 0.0171828 0.0155916 140 128 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_012.v common 2.27 vpr 63.82 MiB -1 -1 0.14 17980 12 0.13 -1 -1 32248 -1 -1 33 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65348 32 32 236 268 1 171 97 17 17 289 -1 unnamed_device 24.0 MiB 0.07 2486 1250 7201 1363 5333 505 63.8 MiB 0.04 0.00 7.92826 6.93051 -150.969 -6.93051 6.93051 0.24 0.000362163 0.000323716 0.0139954 0.0127661 -1 -1 -1 -1 22 3133 21 6.55708e+06 397815 420624. 1455.45 0.80 0.105874 0.0929435 20158 92377 -1 2873 18 1055 3139 174475 42904 6.04852 6.04852 -151.719 -6.04852 0 0 500653. 1732.36 0.02 0.05 0.05 -1 -1 0.02 0.0177045 0.0160033 148 142 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_013.v common 2.11 vpr 64.77 MiB -1 -1 0.17 17904 13 0.22 -1 -1 32380 -1 -1 38 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66320 32 32 283 315 1 206 102 17 17 289 -1 unnamed_device 24.8 MiB 0.06 2918 1396 8432 1576 6264 592 64.8 MiB 0.05 0.00 10.5047 7.90793 -163.623 -7.90793 7.90793 0.24 0.000463543 0.000426506 0.0209377 0.0192839 -1 -1 -1 -1 26 3470 21 6.55708e+06 458090 477104. 1650.88 0.49 0.0961944 0.0860277 21022 109990 -1 2987 16 1182 3603 185734 44882 6.92916 6.92916 -156.223 -6.92916 0 0 585099. 2024.56 0.02 0.05 0.06 -1 -1 0.02 0.0219292 0.0199363 197 189 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_014.v common 2.97 vpr 64.87 MiB -1 -1 0.17 18364 14 0.28 -1 -1 32428 -1 -1 39 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66428 32 32 303 335 1 216 103 17 17 289 -1 unnamed_device 25.2 MiB 0.11 3288 1474 6128 1054 4658 416 64.9 MiB 0.04 0.00 12.0727 8.81606 -181.273 -8.81606 8.81606 0.24 0.000504434 0.000449507 0.0154959 0.0142237 -1 -1 -1 -1 28 3839 27 6.55708e+06 470145 500653. 1732.36 1.22 0.163212 0.143995 21310 115450 -1 3197 18 1484 4767 234549 57799 7.60916 7.60916 -170.785 -7.60916 0 0 612192. 2118.31 0.02 0.07 0.06 -1 -1 0.02 0.0274708 0.0249197 214 209 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_015.v common 2.39 vpr 64.35 MiB -1 -1 0.14 17980 11 0.15 -1 -1 32280 -1 -1 39 29 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65892 29 32 225 257 1 164 100 17 17 289 -1 unnamed_device 24.4 MiB 0.05 2302 1071 8684 1857 6075 752 64.3 MiB 0.04 0.00 8.12271 6.84055 -135.697 -6.84055 6.84055 0.23 0.000349214 0.000319509 0.0150334 0.013758 -1 -1 -1 -1 30 2348 30 6.55708e+06 470145 526063. 1820.29 0.91 0.137917 0.121515 21886 126133 -1 2011 13 693 2200 90643 23004 5.99144 5.99144 -125.931 -5.99144 0 0 666494. 2306.21 0.02 0.03 0.07 -1 -1 0.02 0.013831 0.012644 154 140 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_016.v common 3.46 vpr 64.83 MiB -1 -1 0.25 18748 12 0.25 -1 -1 32680 -1 -1 40 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66388 32 32 301 333 1 214 104 17 17 289 -1 unnamed_device 24.8 MiB 0.07 3731 1580 10108 2123 7160 825 64.8 MiB 0.06 0.00 10.4215 7.69506 -165.69 -7.69506 7.69506 0.23 0.00048124 0.000442319 0.023123 0.0211923 -1 -1 -1 -1 28 4238 23 6.55708e+06 482200 500653. 1732.36 1.51 0.193497 0.172492 21310 115450 -1 3402 20 1337 4577 232126 56137 6.59044 6.59044 -157.099 -6.59044 0 0 612192. 2118.31 0.04 0.11 0.11 -1 -1 0.04 0.0451348 0.0409865 211 207 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_017.v common 2.31 vpr 64.70 MiB -1 -1 0.17 18368 14 0.22 -1 -1 32384 -1 -1 38 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66252 32 32 277 309 1 206 102 17 17 289 -1 unnamed_device 24.8 MiB 0.07 3035 1443 6528 1220 4877 431 64.7 MiB 0.04 0.00 10.0543 7.86974 -166.415 -7.86974 7.86974 0.24 0.000429846 0.000392749 0.0174185 0.0160311 -1 -1 -1 -1 30 3432 26 6.55708e+06 458090 526063. 1820.29 0.64 0.10171 0.0899918 21886 126133 -1 2807 16 1180 4013 184856 44602 6.94704 6.94704 -156.04 -6.94704 0 0 666494. 2306.21 0.03 0.05 0.08 -1 -1 0.03 0.0206573 0.018835 193 183 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_018.v common 2.73 vpr 64.29 MiB -1 -1 0.20 18360 12 0.14 -1 -1 32224 -1 -1 32 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65836 32 32 227 259 1 155 96 17 17 289 -1 unnamed_device 24.5 MiB 0.07 2590 1167 9951 2256 6821 874 64.3 MiB 0.07 0.00 9.34738 6.87555 -150.994 -6.87555 6.87555 0.24 0.000849311 0.000790944 0.0342931 0.0321893 -1 -1 -1 -1 26 2790 20 6.55708e+06 385760 477104. 1650.88 1.03 0.160074 0.142578 21022 109990 -1 2381 19 920 3114 159590 38534 6.18098 6.18098 -145.131 -6.18098 0 0 585099. 2024.56 0.03 0.07 0.09 -1 -1 0.03 0.0283522 0.025653 145 133 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_019.v common 1.73 vpr 63.68 MiB -1 -1 0.13 17984 10 0.08 -1 -1 31720 -1 -1 25 30 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65204 30 32 175 207 1 133 87 17 17 289 -1 unnamed_device 24.1 MiB 0.04 1817 875 6615 1509 4517 589 63.7 MiB 0.03 0.00 6.36477 5.54003 -124.848 -5.54003 5.54003 0.24 0.000273145 0.000250213 0.0117929 0.0108481 -1 -1 -1 -1 26 1892 14 6.55708e+06 301375 477104. 1650.88 0.37 0.0455235 0.0402896 21022 109990 -1 1707 15 580 1538 75173 19570 4.68146 4.68146 -118.937 -4.68146 0 0 585099. 2024.56 0.02 0.03 0.06 -1 -1 0.02 0.011085 0.00998996 100 87 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_020.v common 2.61 vpr 64.34 MiB -1 -1 0.26 18368 13 0.16 -1 -1 32248 -1 -1 33 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65880 31 32 231 263 1 172 96 17 17 289 -1 unnamed_device 24.4 MiB 0.07 2551 1219 5133 882 3910 341 64.3 MiB 0.03 0.00 9.56848 7.51354 -158.515 -7.51354 7.51354 0.25 0.00037534 0.000342742 0.011147 0.0102689 -1 -1 -1 -1 26 2914 16 6.55708e+06 397815 477104. 1650.88 0.93 0.10781 0.0949072 21022 109990 -1 2616 16 912 2770 141635 35169 6.50744 6.50744 -149.665 -6.50744 0 0 585099. 2024.56 0.02 0.04 0.06 -1 -1 0.02 0.0166308 0.0151505 151 140 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_021.v common 3.59 vpr 64.70 MiB -1 -1 0.25 18364 13 0.24 -1 -1 33084 -1 -1 45 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66248 32 32 304 336 1 215 109 17 17 289 -1 unnamed_device 24.8 MiB 0.08 3300 1520 9729 2088 6855 786 64.7 MiB 0.05 0.00 11.3205 8.3687 -170.208 -8.3687 8.3687 0.36 0.000468055 0.00042951 0.021122 0.0193255 -1 -1 -1 -1 26 4144 38 6.55708e+06 542475 477104. 1650.88 1.62 0.168739 0.149499 21022 109990 -1 3324 16 1386 4558 227561 55685 7.37076 7.37076 -163.235 -7.37076 0 0 585099. 2024.56 0.02 0.06 0.07 -1 -1 0.02 0.0248103 0.0223431 222 210 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_022.v common 3.26 vpr 65.14 MiB -1 -1 0.17 18364 13 0.32 -1 -1 32320 -1 -1 46 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66700 32 32 288 320 1 212 110 17 17 289 -1 unnamed_device 25.2 MiB 0.08 3011 1549 9841 1986 7037 818 65.1 MiB 0.06 0.00 9.94628 8.09001 -170.835 -8.09001 8.09001 0.25 0.000783059 0.000709901 0.0240612 0.0222191 -1 -1 -1 -1 34 3785 46 6.55708e+06 554530 585099. 2024.56 1.41 0.194299 0.171381 22462 138074 -1 3315 18 1268 4764 252706 59815 6.97197 6.97197 -158.757 -6.97197 0 0 742403. 2568.87 0.03 0.07 0.08 -1 -1 0.03 0.0266895 0.0242846 209 194 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_023.v common 1.70 vpr 63.59 MiB -1 -1 0.12 17600 9 0.08 -1 -1 32016 -1 -1 30 26 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65120 26 32 152 184 1 110 88 17 17 289 -1 unnamed_device 24.0 MiB 0.03 1535 711 7888 1985 4791 1112 63.6 MiB 0.03 0.00 5.98374 4.84 -87.8657 -4.84 4.84 0.23 0.000243053 0.000222729 0.0112522 0.0102964 -1 -1 -1 -1 26 1557 15 6.55708e+06 361650 477104. 1650.88 0.33 0.0419996 0.0368842 21022 109990 -1 1389 17 478 1412 69242 17472 4.2322 4.2322 -86.9531 -4.2322 0 0 585099. 2024.56 0.03 0.04 0.09 -1 -1 0.03 0.0156673 0.0139829 95 76 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_024.v common 2.28 vpr 64.75 MiB -1 -1 0.16 18220 13 0.25 -1 -1 32356 -1 -1 42 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66304 32 32 287 319 1 209 106 17 17 289 -1 unnamed_device 25.0 MiB 0.07 3188 1475 7356 1240 5841 275 64.8 MiB 0.04 0.00 10.9129 8.3667 -168.117 -8.3667 8.3667 0.24 0.000456208 0.00041319 0.0164859 0.015092 -1 -1 -1 -1 26 3835 20 6.55708e+06 506310 477104. 1650.88 0.65 0.0893791 0.0794058 21022 109990 -1 3121 17 1250 3890 189718 46969 7.40996 7.40996 -160.049 -7.40996 0 0 585099. 2024.56 0.02 0.05 0.06 -1 -1 0.02 0.0207467 0.0188691 204 193 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_025.v common 1.68 vpr 63.57 MiB -1 -1 0.13 17600 8 0.07 -1 -1 32016 -1 -1 27 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65092 32 32 154 186 1 117 91 17 17 289 -1 unnamed_device 24.0 MiB 0.04 1504 839 6823 1506 4714 603 63.6 MiB 0.03 0.00 4.86674 4.14794 -97.1492 -4.14794 4.14794 0.23 0.000245642 0.000219086 0.00957985 0.00875471 -1 -1 -1 -1 26 1708 16 6.55708e+06 325485 477104. 1650.88 0.35 0.040037 0.0351673 21022 109990 -1 1465 13 445 1124 51583 13618 3.90514 3.90514 -96.8068 -3.90514 0 0 585099. 2024.56 0.02 0.02 0.08 -1 -1 0.02 0.00901111 0.00814501 83 60 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_026.v common 2.70 vpr 64.62 MiB -1 -1 0.19 17980 15 0.21 -1 -1 32384 -1 -1 44 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66172 32 32 254 286 1 184 108 17 17 289 -1 unnamed_device 25.2 MiB 0.07 2794 1289 8846 1673 6391 782 64.6 MiB 0.04 0.00 11.4269 8.91249 -179.898 -8.91249 8.91249 0.24 0.000411792 0.000376479 0.0166773 0.0152536 -1 -1 -1 -1 28 3141 22 6.55708e+06 530420 500653. 1732.36 1.05 0.133835 0.117718 21310 115450 -1 2703 19 1085 3420 169095 41588 7.75229 7.75229 -168.555 -7.75229 0 0 612192. 2118.31 0.02 0.05 0.06 -1 -1 0.02 0.0202997 0.0183246 178 160 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_027.v common 3.32 vpr 64.26 MiB -1 -1 0.28 18368 13 0.20 -1 -1 32396 -1 -1 37 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65800 32 32 260 292 1 185 101 17 17 289 -1 unnamed_device 24.8 MiB 0.07 2553 1218 6446 1181 4503 762 64.3 MiB 0.04 0.00 8.41804 7.47895 -148.299 -7.47895 7.47895 0.35 0.000420455 0.000384763 0.0146573 0.0134158 -1 -1 -1 -1 28 3650 32 6.55708e+06 446035 500653. 1732.36 1.30 0.141603 0.124407 21310 115450 -1 2721 15 1115 3669 183849 47689 6.42904 6.42904 -144.643 -6.42904 0 0 612192. 2118.31 0.02 0.05 0.06 -1 -1 0.02 0.0184911 0.0168997 177 166 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_028.v common 2.89 vpr 64.74 MiB -1 -1 0.17 18368 13 0.24 -1 -1 32460 -1 -1 38 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66296 32 32 279 311 1 203 102 17 17 289 -1 unnamed_device 24.8 MiB 0.11 2785 1427 7242 1418 5129 695 64.7 MiB 0.07 0.00 9.58507 7.90558 -164.249 -7.90558 7.90558 0.44 0.000817344 0.000732132 0.0296013 0.0270257 -1 -1 -1 -1 28 3858 46 6.55708e+06 458090 500653. 1732.36 0.87 0.129441 0.116272 21310 115450 -1 3094 16 1193 4031 204357 49925 6.90524 6.90524 -156.112 -6.90524 0 0 612192. 2118.31 0.02 0.05 0.06 -1 -1 0.02 0.0215907 0.0197086 194 185 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_029.v common 2.58 vpr 63.68 MiB -1 -1 0.14 17984 12 0.15 -1 -1 32200 -1 -1 34 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65212 32 32 238 270 1 175 98 17 17 289 -1 unnamed_device 24.1 MiB 0.07 2532 1229 6623 1196 5108 319 63.7 MiB 0.05 0.00 8.83794 6.95354 -149.945 -6.95354 6.95354 0.34 0.000362825 0.000331699 0.0207453 0.0191131 -1 -1 -1 -1 26 3231 30 6.55708e+06 409870 477104. 1650.88 0.76 0.0914983 0.0816512 21022 109990 -1 2625 20 1044 3327 165434 41832 6.25938 6.25938 -147.249 -6.25938 0 0 585099. 2024.56 0.03 0.08 0.10 -1 -1 0.03 0.0311287 0.0280935 151 144 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_030.v common 2.42 vpr 64.23 MiB -1 -1 0.14 17980 11 0.18 -1 -1 32228 -1 -1 32 30 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65772 30 32 213 245 1 156 94 17 17 289 -1 unnamed_device 24.4 MiB 0.05 2070 1033 7549 1505 5428 616 64.2 MiB 0.04 0.00 8.27041 6.08486 -132.558 -6.08486 6.08486 0.24 0.00033254 0.000298034 0.0137224 0.0125369 -1 -1 -1 -1 26 2273 36 6.55708e+06 385760 477104. 1650.88 0.75 0.10972 0.0956295 21022 109990 -1 2055 14 763 2181 98833 26461 5.43986 5.43986 -127.04 -5.43986 0 0 585099. 2024.56 0.02 0.04 0.06 -1 -1 0.02 0.0168096 0.0153762 136 125 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_031.v common 2.06 vpr 64.36 MiB -1 -1 0.18 17820 11 0.15 -1 -1 32252 -1 -1 38 28 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65908 28 32 227 259 1 163 98 17 17 289 -1 unnamed_device 24.8 MiB 0.06 2167 1077 9098 1974 6271 853 64.4 MiB 0.05 0.00 7.98015 6.78919 -130.953 -6.78919 6.78919 0.25 0.000476822 0.000447209 0.0226207 0.0209058 -1 -1 -1 -1 26 2605 24 6.55708e+06 458090 477104. 1650.88 0.46 0.0935539 0.083392 21022 109990 -1 2357 15 882 2746 133141 33518 6.11266 6.11266 -125.603 -6.11266 0 0 585099. 2024.56 0.03 0.05 0.06 -1 -1 0.03 0.0199283 0.0181338 155 145 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_032.v common 2.69 vpr 64.65 MiB -1 -1 0.19 17980 12 0.19 -1 -1 32280 -1 -1 39 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66204 32 32 274 306 1 199 103 17 17 289 -1 unnamed_device 24.8 MiB 0.07 3018 1411 6128 1033 4730 365 64.7 MiB 0.04 0.00 9.91223 7.35615 -165.077 -7.35615 7.35615 0.24 0.000661124 0.000624461 0.0141509 0.0130367 -1 -1 -1 -1 28 3428 19 6.55708e+06 470145 500653. 1732.36 1.00 0.123875 0.108623 21310 115450 -1 2862 17 1149 3414 164768 41668 6.35004 6.35004 -156.285 -6.35004 0 0 612192. 2118.31 0.02 0.05 0.07 -1 -1 0.02 0.0208 0.0188528 188 180 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_033.v common 1.97 vpr 64.18 MiB -1 -1 0.14 17976 12 0.14 -1 -1 32240 -1 -1 35 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65724 31 32 237 269 1 165 98 17 17 289 -1 unnamed_device 24.8 MiB 0.06 2339 1152 7973 1666 5519 788 64.2 MiB 0.04 0.00 8.83795 7.15214 -144.041 -7.15214 7.15214 0.24 0.000360413 0.000326731 0.0152974 0.0139203 -1 -1 -1 -1 26 2785 21 6.55708e+06 421925 477104. 1650.88 0.42 0.0710706 0.0628035 21022 109990 -1 2478 19 1052 3111 153968 38476 6.22984 6.22984 -139.914 -6.22984 0 0 585099. 2024.56 0.02 0.06 0.06 -1 -1 0.02 0.0257539 0.0230039 161 146 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_034.v common 1.80 vpr 64.32 MiB -1 -1 0.18 17984 10 0.12 -1 -1 32220 -1 -1 33 29 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65860 29 32 220 252 1 154 94 17 17 289 -1 unnamed_device 24.8 MiB 0.05 2111 1030 5206 950 3856 400 64.3 MiB 0.03 0.00 7.90072 6.31249 -127.587 -6.31249 6.31249 0.23 0.000341905 0.000312898 0.0105515 0.00968785 -1 -1 -1 -1 26 2457 16 6.55708e+06 397815 477104. 1650.88 0.30 0.0550495 0.0487275 21022 109990 -1 2196 16 763 2669 127482 31451 5.50298 5.50298 -123.617 -5.50298 0 0 585099. 2024.56 0.02 0.04 0.06 -1 -1 0.02 0.015236 0.0138402 146 135 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_035.v common 2.56 vpr 64.93 MiB -1 -1 0.18 18748 13 0.35 -1 -1 32504 -1 -1 40 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66488 32 32 315 347 1 220 104 17 17 289 -1 unnamed_device 25.5 MiB 0.09 3359 1629 9132 2182 5924 1026 64.9 MiB 0.05 0.00 10.2396 8.33236 -170.529 -8.33236 8.33236 0.23 0.000496726 0.000454774 0.0221698 0.0202728 -1 -1 -1 -1 26 4005 19 6.55708e+06 482200 477104. 1650.88 0.70 0.0969603 0.0867237 21022 109990 -1 3407 16 1525 5269 261204 63091 6.78964 6.78964 -154.084 -6.78964 0 0 585099. 2024.56 0.02 0.06 0.06 -1 -1 0.02 0.0222822 0.0202409 231 221 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_036.v common 2.68 vpr 64.77 MiB -1 -1 0.17 18752 14 0.34 -1 -1 32288 -1 -1 43 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66320 32 32 282 314 1 219 107 17 17 289 -1 unnamed_device 24.8 MiB 0.13 3309 1501 7444 1465 5350 629 64.8 MiB 0.04 0.00 9.01512 7.882 -167.76 -7.882 7.882 0.23 0.000457104 0.000413096 0.0160806 0.0147011 -1 -1 -1 -1 30 3451 21 6.55708e+06 518365 526063. 1820.29 0.63 0.114441 0.102052 21886 126133 -1 3012 19 1353 4471 189705 48631 6.82684 6.82684 -156.723 -6.82684 0 0 666494. 2306.21 0.03 0.07 0.08 -1 -1 0.03 0.0272279 0.0246689 199 188 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_037.v common 2.55 vpr 64.40 MiB -1 -1 0.15 17984 12 0.13 -1 -1 32280 -1 -1 34 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65948 31 32 241 273 1 176 97 17 17 289 -1 unnamed_device 24.5 MiB 0.07 2615 1203 10087 2397 6601 1089 64.4 MiB 0.07 0.00 10.1954 7.8818 -157.766 -7.8818 7.8818 0.25 0.000373792 0.000342257 0.0315957 0.0290482 -1 -1 -1 -1 26 2814 23 6.55708e+06 409870 477104. 1650.88 0.99 0.145263 0.128418 21022 109990 -1 2492 19 1059 3340 167020 41325 6.94904 6.94904 -150.445 -6.94904 0 0 585099. 2024.56 0.02 0.05 0.06 -1 -1 0.02 0.0178526 0.0160758 161 150 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_038.v common 3.38 vpr 64.19 MiB -1 -1 0.18 18604 12 0.24 -1 -1 32444 -1 -1 42 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65732 31 32 307 339 1 218 105 17 17 289 -1 unnamed_device 25.2 MiB 0.12 3531 1406 11961 2747 8126 1088 64.2 MiB 0.07 0.00 9.67644 7.34358 -149.686 -7.34358 7.34358 0.23 0.000477874 0.000430677 0.0279143 0.0255112 -1 -1 -1 -1 26 4060 37 6.55708e+06 506310 477104. 1650.88 1.57 0.230868 0.204995 21022 109990 -1 3110 21 1514 5290 250090 63272 6.71064 6.71064 -148.302 -6.71064 0 0 585099. 2024.56 0.02 0.08 0.06 -1 -1 0.02 0.031789 0.0285672 222 216 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_039.v common 3.01 vpr 64.46 MiB -1 -1 0.19 18748 14 0.30 -1 -1 33004 -1 -1 40 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66012 31 32 293 325 1 209 103 17 17 289 -1 unnamed_device 24.8 MiB 0.07 3249 1483 8056 1615 5882 559 64.5 MiB 0.10 0.00 11.3501 8.401 -168.472 -8.401 8.401 0.32 0.00120517 0.0011155 0.0430016 0.0397087 -1 -1 -1 -1 24 4160 43 6.55708e+06 482200 448715. 1552.65 1.10 0.163162 0.145601 20734 103517 -1 3341 29 1546 4981 334492 116243 7.72936 7.72936 -165.676 -7.72936 0 0 554710. 1919.41 0.02 0.12 0.06 -1 -1 0.02 0.0390517 0.0352076 211 202 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_040.v common 2.75 vpr 64.60 MiB -1 -1 0.19 18752 13 0.23 -1 -1 32248 -1 -1 49 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66148 31 32 276 308 1 210 112 17 17 289 -1 unnamed_device 24.8 MiB 0.08 3496 1506 9527 2110 6648 769 64.6 MiB 0.05 0.00 10.2681 8.49401 -167.474 -8.49401 8.49401 0.24 0.000435905 0.000399578 0.0187398 0.0171331 -1 -1 -1 -1 26 4222 41 6.55708e+06 590695 477104. 1650.88 1.06 0.116426 0.103875 21022 109990 -1 3390 31 1362 4459 292331 95208 7.1573 7.1573 -156.188 -7.1573 0 0 585099. 2024.56 0.02 0.09 0.06 -1 -1 0.02 0.0302454 0.0269603 204 185 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_041.v common 4.13 vpr 64.66 MiB -1 -1 0.18 18368 13 0.33 -1 -1 32428 -1 -1 36 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66212 31 32 269 301 1 187 99 17 17 289 -1 unnamed_device 24.8 MiB 0.08 2993 1382 7623 1737 5150 736 64.7 MiB 0.05 0.00 9.77611 7.29977 -148.117 -7.29977 7.29977 0.23 0.000649272 0.000586185 0.0179255 0.0164024 -1 -1 -1 -1 26 3776 30 6.55708e+06 433980 477104. 1650.88 2.36 0.170021 0.150298 21022 109990 -1 2992 18 1097 3889 201560 47848 6.31084 6.31084 -138.606 -6.31084 0 0 585099. 2024.56 0.02 0.05 0.06 -1 -1 0.02 0.0209992 0.0190088 186 178 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_042.v common 2.52 vpr 64.57 MiB -1 -1 0.16 17980 12 0.16 -1 -1 32392 -1 -1 36 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66124 32 32 264 296 1 182 100 17 17 289 -1 unnamed_device 24.4 MiB 0.06 2787 1178 16572 4143 9707 2722 64.6 MiB 0.08 0.00 8.67103 7.20861 -147.87 -7.20861 7.20861 0.24 0.000396717 0.000362317 0.031655 0.0287685 -1 -1 -1 -1 28 2903 30 6.55708e+06 433980 500653. 1732.36 0.92 0.146414 0.129198 21310 115450 -1 2418 14 944 2858 141962 35987 6.33838 6.33838 -138.315 -6.33838 0 0 612192. 2118.31 0.02 0.04 0.06 -1 -1 0.02 0.0198651 0.0180623 180 170 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_043.v common 3.48 vpr 65.00 MiB -1 -1 0.30 19516 14 0.36 -1 -1 32460 -1 -1 46 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66560 32 32 324 356 1 237 110 17 17 289 -1 unnamed_device 25.2 MiB 0.09 3588 1767 7474 1429 5523 522 65.0 MiB 0.05 0.00 10.0303 8.51709 -182.069 -8.51709 8.51709 0.23 0.000502932 0.000460485 0.017751 0.0163008 -1 -1 -1 -1 32 4223 21 6.55708e+06 554530 554710. 1919.41 1.49 0.228883 0.201565 22174 131602 -1 3712 19 1425 5225 247788 61833 7.3565 7.3565 -172.567 -7.3565 0 0 701300. 2426.64 0.03 0.07 0.07 -1 -1 0.03 0.0292167 0.0264599 241 230 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_044.v common 1.96 vpr 63.96 MiB -1 -1 0.14 17984 11 0.17 -1 -1 31924 -1 -1 33 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65500 31 32 249 281 1 175 96 17 17 289 -1 unnamed_device 24.4 MiB 0.07 2703 1245 9951 2354 6419 1178 64.0 MiB 0.05 0.00 8.92495 6.69552 -142.327 -6.69552 6.69552 0.23 0.000400985 0.000367433 0.020751 0.0189973 -1 -1 -1 -1 26 3314 26 6.55708e+06 397815 477104. 1650.88 0.45 0.0794923 0.0704457 21022 109990 -1 2774 20 1213 4204 218942 54057 5.89112 5.89112 -137.993 -5.89112 0 0 585099. 2024.56 0.02 0.06 0.06 -1 -1 0.02 0.0204148 0.0184373 169 158 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_045.v common 2.79 vpr 64.76 MiB -1 -1 0.17 18368 13 0.24 -1 -1 32256 -1 -1 43 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66316 31 32 284 316 1 195 106 17 17 289 -1 unnamed_device 24.8 MiB 0.09 2880 1407 6106 991 4788 327 64.8 MiB 0.04 0.00 10.1669 8.04395 -157.61 -8.04395 8.04395 0.23 0.000456389 0.000417669 0.0140646 0.0128906 -1 -1 -1 -1 26 3416 21 6.55708e+06 518365 477104. 1650.88 1.13 0.14093 0.124106 21022 109990 -1 2935 19 1052 3846 213355 60751 7.1573 7.1573 -151.712 -7.1573 0 0 585099. 2024.56 0.02 0.07 0.06 -1 -1 0.02 0.0259928 0.0232535 202 193 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_046.v common 4.22 vpr 64.81 MiB -1 -1 0.16 18364 12 0.23 -1 -1 32416 -1 -1 40 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66368 32 32 303 335 1 213 104 17 17 289 -1 unnamed_device 24.8 MiB 0.07 3637 1510 9620 2142 6549 929 64.8 MiB 0.06 0.00 9.78237 6.97332 -152.142 -6.97332 6.97332 0.23 0.000502106 0.00042931 0.0261794 0.0239064 -1 -1 -1 -1 26 4325 34 6.55708e+06 482200 477104. 1650.88 2.53 0.197744 0.174299 21022 109990 -1 3559 22 2010 7594 396246 94358 6.30318 6.30318 -151.607 -6.30318 0 0 585099. 2024.56 0.02 0.09 0.06 -1 -1 0.02 0.029183 0.0262317 216 209 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_047.v common 2.16 vpr 64.32 MiB -1 -1 0.15 18364 13 0.24 -1 -1 32524 -1 -1 34 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65860 32 32 272 304 1 187 98 17 17 289 -1 unnamed_device 24.8 MiB 0.07 2741 1323 5723 957 4337 429 64.3 MiB 0.04 0.00 10.5096 7.47895 -154.869 -7.47895 7.47895 0.24 0.000437137 0.000400272 0.0143062 0.0131723 -1 -1 -1 -1 26 3535 21 6.55708e+06 409870 477104. 1650.88 0.54 0.0847412 0.0755315 21022 109990 -1 2816 18 1335 4235 204307 50601 6.70864 6.70864 -152.349 -6.70864 0 0 585099. 2024.56 0.02 0.05 0.07 -1 -1 0.02 0.0206862 0.0187005 188 178 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_048.v common 2.55 vpr 64.30 MiB -1 -1 0.16 18368 13 0.19 -1 -1 32404 -1 -1 41 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65844 32 32 271 303 1 198 105 17 17 289 -1 unnamed_device 24.8 MiB 0.06 2854 1297 7762 1580 5576 606 64.3 MiB 0.05 0.00 9.09457 7.36601 -155.837 -7.36601 7.36601 0.23 0.000415008 0.000379214 0.0185983 0.0171236 -1 -1 -1 -1 26 3146 23 6.55708e+06 494255 477104. 1650.88 1.01 0.139015 0.12237 21022 109990 -1 2730 15 1086 3278 165110 40936 6.44432 6.44432 -147.717 -6.44432 0 0 585099. 2024.56 0.02 0.05 0.06 -1 -1 0.02 0.0184486 0.0168059 189 177 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_049.v common 3.65 vpr 64.80 MiB -1 -1 0.25 18368 12 0.22 -1 -1 32044 -1 -1 38 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66352 32 32 288 320 1 205 102 17 17 289 -1 unnamed_device 25.0 MiB 0.09 3079 1440 8670 1767 6237 666 64.8 MiB 0.05 0.00 8.89602 7.32135 -155.214 -7.32135 7.32135 0.23 0.000445433 0.000406962 0.0195291 0.0179138 -1 -1 -1 -1 26 3667 27 6.55708e+06 458090 477104. 1650.88 1.92 0.217527 0.191661 21022 109990 -1 3235 22 1404 5425 270682 64761 6.53898 6.53898 -150.672 -6.53898 0 0 585099. 2024.56 0.02 0.07 0.06 -1 -1 0.02 0.024792 0.0223819 201 194 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_050.v common 3.79 vpr 64.84 MiB -1 -1 0.25 18752 13 0.26 -1 -1 33056 -1 -1 44 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66400 32 32 306 338 1 222 108 17 17 289 -1 unnamed_device 25.2 MiB 0.09 3151 1541 9617 2019 6835 763 64.8 MiB 0.06 0.00 10.5209 8.10463 -168.591 -8.10463 8.10463 0.23 0.000483588 0.000442669 0.0214407 0.0196021 -1 -1 -1 -1 26 4372 38 6.55708e+06 530420 477104. 1650.88 1.97 0.193338 0.171644 21022 109990 -1 3411 15 1394 4439 211034 53368 7.2801 7.2801 -161.773 -7.2801 0 0 585099. 2024.56 0.02 0.05 0.06 -1 -1 0.02 0.0212496 0.019415 223 212 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_051.v common 2.37 vpr 64.64 MiB -1 -1 0.15 18368 14 0.24 -1 -1 32696 -1 -1 36 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66192 32 32 262 294 1 188 100 17 17 289 -1 unnamed_device 25.2 MiB 0.06 2763 1363 11700 2683 7233 1784 64.6 MiB 0.06 0.00 11.1513 8.70517 -163.209 -8.70517 8.70517 0.24 0.000445018 0.000409166 0.0237738 0.0217999 -1 -1 -1 -1 26 3751 36 6.55708e+06 433980 477104. 1650.88 0.74 0.097964 0.0871314 21022 109990 -1 2963 18 1219 3929 208524 50182 7.98142 7.98142 -159.654 -7.98142 0 0 585099. 2024.56 0.02 0.06 0.06 -1 -1 0.02 0.0219043 0.0197382 181 168 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_052.v common 3.29 vpr 64.70 MiB -1 -1 0.18 18364 13 0.23 -1 -1 32404 -1 -1 43 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66248 32 32 291 323 1 211 107 17 17 289 -1 unnamed_device 24.8 MiB 0.10 3299 1433 10480 2285 7646 549 64.7 MiB 0.08 0.00 11.3728 8.2812 -162.484 -8.2812 8.2812 0.23 0.000456943 0.000419163 0.0319448 0.0295537 -1 -1 -1 -1 26 4249 38 6.55708e+06 518365 477104. 1650.88 1.59 0.201052 0.17736 21022 109990 -1 3257 22 1390 4748 258559 69429 7.1579 7.1579 -156.58 -7.1579 0 0 585099. 2024.56 0.02 0.07 0.06 -1 -1 0.02 0.0241806 0.0217837 211 197 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_053.v common 3.45 vpr 64.82 MiB -1 -1 0.25 18752 13 0.24 -1 -1 32152 -1 -1 44 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66372 31 32 302 334 1 217 107 17 17 289 -1 unnamed_device 24.8 MiB 0.06 3175 1433 9974 2144 6983 847 64.8 MiB 0.06 0.00 10.7693 8.14207 -165.881 -8.14207 8.14207 0.23 0.000463083 0.000424081 0.0213645 0.019549 -1 -1 -1 -1 26 3885 44 6.55708e+06 530420 477104. 1650.88 1.62 0.186609 0.164822 21022 109990 -1 3210 16 1307 4049 198045 49445 7.04936 7.04936 -156.762 -7.04936 0 0 585099. 2024.56 0.02 0.06 0.10 -1 -1 0.02 0.0220925 0.0201608 219 211 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_054.v common 3.00 vpr 64.88 MiB -1 -1 0.25 18748 12 0.28 -1 -1 32588 -1 -1 43 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66432 32 32 308 340 1 227 107 17 17 289 -1 unnamed_device 25.2 MiB 0.10 3553 1588 8456 1657 6340 459 64.9 MiB 0.05 0.00 10.5054 7.81338 -162.105 -7.81338 7.81338 0.23 0.000467261 0.0004282 0.0190897 0.0174553 -1 -1 -1 -1 30 3533 18 6.55708e+06 518365 526063. 1820.29 1.20 0.175664 0.154749 21886 126133 -1 2975 18 1181 4009 172026 42611 6.9633 6.9633 -152.154 -6.9633 0 0 666494. 2306.21 0.03 0.06 0.07 -1 -1 0.03 0.0281559 0.0255785 222 214 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_055.v common 2.30 vpr 63.96 MiB -1 -1 0.14 17984 11 0.11 -1 -1 32256 -1 -1 29 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65492 32 32 216 248 1 150 93 17 17 289 -1 unnamed_device 24.0 MiB 0.05 2172 1114 6813 1476 4649 688 64.0 MiB 0.03 0.00 7.67149 6.45472 -142.708 -6.45472 6.45472 0.23 0.000329671 0.000300919 0.0124913 0.0114155 -1 -1 -1 -1 26 2542 22 6.55708e+06 349595 477104. 1650.88 0.90 0.111032 0.0966003 21022 109990 -1 2319 13 784 2335 118482 29614 5.83766 5.83766 -144.011 -5.83766 0 0 585099. 2024.56 0.02 0.03 0.06 -1 -1 0.02 0.0132596 0.0121081 134 122 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_056.v common 2.35 vpr 64.57 MiB -1 -1 0.16 18224 13 0.19 -1 -1 31976 -1 -1 38 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66116 32 32 254 286 1 184 102 17 17 289 -1 unnamed_device 24.8 MiB 0.07 2723 1225 8432 1783 5976 673 64.6 MiB 0.04 0.00 9.64721 7.76601 -160.89 -7.76601 7.76601 0.23 0.000398125 0.000364366 0.0168136 0.0153621 -1 -1 -1 -1 26 3260 44 6.55708e+06 458090 477104. 1650.88 0.72 0.0960043 0.0851036 21022 109990 -1 2668 30 1325 4578 317119 107312 7.1573 7.1573 -159.968 -7.1573 0 0 585099. 2024.56 0.02 0.10 0.06 -1 -1 0.02 0.0292682 0.0261828 175 160 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_057.v common 3.52 vpr 65.05 MiB -1 -1 0.19 19136 14 0.39 -1 -1 32632 -1 -1 47 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66616 32 32 338 370 1 243 111 17 17 289 -1 unnamed_device 25.8 MiB 0.09 3926 1767 7559 1351 5612 596 65.1 MiB 0.05 0.00 11.6381 8.88614 -176.77 -8.88614 8.88614 0.23 0.000538484 0.000482436 0.0186713 0.0170975 -1 -1 -1 -1 28 4757 39 6.55708e+06 566585 500653. 1732.36 1.59 0.216624 0.192218 21310 115450 -1 3846 18 1679 5489 285754 69543 7.90101 7.90101 -169.258 -7.90101 0 0 612192. 2118.31 0.02 0.07 0.06 -1 -1 0.02 0.0266501 0.0243171 256 244 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_058.v common 3.29 vpr 64.53 MiB -1 -1 0.19 18220 13 0.25 -1 -1 32408 -1 -1 36 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66080 32 32 271 303 1 202 100 17 17 289 -1 unnamed_device 25.2 MiB 0.16 2981 1449 7060 1377 5094 589 64.5 MiB 0.04 0.00 9.8853 7.81987 -168.799 -7.81987 7.81987 0.23 0.000432617 0.000395853 0.0160406 0.0146835 -1 -1 -1 -1 26 3590 23 6.55708e+06 433980 477104. 1650.88 1.51 0.144757 0.127716 21022 109990 -1 3059 15 1235 3945 193279 47785 6.8803 6.8803 -158.318 -6.8803 0 0 585099. 2024.56 0.02 0.05 0.06 -1 -1 0.02 0.0195175 0.0177688 186 177 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_059.v common 2.17 vpr 64.32 MiB -1 -1 0.17 17980 11 0.15 -1 -1 32468 -1 -1 32 30 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65868 30 32 224 256 1 152 94 17 17 289 -1 unnamed_device 24.8 MiB 0.09 1968 1020 7762 1726 5530 506 64.3 MiB 0.05 0.00 8.50338 6.74949 -138.67 -6.74949 6.74949 0.26 0.000356161 0.00032542 0.0222888 0.0205686 -1 -1 -1 -1 24 2406 20 6.55708e+06 385760 448715. 1552.65 0.55 0.0898862 0.0798319 20734 103517 -1 2133 14 787 2459 127346 32295 5.93998 5.93998 -132.575 -5.93998 0 0 554710. 1919.41 0.02 0.04 0.06 -1 -1 0.02 0.0148732 0.0136023 150 136 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_060.v common 5.66 vpr 65.20 MiB -1 -1 0.19 19508 15 0.47 -1 -1 32024 -1 -1 49 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66760 32 32 351 383 1 261 113 17 17 289 -1 unnamed_device 25.6 MiB 0.09 3995 2010 11852 2629 8141 1082 65.2 MiB 0.07 0.00 12.8102 9.45181 -192.305 -9.45181 9.45181 0.23 0.000559457 0.000504907 0.027816 0.0253997 -1 -1 -1 -1 28 5547 42 6.55708e+06 590695 500653. 1732.36 3.63 0.240926 0.214838 21310 115450 -1 4448 19 2153 7534 412419 96794 8.64975 8.64975 -185.929 -8.64975 0 0 612192. 2118.31 0.02 0.09 0.06 -1 -1 0.02 0.0302484 0.0276287 261 257 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_061.v common 3.60 vpr 64.78 MiB -1 -1 0.29 18368 13 0.28 -1 -1 32244 -1 -1 40 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66332 32 32 297 329 1 206 104 17 17 289 -1 unnamed_device 25.2 MiB 0.08 3275 1492 10352 2588 6648 1116 64.8 MiB 0.06 0.00 10.6893 8.11669 -167.863 -8.11669 8.11669 0.24 0.000535712 0.000495888 0.0247164 0.0227451 -1 -1 -1 -1 28 4178 42 6.55708e+06 482200 500653. 1732.36 1.62 0.210555 0.186384 21310 115450 -1 3202 18 1377 4381 237630 56889 6.81096 6.81096 -157.796 -6.81096 0 0 612192. 2118.31 0.04 0.13 0.08 -1 -1 0.04 0.0513009 0.0464052 211 203 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_062.v common 1.74 vpr 64.33 MiB -1 -1 0.13 17980 11 0.11 -1 -1 32248 -1 -1 32 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65872 32 32 231 263 1 168 96 17 17 289 -1 unnamed_device 24.4 MiB 0.05 2404 1200 5352 1082 3950 320 64.3 MiB 0.03 0.00 7.81172 6.30809 -138.848 -6.30809 6.30809 0.23 0.000345025 0.000315149 0.010973 0.0100535 -1 -1 -1 -1 26 2781 16 6.55708e+06 385760 477104. 1650.88 0.35 0.0549483 0.0486739 21022 109990 -1 2413 18 931 2920 146323 36299 5.79586 5.79586 -136.986 -5.79586 0 0 585099. 2024.56 0.02 0.05 0.06 -1 -1 0.02 0.0199369 0.0179319 149 137 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_063.v common 3.06 vpr 64.87 MiB -1 -1 0.18 18756 12 0.26 -1 -1 32492 -1 -1 42 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66428 32 32 305 337 1 209 106 17 17 289 -1 unnamed_device 25.2 MiB 0.07 3192 1509 8106 1613 5842 651 64.9 MiB 0.06 0.00 10.8824 7.43184 -153.804 -7.43184 7.43184 0.23 0.000627827 0.000546897 0.025293 0.0233741 -1 -1 -1 -1 30 3226 28 6.55708e+06 506310 526063. 1820.29 1.36 0.221708 0.195832 21886 126133 -1 2895 17 1214 4355 186157 46002 6.47224 6.47224 -143.336 -6.47224 0 0 666494. 2306.21 0.02 0.05 0.07 -1 -1 0.02 0.0218846 0.0199037 224 211 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_064.v common 2.63 vpr 64.36 MiB -1 -1 0.16 17984 12 0.17 -1 -1 32132 -1 -1 37 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65900 32 32 243 275 1 185 101 17 17 289 -1 unnamed_device 24.4 MiB 0.06 2741 1320 8326 1851 5875 600 64.4 MiB 0.04 0.00 8.98498 7.57401 -157.5 -7.57401 7.57401 0.23 0.000391939 0.000359402 0.0160215 0.0146932 -1 -1 -1 -1 28 3291 20 6.55708e+06 446035 500653. 1732.36 0.96 0.120985 0.106511 21310 115450 -1 2704 18 1002 3193 154404 38429 6.70098 6.70098 -151.983 -6.70098 0 0 612192. 2118.31 0.02 0.05 0.06 -1 -1 0.02 0.0183839 0.0166494 160 149 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_065.v common 2.00 vpr 64.36 MiB -1 -1 0.15 17976 12 0.16 -1 -1 32424 -1 -1 34 30 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65908 30 32 228 260 1 158 96 17 17 289 -1 unnamed_device 24.4 MiB 0.07 2463 1057 6009 1165 4395 449 64.4 MiB 0.03 0.00 9.70233 7.10808 -144.903 -7.10808 7.10808 0.23 0.000361721 0.000331358 0.0122651 0.0112354 -1 -1 -1 -1 20 2487 24 6.55708e+06 409870 394039. 1363.46 0.49 0.061774 0.0548534 19870 87366 -1 2323 17 852 2864 148607 36739 6.46058 6.46058 -142.134 -6.46058 0 0 477104. 1650.88 0.02 0.04 0.05 -1 -1 0.02 0.0165964 0.0150485 151 140 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_066.v common 2.62 vpr 64.75 MiB -1 -1 0.18 18364 12 0.25 -1 -1 32836 -1 -1 41 29 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66304 29 32 275 307 1 195 102 17 17 289 -1 unnamed_device 24.8 MiB 0.07 2776 1290 7956 1517 5875 564 64.8 MiB 0.04 0.00 9.75944 6.89912 -129.506 -6.89912 6.89912 0.23 0.000439187 0.000401806 0.0176508 0.016155 -1 -1 -1 -1 26 3296 19 6.55708e+06 494255 477104. 1650.88 0.94 0.140672 0.123405 21022 109990 -1 2817 17 1189 4151 205219 50431 6.27364 6.27364 -125.715 -6.27364 0 0 585099. 2024.56 0.02 0.05 0.06 -1 -1 0.02 0.0217945 0.0198656 198 190 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_067.v common 4.15 vpr 64.46 MiB -1 -1 0.20 18364 13 0.35 -1 -1 32304 -1 -1 50 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66012 32 32 330 362 1 232 114 17 17 289 -1 unnamed_device 25.2 MiB 0.13 3249 1646 11706 2331 8577 798 64.5 MiB 0.07 0.00 10.166 8.087 -174.968 -8.087 8.087 0.23 0.000504128 0.00046231 0.0252032 0.0230892 -1 -1 -1 -1 26 4440 49 6.55708e+06 602750 477104. 1650.88 2.09 0.265695 0.235973 21022 109990 -1 3658 31 2107 6976 387104 114321 7.6773 7.6773 -175.999 -7.6773 0 0 585099. 2024.56 0.02 0.16 0.06 -1 -1 0.02 0.0585253 0.0524828 247 236 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_068.v common 3.05 vpr 64.17 MiB -1 -1 0.20 18364 12 0.21 -1 -1 32352 -1 -1 40 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65712 32 32 290 322 1 203 104 17 17 289 -1 unnamed_device 24.4 MiB 0.10 3300 1279 10352 2652 6577 1123 64.2 MiB 0.07 0.00 10.7679 7.73832 -150.742 -7.73832 7.73832 0.25 0.000467737 0.000428655 0.0302749 0.0280738 -1 -1 -1 -1 28 3491 20 6.55708e+06 482200 500653. 1732.36 1.23 0.162438 0.144317 21310 115450 -1 2895 16 1315 4243 219437 55418 6.8405 6.8405 -146.978 -6.8405 0 0 612192. 2118.31 0.04 0.09 0.07 -1 -1 0.04 0.035537 0.0323181 206 196 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_069.v common 2.48 vpr 64.25 MiB -1 -1 0.14 17984 12 0.13 -1 -1 32928 -1 -1 31 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65792 32 32 214 246 1 156 95 17 17 289 -1 unnamed_device 24.4 MiB 0.05 2480 1130 5927 1103 4408 416 64.2 MiB 0.03 0.00 9.31584 7.04661 -144.877 -7.04661 7.04661 0.24 0.000339655 0.000310041 0.0115631 0.010563 -1 -1 -1 -1 26 2534 18 6.55708e+06 373705 477104. 1650.88 1.07 0.122005 0.106406 21022 109990 -1 2279 18 854 2634 133675 33889 5.97718 5.97718 -136.774 -5.97718 0 0 585099. 2024.56 0.02 0.04 0.06 -1 -1 0.02 0.0161625 0.0146372 135 120 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_070.v common 2.62 vpr 64.46 MiB -1 -1 0.16 18368 12 0.19 -1 -1 31944 -1 -1 35 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66004 31 32 244 276 1 170 98 17 17 289 -1 unnamed_device 24.4 MiB 0.08 2617 1274 6398 1159 4710 529 64.5 MiB 0.03 0.00 9.56447 7.57061 -150.375 -7.57061 7.57061 0.24 0.00038161 0.000349434 0.0132809 0.0121488 -1 -1 -1 -1 28 3024 18 6.55708e+06 421925 500653. 1732.36 1.06 0.135071 0.118552 21310 115450 -1 2560 16 918 3190 159899 38980 6.2813 6.2813 -142.114 -6.2813 0 0 612192. 2118.31 0.02 0.05 0.06 -1 -1 0.02 0.0199613 0.0181369 161 153 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_071.v common 3.01 vpr 64.17 MiB -1 -1 0.26 18368 11 0.17 -1 -1 32488 -1 -1 40 30 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65712 30 32 276 308 1 199 102 17 17 289 -1 unnamed_device 24.8 MiB 0.06 2727 1365 7242 1318 5567 357 64.2 MiB 0.05 0.00 8.59664 6.98252 -137.845 -6.98252 6.98252 0.24 0.000452447 0.000411507 0.0193183 0.0178012 -1 -1 -1 -1 26 3630 40 6.55708e+06 482200 477104. 1650.88 1.29 0.156421 0.137889 21022 109990 -1 3067 18 1183 4172 215666 51876 6.07244 6.07244 -134.218 -6.07244 0 0 585099. 2024.56 0.02 0.06 0.07 -1 -1 0.02 0.0227691 0.0204083 194 188 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_072.v common 2.85 vpr 64.55 MiB -1 -1 0.17 17980 11 0.18 -1 -1 32268 -1 -1 36 28 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66100 28 32 253 285 1 177 96 17 17 289 -1 unnamed_device 24.4 MiB 0.06 2506 1211 8199 1748 5508 943 64.6 MiB 0.05 0.00 8.69997 6.71295 -129.325 -6.71295 6.71295 0.23 0.00042684 0.000393932 0.0228206 0.0211229 -1 -1 -1 -1 30 2524 16 6.55708e+06 433980 526063. 1820.29 1.18 0.162297 0.142794 21886 126133 -1 2281 16 880 3154 140107 34317 5.85898 5.85898 -123.314 -5.85898 0 0 666494. 2306.21 0.04 0.08 0.08 -1 -1 0.04 0.0371708 0.0335976 176 171 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_073.v common 2.11 vpr 64.43 MiB -1 -1 0.16 18364 13 0.18 -1 -1 31916 -1 -1 36 30 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65976 30 32 235 267 1 166 98 17 17 289 -1 unnamed_device 24.4 MiB 0.05 2275 1124 7748 1646 5543 559 64.4 MiB 0.06 0.00 10.228 7.79233 -143.293 -7.79233 7.79233 0.24 0.000882547 0.000817551 0.0271881 0.0254 -1 -1 -1 -1 26 2682 22 6.55708e+06 433980 477104. 1650.88 0.39 0.0872149 0.0781979 21022 109990 -1 2310 16 922 3336 150513 38472 6.8039 6.8039 -136.548 -6.8039 0 0 585099. 2024.56 0.04 0.06 0.09 -1 -1 0.04 0.0265682 0.0241882 157 147 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_074.v common 2.88 vpr 64.63 MiB -1 -1 0.18 18364 12 0.25 -1 -1 32276 -1 -1 36 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66180 32 32 264 296 1 187 100 17 17 289 -1 unnamed_device 24.8 MiB 0.07 2846 1273 10540 2582 6897 1061 64.6 MiB 0.05 0.00 9.32034 7.41947 -161.03 -7.41947 7.41947 0.24 0.000416783 0.000381574 0.0215499 0.0196879 -1 -1 -1 -1 28 3178 43 6.55708e+06 433980 500653. 1732.36 1.13 0.150714 0.132237 21310 115450 -1 2752 18 1030 3249 171987 42405 6.2003 6.2003 -148.62 -6.2003 0 0 612192. 2118.31 0.02 0.05 0.08 -1 -1 0.02 0.019547 0.0176734 180 170 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_075.v common 2.19 vpr 64.74 MiB -1 -1 0.16 18000 13 0.26 -1 -1 32444 -1 -1 41 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66296 31 32 278 310 1 197 104 17 17 289 -1 unnamed_device 24.8 MiB 0.08 2948 1285 6204 1121 4455 628 64.7 MiB 0.04 0.00 10.4607 8.33266 -159.321 -8.33266 8.33266 0.23 0.000450174 0.000413364 0.0161966 0.0149247 -1 -1 -1 -1 26 3400 25 6.55708e+06 494255 477104. 1650.88 0.51 0.0828088 0.0735628 21022 109990 -1 2719 17 1068 3376 157383 40304 7.28976 7.28976 -154.47 -7.28976 0 0 585099. 2024.56 0.02 0.05 0.06 -1 -1 0.02 0.0220486 0.0201017 196 187 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_076.v common 2.83 vpr 64.76 MiB -1 -1 0.18 18368 14 0.23 -1 -1 32384 -1 -1 38 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66312 32 32 290 322 1 201 102 17 17 289 -1 unnamed_device 25.2 MiB 0.07 2948 1449 9860 2172 6855 833 64.8 MiB 0.05 0.00 10.9465 8.71544 -176.837 -8.71544 8.71544 0.34 0.000453693 0.000415773 0.0221562 0.02036 -1 -1 -1 -1 26 3548 21 6.55708e+06 458090 477104. 1650.88 1.07 0.149225 0.13138 21022 109990 -1 2951 16 1100 3513 167818 41879 7.92796 7.92796 -172.589 -7.92796 0 0 585099. 2024.56 0.02 0.05 0.06 -1 -1 0.02 0.0203231 0.0184758 203 196 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_077.v common 2.31 vpr 64.68 MiB -1 -1 0.18 18748 14 0.23 -1 -1 32424 -1 -1 36 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66228 32 32 269 301 1 187 100 17 17 289 -1 unnamed_device 25.2 MiB 0.07 2291 1303 7756 1442 5636 678 64.7 MiB 0.04 0.00 10.3699 8.36955 -159.159 -8.36955 8.36955 0.23 0.000433687 0.000393612 0.0182587 0.0167452 -1 -1 -1 -1 26 3430 22 6.55708e+06 433980 477104. 1650.88 0.64 0.0842795 0.0747516 21022 109990 -1 2830 19 1184 4577 262704 74075 7.20936 7.20936 -150.018 -7.20936 0 0 585099. 2024.56 0.02 0.08 0.06 -1 -1 0.02 0.0285986 0.0255366 179 175 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_078.v common 3.05 vpr 64.75 MiB -1 -1 0.20 18752 13 0.30 -1 -1 32616 -1 -1 44 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66300 32 32 296 328 1 216 108 17 17 289 -1 unnamed_device 24.8 MiB 0.08 3246 1544 7561 1452 5398 711 64.7 MiB 0.05 0.00 10.7252 8.52515 -170.673 -8.52515 8.52515 0.24 0.000599389 0.000558386 0.0190979 0.0176173 -1 -1 -1 -1 30 3404 28 6.55708e+06 530420 526063. 1820.29 1.22 0.159177 0.140846 21886 126133 -1 3028 17 1199 4291 182956 46284 7.56735 7.56735 -161.205 -7.56735 0 0 666494. 2306.21 0.03 0.05 0.07 -1 -1 0.03 0.0223292 0.0203908 212 202 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_079.v common 2.70 vpr 64.03 MiB -1 -1 0.16 17984 13 0.16 -1 -1 32448 -1 -1 34 30 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65568 30 32 234 266 1 169 96 17 17 289 -1 unnamed_device 24.4 MiB 0.06 2265 1134 4695 742 3633 320 64.0 MiB 0.03 0.00 10.2529 7.95464 -161.944 -7.95464 7.95464 0.24 0.000503181 0.00047225 0.0126481 0.0117035 -1 -1 -1 -1 28 2792 17 6.55708e+06 409870 500653. 1732.36 1.03 0.115548 0.101979 21310 115450 -1 2338 16 791 2338 113501 28721 6.77538 6.77538 -150.108 -6.77538 0 0 612192. 2118.31 0.02 0.04 0.06 -1 -1 0.02 0.0215635 0.0196967 155 146 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_080.v common 3.66 vpr 64.75 MiB -1 -1 0.30 18748 13 0.40 -1 -1 32412 -1 -1 42 30 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66308 30 32 291 323 1 211 104 17 17 289 -1 unnamed_device 24.8 MiB 0.08 2984 1412 9376 2164 6142 1070 64.8 MiB 0.05 0.00 10.8675 8.7665 -166.076 -8.7665 8.7665 0.25 0.00048301 0.000435282 0.0216956 0.0198322 -1 -1 -1 -1 28 4440 36 6.55708e+06 506310 500653. 1732.36 1.52 0.195156 0.172406 21310 115450 -1 3306 22 1808 6039 308441 75318 8.13116 8.13116 -164.886 -8.13116 0 0 612192. 2118.31 0.02 0.12 0.06 -1 -1 0.02 0.0480109 0.0432038 211 203 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_081.v common 3.33 vpr 64.71 MiB -1 -1 0.17 18364 14 0.36 -1 -1 32276 -1 -1 36 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66268 32 32 274 306 1 188 100 17 17 289 -1 unnamed_device 24.8 MiB 0.11 2874 1381 6828 1358 4978 492 64.7 MiB 0.04 0.00 10.16 8.0528 -168.058 -8.0528 8.0528 0.26 0.000433477 0.000396437 0.0159878 0.0146877 -1 -1 -1 -1 26 3440 29 6.55708e+06 433980 477104. 1650.88 1.31 0.163675 0.144893 21022 109990 -1 2924 17 1120 4094 202887 49196 7.29236 7.29236 -160.792 -7.29236 0 0 585099. 2024.56 0.02 0.06 0.06 -1 -1 0.02 0.021869 0.0198747 188 180 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_082.v common 2.44 vpr 64.65 MiB -1 -1 0.17 18368 13 0.20 -1 -1 32416 -1 -1 40 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66204 31 32 266 298 1 188 103 17 17 289 -1 unnamed_device 25.2 MiB 0.05 2648 1278 6851 1303 5218 330 64.7 MiB 0.06 0.00 9.79664 7.73626 -147.024 -7.73626 7.73626 0.26 0.000753216 0.000687884 0.0256158 0.0234295 -1 -1 -1 -1 26 3475 22 6.55708e+06 482200 477104. 1650.88 0.78 0.106799 0.0961352 21022 109990 -1 2882 21 1188 3871 201792 49498 6.6419 6.6419 -139.849 -6.6419 0 0 585099. 2024.56 0.02 0.06 0.06 -1 -1 0.02 0.0230652 0.0209088 189 175 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_083.v common 2.84 vpr 64.66 MiB -1 -1 0.17 18368 13 0.19 -1 -1 32276 -1 -1 42 30 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66208 30 32 266 298 1 198 104 17 17 289 -1 unnamed_device 25.3 MiB 0.08 3212 1451 7180 1397 5391 392 64.7 MiB 0.04 0.00 9.98558 8.08209 -153.888 -8.08209 8.08209 0.24 0.00041428 0.000379794 0.0146925 0.0134878 -1 -1 -1 -1 30 3135 19 6.55708e+06 506310 526063. 1820.29 1.15 0.133595 0.117686 21886 126133 -1 2656 16 1001 3565 158345 38941 6.8803 6.8803 -143.947 -6.8803 0 0 666494. 2306.21 0.03 0.05 0.07 -1 -1 0.03 0.0190113 0.0173463 188 178 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_084.v common 3.35 vpr 64.14 MiB -1 -1 0.17 18748 14 0.32 -1 -1 32436 -1 -1 45 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65680 32 32 310 342 1 226 109 17 17 289 -1 unnamed_device 24.8 MiB 0.07 3591 1582 8689 1758 6168 763 64.1 MiB 0.06 0.00 10.8164 8.74282 -175.793 -8.74282 8.74282 0.24 0.000619421 0.000577581 0.0244264 0.0226096 -1 -1 -1 -1 28 3859 21 6.55708e+06 542475 500653. 1732.36 1.59 0.224812 0.199302 21310 115450 -1 3320 22 1569 5205 250249 62085 7.80069 7.80069 -168.216 -7.80069 0 0 612192. 2118.31 0.02 0.07 0.06 -1 -1 0.02 0.0269125 0.0242969 225 216 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_085.v common 2.20 vpr 64.32 MiB -1 -1 0.18 18368 11 0.24 -1 -1 32232 -1 -1 44 29 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65860 29 32 262 294 1 199 105 17 17 289 -1 unnamed_device 24.8 MiB 0.08 3052 1320 8997 1938 5901 1158 64.3 MiB 0.05 0.00 10.039 7.47594 -139.521 -7.47594 7.47594 0.25 0.000443441 0.000400928 0.0210946 0.019397 -1 -1 -1 -1 28 3433 19 6.55708e+06 530420 500653. 1732.36 0.49 0.0838839 0.0748833 21310 115450 -1 2860 19 1167 3779 180535 45529 6.59044 6.59044 -133.662 -6.59044 0 0 612192. 2118.31 0.02 0.05 0.06 -1 -1 0.02 0.0217172 0.0197123 187 177 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_086.v common 1.76 vpr 64.29 MiB -1 -1 0.15 17452 13 0.14 -1 -1 32192 -1 -1 34 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65836 32 32 222 254 1 166 98 17 17 289 -1 unnamed_device 24.9 MiB 0.05 2365 1134 8198 1752 5856 590 64.3 MiB 0.04 0.00 9.5772 7.60931 -162.659 -7.60931 7.60931 0.23 0.000354996 0.000325193 0.0199103 0.018532 -1 -1 -1 -1 26 2640 18 6.55708e+06 409870 477104. 1650.88 0.33 0.0653865 0.0584309 21022 109990 -1 2286 15 824 2298 113671 28726 6.82684 6.82684 -156.225 -6.82684 0 0 585099. 2024.56 0.02 0.04 0.06 -1 -1 0.02 0.0146309 0.01333 138 128 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_087.v common 2.89 vpr 64.68 MiB -1 -1 0.16 18752 14 0.32 -1 -1 32396 -1 -1 37 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66228 32 32 267 299 1 189 101 17 17 289 -1 unnamed_device 24.8 MiB 0.10 2654 1253 5741 1095 4066 580 64.7 MiB 0.03 0.00 10.1014 8.22497 -162.245 -8.22497 8.22497 0.23 0.000420987 0.000385592 0.0129977 0.0119483 -1 -1 -1 -1 28 3525 29 6.55708e+06 446035 500653. 1732.36 1.12 0.138603 0.121855 21310 115450 -1 2791 16 995 3352 161293 40081 7.37336 7.37336 -157.789 -7.37336 0 0 612192. 2118.31 0.02 0.05 0.06 -1 -1 0.02 0.0199676 0.0181409 183 173 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_088.v common 4.09 vpr 65.06 MiB -1 -1 0.18 18740 15 0.41 -1 -1 32468 -1 -1 50 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66624 32 32 334 366 1 242 114 17 17 289 -1 unnamed_device 25.6 MiB 0.10 3845 1754 10878 2260 7829 789 65.1 MiB 0.07 0.00 12.4201 9.30007 -197.166 -9.30007 9.30007 0.25 0.00073948 0.000685983 0.0295529 0.0270958 -1 -1 -1 -1 26 4755 36 6.55708e+06 602750 477104. 1650.88 2.09 0.22201 0.19724 21022 109990 -1 3923 19 1866 5993 314116 76247 8.60335 8.60335 -194.026 -8.60335 0 0 585099. 2024.56 0.02 0.10 0.06 -1 -1 0.02 0.0383912 0.0348739 250 240 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_089.v common 2.17 vpr 64.28 MiB -1 -1 0.18 17984 11 0.14 -1 -1 32264 -1 -1 33 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65824 32 32 220 252 1 154 97 17 17 289 -1 unnamed_device 24.8 MiB 0.07 2168 1074 8977 1935 6287 755 64.3 MiB 0.04 0.00 8.59479 6.66858 -139.589 -6.66858 6.66858 0.23 0.000338532 0.000309224 0.0167458 0.015295 -1 -1 -1 -1 26 2415 19 6.55708e+06 397815 477104. 1650.88 0.66 0.0991471 0.0868577 21022 109990 -1 2246 16 755 2442 124269 30281 5.94258 5.94258 -136.678 -5.94258 0 0 585099. 2024.56 0.02 0.04 0.06 -1 -1 0.02 0.0148758 0.0135052 142 126 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_090.v common 2.99 vpr 64.48 MiB -1 -1 0.15 17984 12 0.16 -1 -1 32296 -1 -1 36 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66028 31 32 244 276 1 183 99 17 17 289 -1 unnamed_device 24.7 MiB 0.06 2718 1278 7623 1628 5411 584 64.5 MiB 0.04 0.00 9.30618 7.4792 -158.92 -7.4792 7.4792 0.23 0.000382061 0.000343151 0.0153388 0.0139891 -1 -1 -1 -1 26 3486 19 6.55708e+06 433980 477104. 1650.88 1.45 0.150081 0.132485 21022 109990 -1 2982 15 1147 3679 189997 47278 6.26704 6.26704 -150.559 -6.26704 0 0 585099. 2024.56 0.03 0.05 0.07 -1 -1 0.03 0.0191888 0.0175386 165 153 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_091.v common 3.49 vpr 64.71 MiB -1 -1 0.18 18368 12 0.26 -1 -1 32432 -1 -1 44 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66264 32 32 300 332 1 217 108 17 17 289 -1 unnamed_device 24.8 MiB 0.08 3275 1622 10645 2328 7422 895 64.7 MiB 0.08 0.00 10.2612 7.59364 -164.56 -7.59364 7.59364 0.24 0.000486686 0.000442889 0.0386317 0.0358231 -1 -1 -1 -1 34 3724 22 6.55708e+06 530420 585099. 2024.56 1.66 0.233929 0.207628 22462 138074 -1 3411 16 1421 4778 241051 58262 6.6811 6.6811 -156.408 -6.6811 0 0 742403. 2568.87 0.04 0.10 0.08 -1 -1 0.04 0.03612 0.0328032 217 206 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_092.v common 3.37 vpr 64.69 MiB -1 -1 0.18 18604 12 0.21 -1 -1 32768 -1 -1 41 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66240 32 32 271 303 1 200 105 17 17 289 -1 unnamed_device 25.2 MiB 0.07 3003 1380 8750 1810 6138 802 64.7 MiB 0.05 0.00 9.79464 7.36891 -159.112 -7.36891 7.36891 0.23 0.000426637 0.000390945 0.017895 0.0164169 -1 -1 -1 -1 24 4116 29 6.55708e+06 494255 448715. 1552.65 1.71 0.160092 0.141723 20734 103517 -1 3365 25 1982 7225 408926 104160 6.75244 6.75244 -158.639 -6.75244 0 0 554710. 1919.41 0.02 0.09 0.06 -1 -1 0.02 0.025969 0.0232829 190 177 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_093.v common 4.60 vpr 64.64 MiB -1 -1 0.18 19136 14 0.42 -1 -1 32440 -1 -1 44 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66196 32 32 327 359 1 229 108 17 17 289 -1 unnamed_device 25.3 MiB 0.09 3556 1590 6276 1065 4786 425 64.6 MiB 0.05 0.00 11.4017 8.85831 -179.658 -8.85831 8.85831 0.23 0.00100888 0.000964631 0.0195122 0.0181514 -1 -1 -1 -1 26 4696 36 6.55708e+06 530420 477104. 1650.88 2.70 0.216563 0.19256 21022 109990 -1 3722 21 1876 6496 326439 79639 7.96009 7.96009 -172.069 -7.96009 0 0 585099. 2024.56 0.02 0.08 0.06 -1 -1 0.02 0.0285679 0.0258669 239 233 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_094.v common 2.94 vpr 64.52 MiB -1 -1 0.16 18364 12 0.18 -1 -1 32224 -1 -1 35 30 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66072 30 32 246 278 1 176 97 17 17 289 -1 unnamed_device 24.4 MiB 0.07 2728 1268 8755 2050 5708 997 64.5 MiB 0.05 0.00 10.0467 7.41486 -143.807 -7.41486 7.41486 0.24 0.00040521 0.000366057 0.0205555 0.0189281 -1 -1 -1 -1 28 3102 24 6.55708e+06 421925 500653. 1732.36 1.32 0.176868 0.155997 21310 115450 -1 2547 27 942 3467 228891 85010 6.50684 6.50684 -134.136 -6.50684 0 0 612192. 2118.31 0.02 0.08 0.06 -1 -1 0.02 0.0271277 0.0243958 166 158 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_095.v common 2.40 vpr 64.17 MiB -1 -1 0.15 17980 11 0.16 -1 -1 31856 -1 -1 31 27 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65712 27 32 219 251 1 153 90 17 17 289 -1 unnamed_device 24.4 MiB 0.07 2075 890 11346 2674 7241 1431 64.2 MiB 0.05 0.00 8.56235 6.47229 -119.898 -6.47229 6.47229 0.23 0.000341003 0.000311104 0.0216579 0.0197916 -1 -1 -1 -1 28 2291 17 6.55708e+06 373705 500653. 1732.36 0.84 0.110181 0.0967621 21310 115450 -1 1920 17 832 2771 122094 32173 5.80812 5.80812 -117.51 -5.80812 0 0 612192. 2118.31 0.02 0.04 0.07 -1 -1 0.02 0.0160773 0.0145507 146 140 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_096.v common 3.17 vpr 65.43 MiB -1 -1 0.30 19132 13 0.39 -1 -1 32616 -1 -1 54 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 67004 32 32 380 412 1 274 118 17 17 289 -1 unnamed_device 25.5 MiB 0.10 4655 2221 11100 2341 7945 814 65.4 MiB 0.09 0.00 10.8384 8.21927 -169.077 -8.21927 8.21927 0.23 0.000611341 0.000552744 0.0377977 0.0348813 -1 -1 -1 -1 30 5210 32 6.55708e+06 650970 526063. 1820.29 1.10 0.160347 0.144658 21886 126133 -1 4272 20 1942 7051 322540 77378 7.23124 7.23124 -159.615 -7.23124 0 0 666494. 2306.21 0.02 0.08 0.07 -1 -1 0.02 0.031786 0.028998 289 286 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_097.v common 2.30 vpr 64.73 MiB -1 -1 0.17 18368 14 0.22 -1 -1 32316 -1 -1 41 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66280 31 32 277 309 1 197 104 17 17 289 -1 unnamed_device 25.2 MiB 0.06 3097 1274 12304 3037 7768 1499 64.7 MiB 0.06 0.00 12.2136 8.62006 -170.085 -8.62006 8.62006 0.24 0.000432138 0.000396089 0.0252147 0.0231002 -1 -1 -1 -1 26 3603 32 6.55708e+06 494255 477104. 1650.88 0.68 0.106179 0.0939771 21022 109990 -1 2789 17 1209 3625 176693 45658 7.45942 7.45942 -162.283 -7.45942 0 0 585099. 2024.56 0.02 0.05 0.06 -1 -1 0.02 0.0202702 0.0183759 202 186 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_098.v common 1.86 vpr 64.37 MiB -1 -1 0.16 18360 12 0.15 -1 -1 32220 -1 -1 34 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65916 32 32 229 261 1 169 98 17 17 289 -1 unnamed_device 24.4 MiB 0.06 2364 1167 6398 1184 4756 458 64.4 MiB 0.04 0.00 10.1826 7.64801 -160.064 -7.64801 7.64801 0.23 0.00048408 0.000452387 0.0138589 0.0127355 -1 -1 -1 -1 26 2856 21 6.55708e+06 409870 477104. 1650.88 0.37 0.0640324 0.0568082 21022 109990 -1 2410 15 851 2669 125206 31603 6.5589 6.5589 -149.274 -6.5589 0 0 585099. 2024.56 0.02 0.04 0.06 -1 -1 0.02 0.0155306 0.0141676 149 135 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_099.v common 3.16 vpr 64.67 MiB -1 -1 0.18 18364 13 0.25 -1 -1 31888 -1 -1 37 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66220 32 32 263 295 1 192 101 17 17 289 -1 unnamed_device 24.8 MiB 0.06 2878 1329 9971 1977 6864 1130 64.7 MiB 0.05 0.00 10.3391 7.91544 -159.644 -7.91544 7.91544 0.23 0.000426804 0.0003908 0.0210623 0.0192623 -1 -1 -1 -1 28 3543 34 6.55708e+06 446035 500653. 1732.36 1.25 0.163021 0.144227 21310 115450 -1 2890 17 1266 4303 210367 52177 6.7993 6.7993 -152.562 -6.7993 0 0 612192. 2118.31 0.02 0.06 0.08 -1 -1 0.02 0.0235242 0.0211813 177 169 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_100.v common 3.61 vpr 64.95 MiB -1 -1 0.17 18748 13 0.29 -1 -1 32496 -1 -1 48 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66504 31 32 321 353 1 234 111 17 17 289 -1 unnamed_device 25.6 MiB 0.08 3400 1604 9953 2030 7063 860 64.9 MiB 0.06 0.00 9.6468 7.26834 -148.565 -7.26834 7.26834 0.23 0.000503324 0.000461623 0.0225716 0.0206576 -1 -1 -1 -1 26 4462 29 6.55708e+06 578640 477104. 1650.88 1.84 0.204323 0.180668 21022 109990 -1 3651 20 2029 6761 360098 85834 6.67706 6.67706 -150.677 -6.67706 0 0 585099. 2024.56 0.02 0.08 0.06 -1 -1 0.02 0.0263633 0.0238787 242 230 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_101.v common 2.43 vpr 64.31 MiB -1 -1 0.21 17984 11 0.22 -1 -1 32456 -1 -1 43 30 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65852 30 32 287 319 1 198 105 17 17 289 -1 unnamed_device 24.8 MiB 0.07 3001 1293 11220 2634 7278 1308 64.3 MiB 0.14 0.00 9.47524 7.25311 -136.619 -7.25311 7.25311 0.25 0.00121921 0.00112523 0.0612861 0.0568716 -1 -1 -1 -1 30 2864 16 6.55708e+06 518365 526063. 1820.29 0.60 0.154135 0.140337 21886 126133 -1 2537 18 972 3930 165233 40913 6.35004 6.35004 -128.389 -6.35004 0 0 666494. 2306.21 0.03 0.06 0.07 -1 -1 0.03 0.0273439 0.0245502 207 199 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_102.v common 2.56 vpr 64.80 MiB -1 -1 0.18 18752 15 0.33 -1 -1 32512 -1 -1 37 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66360 32 32 296 328 1 208 101 17 17 289 -1 unnamed_device 24.8 MiB 0.11 3400 1425 8326 1756 5851 719 64.8 MiB 0.05 0.00 12.6428 9.11323 -184.154 -9.11323 9.11323 0.23 0.00050701 0.000465418 0.0201741 0.0184292 -1 -1 -1 -1 26 3950 24 6.55708e+06 446035 477104. 1650.88 0.61 0.0902455 0.0803698 21022 109990 -1 3244 16 1338 4712 234668 58393 7.97942 7.97942 -176.46 -7.97942 0 0 585099. 2024.56 0.02 0.06 0.06 -1 -1 0.02 0.0212655 0.0193666 207 202 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_103.v common 3.78 vpr 64.78 MiB -1 -1 0.18 18752 13 0.31 -1 -1 32440 -1 -1 38 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66332 32 32 285 317 1 204 102 17 17 289 -1 unnamed_device 25.2 MiB 0.12 3131 1495 5338 899 4142 297 64.8 MiB 0.03 0.00 10.6725 8.26703 -174.041 -8.26703 8.26703 0.24 0.000462099 0.000423406 0.0133165 0.0122552 -1 -1 -1 -1 28 4046 41 6.55708e+06 458090 500653. 1732.36 1.93 0.213209 0.188425 21310 115450 -1 3146 16 1246 4278 217929 53207 7.2409 7.2409 -163.588 -7.2409 0 0 612192. 2118.31 0.02 0.06 0.06 -1 -1 0.02 0.0212515 0.0193558 202 191 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_104.v common 2.00 vpr 64.46 MiB -1 -1 0.18 17984 12 0.18 -1 -1 32132 -1 -1 41 29 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66012 29 32 239 271 1 178 102 17 17 289 -1 unnamed_device 24.4 MiB 0.05 2844 1190 7956 1682 5619 655 64.5 MiB 0.04 0.00 10.6983 7.98398 -159.232 -7.98398 7.98398 0.24 0.000371108 0.000339729 0.0153222 0.014034 -1 -1 -1 -1 26 3200 29 6.55708e+06 494255 477104. 1650.88 0.45 0.0732874 0.0649933 21022 109990 -1 2709 20 1104 3239 159893 40584 7.1573 7.1573 -156.73 -7.1573 0 0 585099. 2024.56 0.02 0.05 0.06 -1 -1 0.02 0.0188511 0.0170473 168 154 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_105.v common 2.75 vpr 63.94 MiB -1 -1 0.16 18368 11 0.13 -1 -1 32292 -1 -1 34 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65476 32 32 235 267 1 176 98 17 17 289 -1 unnamed_device 24.1 MiB 0.05 2767 1260 7298 1447 5288 563 63.9 MiB 0.05 0.00 9.23769 6.98988 -143.739 -6.98988 6.98988 0.34 0.000348314 0.000318582 0.018582 0.0170113 -1 -1 -1 -1 26 3168 19 6.55708e+06 409870 477104. 1650.88 1.13 0.150939 0.133035 21022 109990 -1 2729 16 1008 3088 154235 38775 6.31284 6.31284 -144.7 -6.31284 0 0 585099. 2024.56 0.02 0.04 0.06 -1 -1 0.02 0.0156476 0.0142051 155 141 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_106.v common 2.74 vpr 64.85 MiB -1 -1 0.17 18368 13 0.29 -1 -1 32432 -1 -1 44 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66404 31 32 294 326 1 211 107 17 17 289 -1 unnamed_device 24.8 MiB 0.11 3439 1453 7444 1510 5262 672 64.8 MiB 0.06 0.00 10.2189 7.97431 -160.47 -7.97431 7.97431 0.36 0.000708924 0.000639099 0.0251625 0.0230048 -1 -1 -1 -1 28 3874 29 6.55708e+06 530420 500653. 1732.36 0.63 0.105132 0.0937956 21310 115450 -1 3104 16 1212 4206 205123 50684 7.4003 7.4003 -160.122 -7.4003 0 0 612192. 2118.31 0.02 0.05 0.06 -1 -1 0.02 0.0211131 0.0192249 211 203 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_107.v common 2.44 vpr 64.32 MiB -1 -1 0.20 17972 10 0.18 -1 -1 32220 -1 -1 35 29 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65860 29 32 219 251 1 150 96 17 17 289 -1 unnamed_device 24.8 MiB 0.06 1946 1061 5790 1112 4104 574 64.3 MiB 0.04 0.00 7.37011 6.00295 -119.764 -6.00295 6.00295 0.25 0.00035911 0.000329803 0.0191472 0.0177945 -1 -1 -1 -1 26 2502 24 6.55708e+06 421925 477104. 1650.88 0.86 0.117586 0.103676 21022 109990 -1 2062 17 806 2797 128453 31706 5.21312 5.21312 -114.473 -5.21312 0 0 585099. 2024.56 0.02 0.04 0.06 -1 -1 0.02 0.0158314 0.0142786 147 134 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_108.v common 2.22 vpr 64.45 MiB -1 -1 0.18 17980 14 0.17 -1 -1 32276 -1 -1 34 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66000 32 32 239 271 1 173 98 17 17 289 -1 unnamed_device 24.4 MiB 0.06 2734 1213 7073 1458 5059 556 64.5 MiB 0.05 0.00 11.0242 8.4809 -168.731 -8.4809 8.4809 0.33 0.000366617 0.000335327 0.0184044 0.0169477 -1 -1 -1 -1 26 3090 29 6.55708e+06 409870 477104. 1650.88 0.58 0.101652 0.0904075 21022 109990 -1 2658 16 969 3018 149359 37853 7.24455 7.24455 -157.889 -7.24455 0 0 585099. 2024.56 0.02 0.04 0.07 -1 -1 0.02 0.0163044 0.0148298 156 145 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_109.v common 2.81 vpr 64.29 MiB -1 -1 0.18 18752 13 0.24 -1 -1 32408 -1 -1 40 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65828 31 32 266 298 1 193 103 17 17 289 -1 unnamed_device 24.8 MiB 0.09 3161 1363 8538 1729 6172 637 64.3 MiB 0.05 0.00 10.4036 7.97301 -166.024 -7.97301 7.97301 0.24 0.000424703 0.000382451 0.024452 0.0226427 -1 -1 -1 -1 26 3263 23 6.55708e+06 482200 477104. 1650.88 1.15 0.195819 0.172559 21022 109990 -1 2818 15 1049 3322 160900 40390 6.8803 6.8803 -152.18 -6.8803 0 0 585099. 2024.56 0.02 0.04 0.06 -1 -1 0.02 0.0178379 0.0162423 188 175 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_110.v common 2.58 vpr 64.30 MiB -1 -1 0.21 17984 12 0.13 -1 -1 32200 -1 -1 34 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65844 31 32 225 257 1 161 97 17 17 289 -1 unnamed_device 24.4 MiB 0.05 2415 1133 6757 1438 4598 721 64.3 MiB 0.03 0.00 9.26878 7.00946 -143.372 -7.00946 7.00946 0.23 0.000349322 0.000319975 0.0126652 0.0116002 -1 -1 -1 -1 26 2691 23 6.55708e+06 409870 477104. 1650.88 0.96 0.107657 0.0948875 21022 109990 -1 2292 17 845 2615 133353 32686 6.23184 6.23184 -137.649 -6.23184 0 0 585099. 2024.56 0.04 0.07 0.10 -1 -1 0.04 0.0283693 0.0256193 145 134 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_111.v common 2.97 vpr 64.77 MiB -1 -1 0.22 17980 12 0.18 -1 -1 33052 -1 -1 41 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66324 32 32 288 320 1 205 105 17 17 289 -1 unnamed_device 24.8 MiB 0.08 3231 1460 9244 1928 6414 902 64.8 MiB 0.07 0.00 9.79864 7.07814 -148.913 -7.07814 7.07814 0.27 0.000569668 0.000527241 0.0282744 0.0260291 -1 -1 -1 -1 28 3623 19 6.55708e+06 494255 500653. 1732.36 1.21 0.175311 0.154218 21310 115450 -1 3038 18 1249 4669 234810 56737 6.41878 6.41878 -147.502 -6.41878 0 0 612192. 2118.31 0.02 0.06 0.06 -1 -1 0.02 0.0237192 0.021482 206 194 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_112.v common 3.31 vpr 64.61 MiB -1 -1 0.19 18740 13 0.29 -1 -1 32356 -1 -1 38 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66156 31 32 282 314 1 202 101 17 17 289 -1 unnamed_device 24.8 MiB 0.10 3277 1590 6681 1310 4868 503 64.6 MiB 0.04 0.00 10.7471 8.73972 -167.897 -8.73972 8.73972 0.23 0.000460535 0.000422889 0.0162374 0.0149525 -1 -1 -1 -1 28 3932 24 6.55708e+06 458090 500653. 1732.36 1.51 0.16573 0.146424 21310 115450 -1 3256 15 1195 4023 206433 49925 7.28716 7.28716 -157.96 -7.28716 0 0 612192. 2118.31 0.02 0.06 0.07 -1 -1 0.02 0.0254841 0.02301 201 191 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_113.v common 1.99 vpr 64.38 MiB -1 -1 0.19 17984 11 0.16 -1 -1 32248 -1 -1 35 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65920 32 32 233 265 1 176 99 17 17 289 -1 unnamed_device 24.4 MiB 0.05 2465 1216 7395 1434 5485 476 64.4 MiB 0.04 0.00 8.01481 6.6836 -143.167 -6.6836 6.6836 0.23 0.000354533 0.00032415 0.0139007 0.0127385 -1 -1 -1 -1 26 2889 24 6.55708e+06 421925 477104. 1650.88 0.40 0.0652603 0.0578256 21022 109990 -1 2427 20 1207 3730 171289 43329 5.71184 5.71184 -135.745 -5.71184 0 0 585099. 2024.56 0.02 0.06 0.06 -1 -1 0.02 0.0233234 0.0209333 152 139 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_114.v common 2.17 vpr 64.54 MiB -1 -1 0.22 17980 13 0.22 -1 -1 32172 -1 -1 38 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66084 32 32 254 286 1 183 102 17 17 289 -1 unnamed_device 24.4 MiB 0.08 2879 1214 6528 1147 5041 340 64.5 MiB 0.04 0.00 10.6786 7.73627 -160.675 -7.73627 7.73627 0.25 0.000409177 0.000375614 0.0135402 0.0124612 -1 -1 -1 -1 26 2886 16 6.55708e+06 458090 477104. 1650.88 0.39 0.0686872 0.0611683 21022 109990 -1 2556 28 1471 5017 296309 110070 6.74524 6.74524 -153.355 -6.74524 0 0 585099. 2024.56 0.02 0.09 0.06 -1 -1 0.02 0.0258403 0.0231684 170 160 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_115.v common 3.18 vpr 64.73 MiB -1 -1 0.25 18368 13 0.32 -1 -1 32408 -1 -1 41 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66280 32 32 285 317 1 211 105 17 17 289 -1 unnamed_device 25.3 MiB 0.10 3339 1491 8503 1758 5902 843 64.7 MiB 0.05 0.00 10.8748 7.88135 -168.607 -7.88135 7.88135 0.37 0.000513341 0.000475271 0.0182779 0.0167377 -1 -1 -1 -1 28 3856 19 6.55708e+06 494255 500653. 1732.36 1.11 0.135527 0.119597 21310 115450 -1 3156 16 1241 3837 184163 45729 6.9979 6.9979 -160.864 -6.9979 0 0 612192. 2118.31 0.02 0.05 0.06 -1 -1 0.02 0.0198868 0.0181274 203 191 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_116.v common 2.49 vpr 64.50 MiB -1 -1 0.18 18368 11 0.26 -1 -1 32416 -1 -1 36 29 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66048 29 32 243 275 1 174 97 17 17 289 -1 unnamed_device 24.4 MiB 0.07 2558 1138 10309 2535 6640 1134 64.5 MiB 0.06 0.00 9.92175 6.74749 -129.645 -6.74749 6.74749 0.30 0.000772465 0.000712951 0.0260806 0.0238587 -1 -1 -1 -1 26 3126 32 6.55708e+06 433980 477104. 1650.88 0.67 0.0939845 0.0839562 21022 109990 -1 2578 17 931 3325 169042 40480 6.05818 6.05818 -124.542 -6.05818 0 0 585099. 2024.56 0.02 0.05 0.06 -1 -1 0.02 0.0184457 0.0167471 161 158 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_117.v common 4.27 vpr 64.39 MiB -1 -1 0.29 19136 14 0.31 -1 -1 33084 -1 -1 49 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65940 32 32 318 350 1 238 113 17 17 289 -1 unnamed_device 25.0 MiB 0.10 3835 1720 13490 3177 9101 1212 64.4 MiB 0.09 0.00 11.3374 8.61726 -184.782 -8.61726 8.61726 0.38 0.000531117 0.000488117 0.0381217 0.0350571 -1 -1 -1 -1 26 4747 29 6.55708e+06 590695 477104. 1650.88 1.96 0.210063 0.187395 21022 109990 -1 3847 17 1619 5028 258599 64735 7.6387 7.6387 -177.864 -7.6387 0 0 585099. 2024.56 0.03 0.07 0.10 -1 -1 0.03 0.0264884 0.0241963 237 224 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_118.v common 3.07 vpr 64.34 MiB -1 -1 0.14 17596 12 0.16 -1 -1 32212 -1 -1 39 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65880 31 32 222 254 1 168 102 17 17 289 -1 unnamed_device 24.4 MiB 0.05 2680 1201 9146 2230 5919 997 64.3 MiB 0.07 0.00 9.64207 6.86528 -149.041 -6.86528 6.86528 0.27 0.000812538 0.000756576 0.0281269 0.0260777 -1 -1 -1 -1 28 2882 21 6.55708e+06 470145 500653. 1732.36 1.53 0.151684 0.134655 21310 115450 -1 2472 16 858 2767 136347 34084 6.01898 6.01898 -141.29 -6.01898 0 0 612192. 2118.31 0.02 0.04 0.06 -1 -1 0.02 0.0163473 0.014792 148 131 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_119.v common 3.95 vpr 64.73 MiB -1 -1 0.18 18748 13 0.38 -1 -1 33024 -1 -1 42 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66284 32 32 282 314 1 207 106 17 17 289 -1 unnamed_device 24.8 MiB 0.11 3147 1501 6856 1348 5065 443 64.7 MiB 0.04 0.00 11.0904 8.08861 -162.494 -8.08861 8.08861 0.24 0.000487836 0.00044248 0.0151914 0.0139396 -1 -1 -1 -1 30 3270 24 6.55708e+06 506310 526063. 1820.29 1.81 0.202497 0.178708 21886 126133 -1 2801 17 1152 3849 170213 42169 6.9959 6.9959 -151.51 -6.9959 0 0 666494. 2306.21 0.03 0.05 0.07 -1 -1 0.03 0.0214516 0.0195268 197 188 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_120.v common 2.26 vpr 64.41 MiB -1 -1 0.16 18356 13 0.16 -1 -1 31960 -1 -1 36 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65952 32 32 238 270 1 177 100 17 17 289 -1 unnamed_device 24.4 MiB 0.05 2839 1155 9612 2317 6234 1061 64.4 MiB 0.06 0.00 10.0742 7.73627 -166.258 -7.73627 7.73627 0.26 0.000577123 0.000544952 0.0229617 0.0211759 -1 -1 -1 -1 26 3028 23 6.55708e+06 433980 477104. 1650.88 0.64 0.0971387 0.0867266 21022 109990 -1 2456 17 990 2796 128129 34060 6.7183 6.7183 -154.301 -6.7183 0 0 585099. 2024.56 0.02 0.06 0.07 -1 -1 0.02 0.0259404 0.0234647 163 144 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_121.v common 2.36 vpr 64.06 MiB -1 -1 0.19 18364 12 0.19 -1 -1 32400 -1 -1 34 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65600 32 32 269 301 1 185 98 17 17 289 -1 unnamed_device 24.0 MiB 0.07 2537 1263 4823 745 3784 294 64.1 MiB 0.04 0.00 8.39043 7.2824 -152.393 -7.2824 7.2824 0.28 0.000905441 0.000848363 0.0153777 0.0142054 -1 -1 -1 -1 26 3179 19 6.55708e+06 409870 477104. 1650.88 0.52 0.0875654 0.0779802 21022 109990 -1 2833 16 1121 3843 195292 47160 6.33578 6.33578 -144.328 -6.33578 0 0 585099. 2024.56 0.04 0.12 0.08 -1 -1 0.04 0.0502091 0.0457004 181 175 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_122.v common 4.30 vpr 64.66 MiB -1 -1 0.21 19136 15 0.52 -1 -1 32728 -1 -1 53 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66216 32 32 350 382 1 251 117 17 17 289 -1 unnamed_device 25.5 MiB 0.10 4081 1828 11271 2288 8079 904 64.7 MiB 0.08 0.00 12.2654 9.04209 -187.694 -9.04209 9.04209 0.24 0.000564516 0.000516461 0.0316535 0.0292536 -1 -1 -1 -1 34 4381 20 6.55708e+06 638915 585099. 2024.56 1.93 0.266028 0.237356 22462 138074 -1 3819 17 1628 5914 283565 69847 7.93821 7.93821 -172.8 -7.93821 0 0 742403. 2568.87 0.04 0.11 0.13 -1 -1 0.04 0.0448869 0.0406004 267 256 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_123.v common 2.15 vpr 63.67 MiB -1 -1 0.17 17984 10 0.08 -1 -1 31896 -1 -1 25 30 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65200 30 32 174 206 1 130 87 17 17 289 -1 unnamed_device 24.1 MiB 0.06 1854 885 5271 1136 3651 484 63.7 MiB 0.03 0.00 6.3165 5.04697 -113.367 -5.04697 5.04697 0.27 0.000281181 0.000256712 0.0096779 0.00890741 -1 -1 -1 -1 22 2009 18 6.55708e+06 301375 420624. 1455.45 0.72 0.0769089 0.067373 20158 92377 -1 1822 15 647 1672 87673 22492 4.69874 4.69874 -113.69 -4.69874 0 0 500653. 1732.36 0.02 0.03 0.05 -1 -1 0.02 0.0113927 0.0102766 101 86 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_124.v common 2.17 vpr 64.31 MiB -1 -1 0.16 17984 13 0.16 -1 -1 32224 -1 -1 35 30 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65856 30 32 228 260 1 166 97 17 17 289 -1 unnamed_device 24.7 MiB 0.04 2503 1064 8533 2145 5652 736 64.3 MiB 0.05 0.00 9.22658 7.43294 -146.134 -7.43294 7.43294 0.25 0.000684186 0.00061813 0.0193226 0.0176829 -1 -1 -1 -1 26 2779 19 6.55708e+06 421925 477104. 1650.88 0.59 0.0941429 0.083978 21022 109990 -1 2338 20 900 2793 146444 39162 6.62764 6.62764 -141.958 -6.62764 0 0 585099. 2024.56 0.02 0.05 0.06 -1 -1 0.02 0.0212905 0.0192897 158 140 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_125.v common 2.93 vpr 64.61 MiB -1 -1 0.16 17984 12 0.22 -1 -1 32456 -1 -1 39 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66164 32 32 264 296 1 190 103 17 17 289 -1 unnamed_device 24.8 MiB 0.08 2629 1279 6851 1204 5209 438 64.6 MiB 0.06 0.00 9.58679 7.67078 -160.044 -7.67078 7.67078 0.26 0.00074458 0.000678895 0.0262383 0.0240079 -1 -1 -1 -1 26 3107 22 6.55708e+06 470145 477104. 1650.88 1.18 0.160881 0.142423 21022 109990 -1 2653 17 1110 3493 165297 42443 6.9215 6.9215 -157.739 -6.9215 0 0 585099. 2024.56 0.02 0.05 0.07 -1 -1 0.02 0.0191677 0.017369 182 170 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_126.v common 1.94 vpr 63.14 MiB -1 -1 0.16 17984 9 0.14 -1 -1 32072 -1 -1 32 25 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 64652 25 32 183 215 1 133 89 17 17 289 -1 unnamed_device 23.7 MiB 0.04 1645 871 9395 2229 5617 1549 63.1 MiB 0.04 0.00 7.61712 5.81412 -100.01 -5.81412 5.81412 0.24 0.000292282 0.000267119 0.0173114 0.0159233 -1 -1 -1 -1 20 2082 17 6.55708e+06 385760 394039. 1363.46 0.46 0.0530832 0.0471797 19870 87366 -1 1921 20 716 2165 117867 32355 5.29412 5.29412 -99.9076 -5.29412 0 0 477104. 1650.88 0.02 0.04 0.05 -1 -1 0.02 0.0149858 0.0134956 117 110 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_127.v common 2.38 vpr 64.78 MiB -1 -1 0.19 18368 12 0.24 -1 -1 32288 -1 -1 43 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66336 32 32 300 332 1 216 107 17 17 289 -1 unnamed_device 24.8 MiB 0.08 3565 1492 7444 1324 5746 374 64.8 MiB 0.05 0.00 10.0075 7.59118 -168.041 -7.59118 7.59118 0.24 0.000891795 0.000812487 0.0203308 0.0187674 -1 -1 -1 -1 26 3908 24 6.55708e+06 518365 477104. 1650.88 0.63 0.101343 0.0903997 21022 109990 -1 3205 18 1335 4400 213388 52780 6.7621 6.7621 -161.57 -6.7621 0 0 585099. 2024.56 0.03 0.09 0.07 -1 -1 0.03 0.038608 0.0346733 214 206 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_128.v common 3.03 vpr 64.82 MiB -1 -1 0.34 18748 13 0.34 -1 -1 32352 -1 -1 40 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66372 31 32 290 322 1 209 103 17 17 289 -1 unnamed_device 24.8 MiB 0.08 3076 1400 9020 1816 6496 708 64.8 MiB 0.06 0.00 10.9492 8.22447 -168.698 -8.22447 8.22447 0.24 0.000468237 0.000425889 0.0269885 0.0247947 -1 -1 -1 -1 26 4161 44 6.55708e+06 482200 477104. 1650.88 0.88 0.150718 0.134439 21022 109990 -1 3404 19 1491 5035 261566 64544 7.49096 7.49096 -169.674 -7.49096 0 0 585099. 2024.56 0.03 0.09 0.09 -1 -1 0.03 0.0380429 0.0345811 210 199 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_001.v common 2.05 vpr 64.81 MiB -1 -1 0.13 18052 1 0.03 -1 -1 30188 -1 -1 36 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66368 32 32 354 285 1 202 100 17 17 289 -1 unnamed_device 24.9 MiB 0.17 2678 1168 17500 5183 9317 3000 64.8 MiB 0.09 0.00 6.89032 5.76129 -168.782 -5.76129 5.76129 0.25 0.000333333 0.000305308 0.0299479 0.0274962 -1 -1 -1 -1 32 2438 20 6.64007e+06 452088 554710. 1919.41 0.45 0.0846256 0.0753861 22834 132086 -1 2056 19 1088 1723 102004 24911 4.49028 4.49028 -149.555 -4.49028 0 0 701300. 2426.64 0.03 0.04 0.07 -1 -1 0.03 0.0160781 0.0144875 152 50 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_002.v common 2.00 vpr 64.81 MiB -1 -1 0.12 18436 1 0.03 -1 -1 29772 -1 -1 30 30 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66368 30 32 363 293 1 196 92 17 17 289 -1 unnamed_device 24.9 MiB 0.15 2387 1153 13961 4091 8036 1834 64.8 MiB 0.11 0.00 6.11521 5.05541 -146.114 -5.05541 5.05541 0.25 0.000500957 0.000466786 0.0364324 0.0336624 -1 -1 -1 -1 32 2330 19 6.64007e+06 376740 554710. 1919.41 0.43 0.0998543 0.0896451 22834 132086 -1 2183 20 1448 2220 169416 37520 3.76628 3.76628 -132.238 -3.76628 0 0 701300. 2426.64 0.03 0.05 0.08 -1 -1 0.03 0.0177524 0.0158766 147 63 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_003.v common 2.62 vpr 64.13 MiB -1 -1 0.12 18056 1 0.03 -1 -1 29804 -1 -1 30 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65672 32 32 299 247 1 188 94 17 17 289 -1 unnamed_device 24.5 MiB 0.16 2525 988 13087 3736 7613 1738 64.1 MiB 0.07 0.00 5.74935 4.679 -119.362 -4.679 4.679 0.23 0.000294184 0.000268866 0.0198637 0.018188 -1 -1 -1 -1 28 2482 34 6.64007e+06 376740 500653. 1732.36 1.10 0.1219 0.106318 21970 115934 -1 1920 19 1114 1579 102339 24279 3.91102 3.91102 -116.938 -3.91102 0 0 612192. 2118.31 0.02 0.04 0.06 -1 -1 0.02 0.0155755 0.0139714 129 29 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_004.v common 2.18 vpr 64.59 MiB -1 -1 0.19 17668 1 0.03 -1 -1 29756 -1 -1 31 29 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66144 29 32 308 248 1 169 92 17 17 289 -1 unnamed_device 24.9 MiB 0.04 2219 999 11684 2867 7870 947 64.6 MiB 0.06 0.00 5.50467 4.50524 -120.656 -4.50524 4.50524 0.23 0.000301757 0.000276843 0.0194556 0.0177984 -1 -1 -1 -1 26 2353 21 6.64007e+06 389298 477104. 1650.88 0.78 0.102845 0.0897238 21682 110474 -1 1996 22 1376 2539 149716 35231 3.78483 3.78483 -117.773 -3.78483 0 0 585099. 2024.56 0.02 0.06 0.07 -1 -1 0.02 0.0206924 0.0183868 132 31 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_005.v common 1.93 vpr 64.67 MiB -1 -1 0.11 18052 1 0.03 -1 -1 30212 -1 -1 28 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66224 32 32 336 268 1 174 92 17 17 289 -1 unnamed_device 25.2 MiB 0.05 2401 1044 13340 3641 8511 1188 64.7 MiB 0.10 0.00 5.52176 4.47681 -129.939 -4.47681 4.47681 0.27 0.000326175 0.000298389 0.0335294 0.031105 -1 -1 -1 -1 26 2714 23 6.64007e+06 351624 477104. 1650.88 0.52 0.0841857 0.0755446 21682 110474 -1 2319 20 1464 2737 194545 44782 3.91083 3.91083 -130.973 -3.91083 0 0 585099. 2024.56 0.02 0.05 0.06 -1 -1 0.02 0.0173489 0.015589 134 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_006.v common 2.19 vpr 64.17 MiB -1 -1 0.14 18052 1 0.03 -1 -1 29756 -1 -1 39 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65712 32 32 366 295 1 189 103 17 17 289 -1 unnamed_device 24.6 MiB 0.07 2589 1146 13840 3734 8768 1338 64.2 MiB 0.07 0.00 4.20679 3.37156 -118.042 -3.37156 3.37156 0.24 0.000343562 0.000314786 0.0216965 0.0198462 -1 -1 -1 -1 28 2430 24 6.64007e+06 489762 500653. 1732.36 0.79 0.125458 0.109537 21970 115934 -1 2113 20 1219 1980 106732 27236 3.00917 3.00917 -117.621 -3.00917 0 0 612192. 2118.31 0.02 0.05 0.06 -1 -1 0.02 0.0217329 0.0195006 145 58 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_007.v common 2.30 vpr 63.78 MiB -1 -1 0.20 17288 1 0.02 -1 -1 30552 -1 -1 21 27 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65312 27 32 259 221 1 130 80 17 17 289 -1 unnamed_device 24.5 MiB 0.04 1585 646 13324 5650 6908 766 63.8 MiB 0.06 0.00 4.47141 3.76738 -100.249 -3.76738 3.76738 0.24 0.000261076 0.000238807 0.0222262 0.0203919 -1 -1 -1 -1 30 1362 22 6.64007e+06 263718 526063. 1820.29 0.89 0.104457 0.0913085 22546 126617 -1 1268 22 886 1557 92007 22640 2.87397 2.87397 -91.7688 -2.87397 0 0 666494. 2306.21 0.03 0.04 0.07 -1 -1 0.03 0.0171266 0.015248 97 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_008.v common 2.27 vpr 64.12 MiB -1 -1 0.11 17912 1 0.03 -1 -1 29800 -1 -1 35 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65656 31 32 271 219 1 162 98 17 17 289 -1 unnamed_device 24.5 MiB 0.03 2037 1027 15848 4746 8906 2196 64.1 MiB 0.08 0.00 4.0843 3.4441 -101.869 -3.4441 3.4441 0.23 0.000279498 0.000255601 0.0233277 0.0213053 -1 -1 -1 -1 26 2300 22 6.64007e+06 439530 477104. 1650.88 0.94 0.108532 0.0952919 21682 110474 -1 2007 20 1077 1995 121729 28059 2.93817 2.93817 -99.1235 -2.93817 0 0 585099. 2024.56 0.02 0.04 0.06 -1 -1 0.02 0.0142379 0.0126856 123 4 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_009.v common 2.53 vpr 64.61 MiB -1 -1 0.13 17908 1 0.03 -1 -1 30172 -1 -1 25 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66160 31 32 317 271 1 168 88 17 17 289 -1 unnamed_device 24.9 MiB 0.11 2086 995 13543 3931 7670 1942 64.6 MiB 0.06 0.00 3.99239 3.60222 -119.143 -3.60222 3.60222 0.23 0.000300054 0.000274015 0.0225345 0.0206345 -1 -1 -1 -1 32 1822 20 6.64007e+06 313950 554710. 1919.41 0.92 0.11928 0.104086 22834 132086 -1 1636 20 877 1310 79180 19116 2.89043 2.89043 -109.637 -2.89043 0 0 701300. 2426.64 0.03 0.03 0.11 -1 -1 0.03 0.0150146 0.013392 117 64 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_010.v common 2.63 vpr 64.51 MiB -1 -1 0.13 17664 1 0.03 -1 -1 30140 -1 -1 19 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66060 32 32 298 248 1 156 83 17 17 289 -1 unnamed_device 24.9 MiB 0.12 1795 817 8003 1790 5827 386 64.5 MiB 0.05 0.00 4.55761 3.87558 -124.983 -3.87558 3.87558 0.24 0.000293751 0.000267622 0.014943 0.0137302 -1 -1 -1 -1 28 1916 23 6.64007e+06 238602 500653. 1732.36 0.99 0.107138 0.0936028 21970 115934 -1 1743 21 1210 1968 117336 30369 2.80477 2.80477 -113.751 -2.80477 0 0 612192. 2118.31 0.02 0.04 0.08 -1 -1 0.02 0.0158551 0.0140681 115 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_011.v common 2.40 vpr 64.53 MiB -1 -1 0.13 18056 1 0.03 -1 -1 29796 -1 -1 19 30 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66080 30 32 303 262 1 139 81 17 17 289 -1 unnamed_device 24.5 MiB 0.07 1688 651 12156 4701 5752 1703 64.5 MiB 0.06 0.00 4.55761 3.85358 -107.527 -3.85358 3.85358 0.25 0.000290653 0.000265701 0.0218367 0.0200019 -1 -1 -1 -1 30 1469 20 6.64007e+06 238602 526063. 1820.29 0.83 0.0990725 0.0867591 22546 126617 -1 1254 17 604 926 54157 13941 2.77497 2.77497 -95.1733 -2.77497 0 0 666494. 2306.21 0.03 0.03 0.07 -1 -1 0.03 0.0130171 0.0117058 101 63 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_012.v common 2.31 vpr 64.49 MiB -1 -1 0.11 18056 1 0.03 -1 -1 29716 -1 -1 23 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66040 32 32 276 237 1 167 87 17 17 289 -1 unnamed_device 24.5 MiB 0.13 2346 951 8919 2111 6427 381 64.5 MiB 0.05 0.00 4.97492 3.76035 -118.411 -3.76035 3.76035 0.23 0.000287454 0.000258142 0.0148458 0.0135347 -1 -1 -1 -1 26 2233 26 6.64007e+06 288834 477104. 1650.88 0.90 0.106722 0.0926572 21682 110474 -1 1861 21 1041 1454 89116 22517 3.10837 3.10837 -114.215 -3.10837 0 0 585099. 2024.56 0.02 0.03 0.06 -1 -1 0.02 0.0137714 0.0122685 110 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_013.v common 1.86 vpr 64.40 MiB -1 -1 0.11 18056 1 0.03 -1 -1 29768 -1 -1 29 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65948 32 32 344 272 1 202 93 17 17 289 -1 unnamed_device 24.9 MiB 0.14 2572 1221 14583 4808 7640 2135 64.4 MiB 0.09 0.00 4.99767 4.51687 -145.067 -4.51687 4.51687 0.24 0.000323777 0.000296108 0.0247005 0.0224532 -1 -1 -1 -1 30 2687 23 6.64007e+06 364182 526063. 1820.29 0.39 0.0704651 0.0623808 22546 126617 -1 2135 17 1045 1588 103097 22969 3.25883 3.25883 -126.603 -3.25883 0 0 666494. 2306.21 0.03 0.04 0.07 -1 -1 0.03 0.0154776 0.0138331 148 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_014.v common 2.07 vpr 64.78 MiB -1 -1 0.14 17696 1 0.03 -1 -1 29780 -1 -1 34 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66332 32 32 363 295 1 181 98 17 17 289 -1 unnamed_device 25.2 MiB 0.08 2535 922 19223 5837 10520 2866 64.8 MiB 0.11 0.00 5.92827 4.77444 -136.955 -4.77444 4.77444 0.25 0.000376709 0.000347561 0.0371074 0.034053 -1 -1 -1 -1 28 2714 33 6.64007e+06 426972 500653. 1732.36 0.57 0.0952296 0.0848217 21970 115934 -1 2193 22 1709 2838 188317 48152 4.01303 4.01303 -131.661 -4.01303 0 0 612192. 2118.31 0.02 0.05 0.06 -1 -1 0.02 0.0173466 0.0155029 139 61 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_015.v common 2.26 vpr 64.13 MiB -1 -1 0.12 17672 1 0.02 -1 -1 30240 -1 -1 23 29 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65668 29 32 248 215 1 137 84 17 17 289 -1 unnamed_device 24.9 MiB 0.05 1651 648 11064 3436 5196 2432 64.1 MiB 0.06 0.00 3.81299 3.12479 -88.8266 -3.12479 3.12479 0.26 0.00026897 0.00023978 0.0232876 0.0215518 -1 -1 -1 -1 32 1369 19 6.64007e+06 288834 554710. 1919.41 0.89 0.105223 0.0919344 22834 132086 -1 1104 15 627 1014 49151 13344 2.77777 2.77777 -84.3561 -2.77777 0 0 701300. 2426.64 0.03 0.02 0.07 -1 -1 0.03 0.0103697 0.00930164 103 27 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_016.v common 1.84 vpr 64.30 MiB -1 -1 0.12 18056 1 0.03 -1 -1 29768 -1 -1 27 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65848 32 32 370 297 1 183 91 17 17 289 -1 unnamed_device 24.8 MiB 0.08 2380 942 16819 5830 8106 2883 64.3 MiB 0.09 0.00 4.6791 4.09527 -122.173 -4.09527 4.09527 0.23 0.000346698 0.000316608 0.0307314 0.0280788 -1 -1 -1 -1 32 2367 28 6.64007e+06 339066 554710. 1919.41 0.39 0.0804661 0.0715237 22834 132086 -1 1983 22 1455 2736 169045 42069 3.21356 3.21356 -117.004 -3.21356 0 0 701300. 2426.64 0.03 0.06 0.07 -1 -1 0.03 0.0201019 0.0179187 138 58 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_017.v common 1.78 vpr 64.36 MiB -1 -1 0.12 18052 1 0.03 -1 -1 29828 -1 -1 28 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65900 32 32 338 269 1 196 92 17 17 289 -1 unnamed_device 24.9 MiB 0.12 2606 1192 12305 3184 7882 1239 64.4 MiB 0.07 0.00 5.47847 4.60407 -146.257 -4.60407 4.60407 0.23 0.000330363 0.000302451 0.0218624 0.0200378 -1 -1 -1 -1 32 2209 18 6.64007e+06 351624 554710. 1919.41 0.34 0.0628724 0.0559061 22834 132086 -1 2050 16 1144 1644 92509 23959 3.27883 3.27883 -126.125 -3.27883 0 0 701300. 2426.64 0.03 0.03 0.08 -1 -1 0.03 0.0139599 0.012587 144 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_018.v common 2.37 vpr 64.11 MiB -1 -1 0.13 18052 1 0.03 -1 -1 29644 -1 -1 34 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65648 32 32 323 276 1 153 98 17 17 289 -1 unnamed_device 24.4 MiB 0.08 2093 899 12248 2945 8519 784 64.1 MiB 0.06 0.00 3.59784 2.85064 -103.682 -2.85064 2.85064 0.23 0.00031002 0.000284204 0.0183735 0.0167743 -1 -1 -1 -1 26 2006 25 6.64007e+06 426972 477104. 1650.88 0.82 0.101691 0.0889344 21682 110474 -1 1742 21 1124 1885 120447 29317 2.14431 2.14431 -98.4532 -2.14431 0 0 585099. 2024.56 0.02 0.04 0.06 -1 -1 0.02 0.0152302 0.0135505 115 65 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_019.v common 2.13 vpr 64.00 MiB -1 -1 0.11 17528 1 0.02 -1 -1 29752 -1 -1 17 30 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65532 30 32 222 206 1 117 79 17 17 289 -1 unnamed_device 24.5 MiB 0.03 1535 603 7853 2116 5212 525 64.0 MiB 0.04 0.00 2.99233 2.39133 -77.851 -2.39133 2.39133 0.24 0.000231626 0.000212413 0.0147234 0.0135737 -1 -1 -1 -1 32 1129 17 6.64007e+06 213486 554710. 1919.41 0.86 0.0935232 0.0812611 22834 132086 -1 990 20 553 827 48112 12467 1.79471 1.79471 -72.575 -1.79471 0 0 701300. 2426.64 0.03 0.02 0.07 -1 -1 0.03 0.0110231 0.00979166 85 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_020.v common 1.76 vpr 64.60 MiB -1 -1 0.12 18052 1 0.03 -1 -1 29800 -1 -1 24 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66148 31 32 291 243 1 171 87 17 17 289 -1 unnamed_device 24.5 MiB 0.15 2125 1026 10455 2663 6617 1175 64.6 MiB 0.06 0.00 6.02746 5.0168 -149.308 -5.0168 5.0168 0.23 0.000293444 0.000269173 0.0187775 0.0172066 -1 -1 -1 -1 30 2023 21 6.64007e+06 301392 526063. 1820.29 0.32 0.0582338 0.0515822 22546 126617 -1 1733 20 829 1237 65753 16555 3.62043 3.62043 -133.716 -3.62043 0 0 666494. 2306.21 0.03 0.04 0.07 -1 -1 0.03 0.0181583 0.0162736 127 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_021.v common 2.76 vpr 64.73 MiB -1 -1 0.16 18436 1 0.03 -1 -1 29980 -1 -1 37 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66284 32 32 342 271 1 179 101 17 17 289 -1 unnamed_device 25.2 MiB 0.04 2331 1141 17961 5691 10386 1884 64.7 MiB 0.11 0.00 5.44296 4.13552 -132.934 -4.13552 4.13552 0.24 0.000351539 0.00032317 0.0368032 0.0340409 -1 -1 -1 -1 26 2527 22 6.64007e+06 464646 477104. 1650.88 1.27 0.152604 0.135082 21682 110474 -1 2212 22 1474 2442 179110 40191 3.73683 3.73683 -133.451 -3.73683 0 0 585099. 2024.56 0.02 0.05 0.06 -1 -1 0.02 0.0173672 0.0155182 140 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_022.v common 2.89 vpr 64.85 MiB -1 -1 0.12 18056 1 0.03 -1 -1 29712 -1 -1 31 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66404 32 32 372 300 1 207 95 17 17 289 -1 unnamed_device 24.9 MiB 0.25 2693 1197 9383 1945 6894 544 64.8 MiB 0.06 0.00 5.6841 4.62416 -139.043 -4.62416 4.62416 0.24 0.000343386 0.000314627 0.0172008 0.0157806 -1 -1 -1 -1 30 2804 24 6.64007e+06 389298 526063. 1820.29 1.14 0.12124 0.106579 22546 126617 -1 2221 19 1154 1858 115618 26985 3.82228 3.82228 -129.932 -3.82228 0 0 666494. 2306.21 0.03 0.04 0.07 -1 -1 0.03 0.0172664 0.0155995 151 62 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_023.v common 1.96 vpr 63.86 MiB -1 -1 0.12 18056 1 0.02 -1 -1 30160 -1 -1 20 26 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65396 26 32 190 182 1 108 78 17 17 289 -1 unnamed_device 24.5 MiB 0.05 1349 633 10868 3050 6437 1381 63.9 MiB 0.04 0.00 2.81093 2.39133 -70.7944 -2.39133 2.39133 0.23 0.000198641 0.000181079 0.0142663 0.0130218 -1 -1 -1 -1 26 1233 20 6.64007e+06 251160 477104. 1650.88 0.68 0.070323 0.0614049 21682 110474 -1 1121 19 523 781 49077 12394 1.95411 1.95411 -71.0211 -1.95411 0 0 585099. 2024.56 0.02 0.02 0.06 -1 -1 0.02 0.0107949 0.00959479 81 30 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_024.v common 1.78 vpr 64.57 MiB -1 -1 0.11 17672 1 0.02 -1 -1 29764 -1 -1 25 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66116 32 32 285 227 1 165 89 17 17 289 -1 unnamed_device 24.9 MiB 0.04 2052 991 13751 4633 6453 2665 64.6 MiB 0.07 0.00 4.97861 4.55404 -124.907 -4.55404 4.55404 0.25 0.000298608 0.000273835 0.0228545 0.0209681 -1 -1 -1 -1 32 2035 19 6.64007e+06 313950 554710. 1919.41 0.36 0.0657503 0.0584607 22834 132086 -1 1878 20 1138 2086 138403 31685 3.44803 3.44803 -114.756 -3.44803 0 0 701300. 2426.64 0.03 0.04 0.08 -1 -1 0.03 0.0144217 0.0128571 125 3 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_025.v common 2.04 vpr 63.86 MiB -1 -1 0.11 17664 1 0.02 -1 -1 30076 -1 -1 17 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65388 32 32 173 169 1 116 81 17 17 289 -1 unnamed_device 24.7 MiB 0.03 1447 554 12331 4885 6406 1040 63.9 MiB 0.05 0.00 2.77793 2.35833 -70.3669 -2.35833 2.35833 0.24 0.000401366 0.000368701 0.0176975 0.0162144 -1 -1 -1 -1 28 1254 19 6.64007e+06 213486 500653. 1732.36 0.82 0.074078 0.0649612 21970 115934 -1 991 16 450 533 42691 11758 1.86191 1.86191 -70.1632 -1.86191 0 0 612192. 2118.31 0.02 0.02 0.06 -1 -1 0.02 0.00837099 0.00747193 82 3 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_026.v common 2.55 vpr 64.57 MiB -1 -1 0.14 18052 1 0.03 -1 -1 29764 -1 -1 31 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66116 32 32 300 245 1 165 95 17 17 289 -1 unnamed_device 24.9 MiB 0.04 2081 918 9383 2172 5914 1297 64.6 MiB 0.05 0.00 5.31627 4.63183 -123.978 -4.63183 4.63183 0.24 0.000306745 0.000280355 0.0150318 0.0138059 -1 -1 -1 -1 30 2001 23 6.64007e+06 389298 526063. 1820.29 1.00 0.115117 0.10028 22546 126617 -1 1617 20 798 1425 79320 19609 3.37283 3.37283 -108.474 -3.37283 0 0 666494. 2306.21 0.04 0.05 0.12 -1 -1 0.04 0.0244901 0.0219357 126 24 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_027.v common 2.28 vpr 64.39 MiB -1 -1 0.11 17668 1 0.03 -1 -1 29948 -1 -1 39 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65932 32 32 297 233 1 177 103 17 17 289 -1 unnamed_device 24.6 MiB 0.03 2388 1070 19624 5823 11095 2706 64.4 MiB 0.10 0.00 4.70631 3.69341 -108.189 -3.69341 3.69341 0.23 0.000320509 0.00029285 0.0301434 0.0276299 -1 -1 -1 -1 28 2304 20 6.64007e+06 489762 500653. 1732.36 0.89 0.12607 0.111455 21970 115934 -1 2043 19 1110 2038 137544 38662 3.00917 3.00917 -107.4 -3.00917 0 0 612192. 2118.31 0.02 0.04 0.06 -1 -1 0.02 0.0143121 0.0128153 136 3 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_028.v common 2.84 vpr 64.70 MiB -1 -1 0.12 18052 1 0.03 -1 -1 30168 -1 -1 34 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66252 32 32 338 277 1 179 98 17 17 289 -1 unnamed_device 24.9 MiB 0.09 2303 1088 17423 5246 9519 2658 64.7 MiB 0.09 0.00 5.78707 4.89043 -136.673 -4.89043 4.89043 0.24 0.000327236 0.000299569 0.0274047 0.0250913 -1 -1 -1 -1 26 2626 24 6.64007e+06 426972 477104. 1650.88 1.39 0.158323 0.139377 21682 110474 -1 2086 20 1058 1856 117209 27300 3.85983 3.85983 -129.261 -3.85983 0 0 585099. 2024.56 0.02 0.04 0.06 -1 -1 0.02 0.0157392 0.0140998 132 50 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_029.v common 2.00 vpr 64.45 MiB -1 -1 0.12 18052 1 0.03 -1 -1 29628 -1 -1 21 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65996 32 32 284 241 1 145 85 17 17 289 -1 unnamed_device 24.9 MiB 0.05 1848 932 9571 2445 6468 658 64.4 MiB 0.05 0.00 3.79099 3.02179 -103.859 -3.02179 3.02179 0.23 0.000290894 0.000267194 0.0165695 0.0152169 -1 -1 -1 -1 30 1784 18 6.64007e+06 263718 526063. 1820.29 0.65 0.0906451 0.0790376 22546 126617 -1 1601 19 736 1233 74070 17622 2.70797 2.70797 -101.892 -2.70797 0 0 666494. 2306.21 0.03 0.03 0.07 -1 -1 0.03 0.0137793 0.0123494 107 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_030.v common 2.26 vpr 64.42 MiB -1 -1 0.12 17668 1 0.02 -1 -1 29852 -1 -1 24 30 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65964 30 32 262 227 1 135 86 17 17 289 -1 unnamed_device 24.5 MiB 0.04 1630 675 10103 2270 6949 884 64.4 MiB 0.05 0.00 3.60179 3.24119 -95.5452 -3.24119 3.24119 0.23 0.00034986 0.000321242 0.0196118 0.0180662 -1 -1 -1 -1 30 1518 17 6.64007e+06 301392 526063. 1820.29 0.88 0.10414 0.0913886 22546 126617 -1 1212 20 661 1089 52330 13795 2.56257 2.56257 -89.8228 -2.56257 0 0 666494. 2306.21 0.03 0.03 0.07 -1 -1 0.03 0.0132004 0.0116361 100 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_031.v common 1.76 vpr 64.43 MiB -1 -1 0.15 17668 1 0.03 -1 -1 29816 -1 -1 24 28 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65976 28 32 260 223 1 140 84 17 17 289 -1 unnamed_device 24.3 MiB 0.04 1853 868 11247 3492 5966 1789 64.4 MiB 0.07 0.00 4.1543 3.41886 -98.6687 -3.41886 3.41886 0.25 0.000328088 0.000304966 0.0270155 0.0250108 -1 -1 -1 -1 32 1674 22 6.64007e+06 301392 554710. 1919.41 0.34 0.0669298 0.0597058 22834 132086 -1 1544 22 868 1612 92339 21804 2.72157 2.72157 -97.0146 -2.72157 0 0 701300. 2426.64 0.03 0.04 0.07 -1 -1 0.03 0.0150226 0.0132339 104 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_032.v common 2.35 vpr 64.43 MiB -1 -1 0.13 17672 1 0.03 -1 -1 29816 -1 -1 21 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65976 32 32 253 210 1 154 85 17 17 289 -1 unnamed_device 24.5 MiB 0.06 2077 943 13663 4291 7577 1795 64.4 MiB 0.06 0.00 4.55061 3.72021 -112.43 -3.72021 3.72021 0.24 0.00027512 0.000252672 0.0213097 0.0195023 -1 -1 -1 -1 26 2096 19 6.64007e+06 263718 477104. 1650.88 0.79 0.0898311 0.0787572 21682 110474 -1 1871 22 1227 1984 139135 31601 2.85597 2.85597 -110.575 -2.85597 0 0 585099. 2024.56 0.02 0.04 0.06 -1 -1 0.02 0.0139917 0.0124162 116 3 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_033.v common 2.20 vpr 64.48 MiB -1 -1 0.13 17544 1 0.02 -1 -1 30152 -1 -1 33 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66032 31 32 271 231 1 148 96 17 17 289 -1 unnamed_device 24.5 MiB 0.03 1915 918 11703 2893 8058 752 64.5 MiB 0.06 0.00 3.9659 3.50227 -105.619 -3.50227 3.50227 0.24 0.000276998 0.000253415 0.0163437 0.014946 -1 -1 -1 -1 32 1765 22 6.64007e+06 414414 554710. 1919.41 0.90 0.108379 0.0945088 22834 132086 -1 1550 19 732 1226 65350 16682 2.72157 2.72157 -100.584 -2.72157 0 0 701300. 2426.64 0.03 0.03 0.07 -1 -1 0.03 0.0126351 0.0112682 111 30 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_034.v common 2.30 vpr 64.14 MiB -1 -1 0.12 18052 1 0.03 -1 -1 29800 -1 -1 31 29 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65676 29 32 291 250 1 153 92 17 17 289 -1 unnamed_device 24.5 MiB 0.08 2169 773 17273 5937 9206 2130 64.1 MiB 0.18 0.00 3.9379 3.3369 -101.534 -3.3369 3.3369 0.24 0.000761204 0.000704797 0.0671225 0.0623348 -1 -1 -1 -1 26 1968 20 6.64007e+06 389298 477104. 1650.88 0.86 0.144333 0.129123 21682 110474 -1 1572 20 922 1465 89723 22843 2.34097 2.34097 -89.7372 -2.34097 0 0 585099. 2024.56 0.02 0.03 0.06 -1 -1 0.02 0.0136178 0.012134 112 54 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_035.v common 3.16 vpr 64.87 MiB -1 -1 0.12 18052 1 0.03 -1 -1 29616 -1 -1 42 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66428 32 32 367 282 1 201 106 17 17 289 -1 unnamed_device 25.2 MiB 0.07 2308 1232 18356 5288 9596 3472 64.9 MiB 0.09 0.00 4.83776 4.37413 -122.59 -4.37413 4.37413 0.25 0.000352344 0.000322425 0.0280539 0.025636 -1 -1 -1 -1 28 2975 26 6.64007e+06 527436 500653. 1732.36 1.76 0.14119 0.125231 21970 115934 -1 2412 18 1248 2439 162377 37472 3.48123 3.48123 -118.393 -3.48123 0 0 612192. 2118.31 0.02 0.04 0.06 -1 -1 0.02 0.016007 0.0144134 158 29 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_036.v common 2.55 vpr 64.89 MiB -1 -1 0.11 18056 1 0.03 -1 -1 29744 -1 -1 41 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66448 32 32 391 311 1 192 105 17 17 289 -1 unnamed_device 25.5 MiB 0.07 2421 1023 18877 5825 10430 2622 64.9 MiB 0.11 0.00 4.51361 3.87558 -128.529 -3.87558 3.87558 0.23 0.000369261 0.000339114 0.0340034 0.0311586 -1 -1 -1 -1 32 2017 21 6.64007e+06 514878 554710. 1919.41 1.15 0.184919 0.162569 22834 132086 -1 1849 21 1444 2355 125874 31664 2.77177 2.77177 -110.96 -2.77177 0 0 701300. 2426.64 0.03 0.04 0.07 -1 -1 0.03 0.0176566 0.0158237 150 65 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_037.v common 2.42 vpr 64.50 MiB -1 -1 0.13 18440 1 0.03 -1 -1 29780 -1 -1 23 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66052 31 32 279 237 1 161 86 17 17 289 -1 unnamed_device 24.5 MiB 0.14 2417 918 9536 2320 6465 751 64.5 MiB 0.06 0.00 5.18307 4.35884 -128.706 -4.35884 4.35884 0.24 0.000284721 0.000261675 0.0198292 0.0182771 -1 -1 -1 -1 32 1849 20 6.64007e+06 288834 554710. 1919.41 0.90 0.111762 0.0974411 22834 132086 -1 1689 20 806 1172 74453 17829 3.22283 3.22283 -115.365 -3.22283 0 0 701300. 2426.64 0.03 0.03 0.07 -1 -1 0.03 0.0134962 0.0120415 114 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_038.v common 1.89 vpr 64.34 MiB -1 -1 0.13 18052 1 0.04 -1 -1 29788 -1 -1 29 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65884 31 32 370 297 1 186 92 17 17 289 -1 unnamed_device 24.9 MiB 0.07 2217 1122 16238 4882 9322 2034 64.3 MiB 0.09 0.00 4.8385 3.9971 -121.388 -3.9971 3.9971 0.23 0.000336917 0.000307579 0.0286334 0.0261744 -1 -1 -1 -1 32 2344 20 6.64007e+06 364182 554710. 1919.41 0.36 0.0728185 0.0646739 22834 132086 -1 2088 23 1449 2642 147498 35841 3.12137 3.12137 -116.821 -3.12137 0 0 701300. 2426.64 0.03 0.05 0.10 -1 -1 0.03 0.0194932 0.0173853 145 61 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_039.v common 2.22 vpr 64.95 MiB -1 -1 0.15 18052 1 0.03 -1 -1 29756 -1 -1 36 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66504 31 32 377 302 1 233 99 17 17 289 -1 unnamed_device 25.2 MiB 0.24 2995 1421 19707 5440 12139 2128 64.9 MiB 0.11 0.00 7.81519 5.67793 -171.305 -5.67793 5.67793 0.23 0.000346066 0.000316676 0.0325169 0.0297691 -1 -1 -1 -1 28 3277 23 6.64007e+06 452088 500653. 1732.36 0.61 0.104355 0.0932129 21970 115934 -1 2581 21 1555 2326 136329 33259 4.52274 4.52274 -159.537 -4.52274 0 0 612192. 2118.31 0.02 0.05 0.06 -1 -1 0.02 0.018193 0.0163931 178 64 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_040.v common 2.73 vpr 64.90 MiB -1 -1 0.24 18056 1 0.03 -1 -1 29784 -1 -1 32 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66456 31 32 383 305 1 209 95 17 17 289 -1 unnamed_device 25.2 MiB 0.20 2681 1319 14999 4569 8381 2049 64.9 MiB 0.09 0.00 6.40882 5.22399 -160.729 -5.22399 5.22399 0.25 0.000373524 0.000343579 0.0331096 0.0307403 -1 -1 -1 -1 32 2679 17 6.64007e+06 401856 554710. 1919.41 0.96 0.122984 0.109251 22834 132086 -1 2354 19 1056 1619 130226 28911 4.31108 4.31108 -149.075 -4.31108 0 0 701300. 2426.64 0.03 0.06 0.07 -1 -1 0.03 0.0237688 0.0214486 167 64 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_041.v common 2.39 vpr 64.77 MiB -1 -1 0.12 18052 1 0.03 -1 -1 30124 -1 -1 37 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66328 31 32 352 285 1 184 100 17 17 289 -1 unnamed_device 25.2 MiB 0.08 2150 1128 15412 3921 9377 2114 64.8 MiB 0.08 0.00 5.33427 4.63507 -135.372 -4.63507 4.63507 0.23 0.000329383 0.000301672 0.0241206 0.0220879 -1 -1 -1 -1 30 2296 22 6.64007e+06 464646 526063. 1820.29 0.94 0.132554 0.115834 22546 126617 -1 2016 22 1100 1926 104277 24750 3.19762 3.19762 -115.815 -3.19762 0 0 666494. 2306.21 0.03 0.04 0.07 -1 -1 0.03 0.0177833 0.0158452 140 55 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_042.v common 2.60 vpr 64.61 MiB -1 -1 0.11 18056 1 0.03 -1 -1 30148 -1 -1 27 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66156 32 32 291 242 1 179 91 17 17 289 -1 unnamed_device 24.5 MiB 0.19 2447 1083 8863 2197 6096 570 64.6 MiB 0.05 0.00 5.56996 4.45012 -118.426 -4.45012 4.45012 0.25 0.000299359 0.000274949 0.0144886 0.0132926 -1 -1 -1 -1 32 2169 21 6.64007e+06 339066 554710. 1919.41 0.92 0.11342 0.0992661 22834 132086 -1 1944 22 951 1417 84928 20855 3.51243 3.51243 -111.872 -3.51243 0 0 701300. 2426.64 0.03 0.03 0.07 -1 -1 0.03 0.0149971 0.0133682 124 27 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_043.v common 2.52 vpr 65.09 MiB -1 -1 0.13 17668 1 0.03 -1 -1 29868 -1 -1 43 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66656 32 32 457 356 1 223 107 17 17 289 -1 unnamed_device 25.2 MiB 0.10 3200 1325 22371 6342 13589 2440 65.1 MiB 0.14 0.00 6.26139 5.1195 -164.675 -5.1195 5.1195 0.23 0.0004489 0.000412219 0.0433974 0.0398984 -1 -1 -1 -1 28 3170 21 6.64007e+06 539994 500653. 1732.36 1.01 0.166744 0.147094 21970 115934 -1 2626 19 1703 2722 167391 39031 4.00549 4.00549 -146.496 -4.00549 0 0 612192. 2118.31 0.02 0.06 0.06 -1 -1 0.02 0.0228447 0.0204446 176 87 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_044.v common 1.70 vpr 64.06 MiB -1 -1 0.11 17672 1 0.02 -1 -1 29676 -1 -1 23 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65596 31 32 261 225 1 142 86 17 17 289 -1 unnamed_device 24.5 MiB 0.08 2009 855 10481 2942 6568 971 64.1 MiB 0.06 0.00 4.5869 3.77367 -103.344 -3.77367 3.77367 0.24 0.000271845 0.000248737 0.0209896 0.0193119 -1 -1 -1 -1 32 1689 18 6.64007e+06 288834 554710. 1919.41 0.32 0.0563517 0.0499083 22834 132086 -1 1523 18 785 1365 80306 19202 2.76057 2.76057 -98.8257 -2.76057 0 0 701300. 2426.64 0.03 0.03 0.08 -1 -1 0.03 0.0123234 0.0110592 104 28 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_045.v common 1.88 vpr 64.25 MiB -1 -1 0.13 18056 1 0.03 -1 -1 30236 -1 -1 34 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65792 31 32 337 267 1 204 97 17 17 289 -1 unnamed_device 24.7 MiB 0.15 2890 1252 16081 4637 9397 2047 64.2 MiB 0.10 0.00 6.34307 5.14733 -154.615 -5.14733 5.14733 0.24 0.000368948 0.00034104 0.0275732 0.0253414 -1 -1 -1 -1 30 2475 23 6.64007e+06 426972 526063. 1820.29 0.39 0.0714749 0.0637398 22546 126617 -1 2096 16 1084 1657 88851 21305 3.68189 3.68189 -130.335 -3.68189 0 0 666494. 2306.21 0.03 0.03 0.07 -1 -1 0.03 0.0145065 0.0130876 149 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_046.v common 2.98 vpr 64.76 MiB -1 -1 0.12 18056 1 0.03 -1 -1 29612 -1 -1 38 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66316 32 32 349 284 1 182 102 17 17 289 -1 unnamed_device 24.9 MiB 0.06 2675 1103 12240 2946 8556 738 64.8 MiB 0.07 0.00 4.99666 3.95307 -115.476 -3.95307 3.95307 0.24 0.000333577 0.000303121 0.0217054 0.0198476 -1 -1 -1 -1 26 2701 22 6.64007e+06 477204 477104. 1650.88 1.63 0.165153 0.14533 21682 110474 -1 2200 19 1260 2288 139167 34153 3.10737 3.10737 -113.433 -3.10737 0 0 585099. 2024.56 0.02 0.04 0.06 -1 -1 0.02 0.0155087 0.0138955 136 53 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_047.v common 1.77 vpr 64.59 MiB -1 -1 0.12 17672 1 0.03 -1 -1 29776 -1 -1 27 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66136 32 32 291 230 1 168 91 17 17 289 -1 unnamed_device 24.5 MiB 0.04 1813 1148 12127 3848 6621 1658 64.6 MiB 0.07 0.00 4.79356 4.19256 -126.138 -4.19256 4.19256 0.24 0.000295337 0.000269636 0.0215588 0.0198294 -1 -1 -1 -1 32 2151 21 6.64007e+06 339066 554710. 1919.41 0.43 0.0824346 0.0732441 22834 132086 -1 1914 22 904 1746 107845 24237 3.45223 3.45223 -118.392 -3.45223 0 0 701300. 2426.64 0.03 0.04 0.07 -1 -1 0.03 0.015861 0.0141677 127 3 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_048.v common 2.07 vpr 64.82 MiB -1 -1 0.14 18052 1 0.03 -1 -1 30168 -1 -1 31 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66380 32 32 353 287 1 198 95 17 17 289 -1 unnamed_device 25.2 MiB 0.16 2414 1205 15647 4038 9814 1795 64.8 MiB 0.11 0.00 5.52647 4.90352 -143.647 -4.90352 4.90352 0.25 0.0008019 0.000745825 0.0364362 0.033814 -1 -1 -1 -1 28 2686 18 6.64007e+06 389298 500653. 1732.36 0.39 0.0847936 0.0764764 21970 115934 -1 2410 18 1295 1758 111267 27132 3.30283 3.30283 -125.331 -3.30283 0 0 612192. 2118.31 0.02 0.07 0.10 -1 -1 0.02 0.02999 0.026759 142 55 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_049.v common 2.65 vpr 64.80 MiB -1 -1 0.12 18052 1 0.03 -1 -1 29828 -1 -1 39 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66356 32 32 361 291 1 185 103 17 17 289 -1 unnamed_device 24.9 MiB 0.08 2461 1024 18178 5514 9376 3288 64.8 MiB 0.09 0.00 4.3595 3.73184 -117.882 -3.73184 3.73184 0.23 0.000342503 0.000313459 0.0274297 0.0250706 -1 -1 -1 -1 28 2934 24 6.64007e+06 489762 500653. 1732.36 1.24 0.134412 0.118217 21970 115934 -1 2157 20 1301 2160 149192 38424 3.16237 3.16237 -119.152 -3.16237 0 0 612192. 2118.31 0.02 0.05 0.06 -1 -1 0.02 0.0170942 0.0152499 139 55 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_050.v common 2.02 vpr 64.38 MiB -1 -1 0.12 18056 1 0.03 -1 -1 30240 -1 -1 40 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65920 32 32 382 305 1 192 104 17 17 289 -1 unnamed_device 24.9 MiB 0.10 2721 1115 21088 6199 11891 2998 64.4 MiB 0.14 0.00 5.01327 4.29207 -130.428 -4.29207 4.29207 0.25 0.000354017 0.000323912 0.0461859 0.0427932 -1 -1 -1 -1 28 2739 18 6.64007e+06 502320 500653. 1732.36 0.52 0.101778 0.0916839 21970 115934 -1 2203 21 1389 2324 157732 36229 3.12137 3.12137 -119.153 -3.12137 0 0 612192. 2118.31 0.02 0.05 0.06 -1 -1 0.02 0.0176308 0.0157409 149 62 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_051.v common 3.47 vpr 64.60 MiB -1 -1 0.18 17672 1 0.03 -1 -1 30132 -1 -1 36 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66148 32 32 306 248 1 166 100 17 17 289 -1 unnamed_device 25.2 MiB 0.06 1947 873 16108 4476 7806 3826 64.6 MiB 0.07 0.00 4.78256 4.34576 -121.313 -4.34576 4.34576 0.23 0.000306518 0.000280534 0.0227357 0.0207675 -1 -1 -1 -1 30 2090 25 6.64007e+06 452088 526063. 1820.29 1.86 0.113549 0.0993707 22546 126617 -1 1553 21 1051 1873 98927 27703 4.05503 4.05503 -119.589 -4.05503 0 0 666494. 2306.21 0.03 0.04 0.07 -1 -1 0.03 0.0151484 0.0135515 127 24 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_052.v common 1.86 vpr 64.32 MiB -1 -1 0.12 18060 1 0.03 -1 -1 29572 -1 -1 28 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65860 32 32 319 257 1 198 92 17 17 289 -1 unnamed_device 24.9 MiB 0.15 2350 1149 11684 3237 7258 1189 64.3 MiB 0.07 0.00 6.11266 5.05904 -138.884 -5.05904 5.05904 0.23 0.000310168 0.000284344 0.0194827 0.0178456 -1 -1 -1 -1 32 2297 18 6.64007e+06 351624 554710. 1919.41 0.33 0.0597045 0.0529702 22834 132086 -1 2103 18 1068 1607 98345 23408 3.70662 3.70662 -126.282 -3.70662 0 0 701300. 2426.64 0.03 0.04 0.08 -1 -1 0.03 0.0145917 0.0131743 137 29 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_053.v common 1.83 vpr 64.86 MiB -1 -1 0.13 18052 1 0.03 -1 -1 30156 -1 -1 30 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66412 31 32 373 299 1 205 93 17 17 289 -1 unnamed_device 24.9 MiB 0.14 2921 1233 9543 2186 6591 766 64.9 MiB 0.07 0.00 6.45652 5.2717 -153.789 -5.2717 5.2717 0.23 0.000341115 0.000312552 0.0185871 0.0170812 -1 -1 -1 -1 28 2872 24 6.64007e+06 376740 500653. 1732.36 0.39 0.0660029 0.0583999 21970 115934 -1 2431 24 1612 2594 167132 39590 4.02948 4.02948 -138.297 -4.02948 0 0 612192. 2118.31 0.02 0.05 0.06 -1 -1 0.02 0.0191265 0.0170798 151 62 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_054.v common 2.47 vpr 64.84 MiB -1 -1 0.13 18048 1 0.03 -1 -1 30132 -1 -1 25 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66396 32 32 387 315 1 189 89 17 17 289 -1 unnamed_device 24.9 MiB 0.09 2687 1076 16523 6080 8261 2182 64.8 MiB 0.10 0.00 5.30485 4.45447 -137.456 -4.45447 4.45447 0.23 0.000353272 0.000322898 0.0342221 0.0314022 -1 -1 -1 -1 32 2442 17 6.64007e+06 313950 554710. 1919.41 0.97 0.128817 0.11348 22834 132086 -1 2010 18 1272 2259 134813 32070 3.47843 3.47843 -125.006 -3.47843 0 0 701300. 2426.64 0.03 0.04 0.08 -1 -1 0.03 0.0187106 0.0168733 141 77 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_055.v common 1.60 vpr 64.16 MiB -1 -1 0.12 17672 1 0.02 -1 -1 29792 -1 -1 27 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65696 32 32 251 219 1 140 91 17 17 289 -1 unnamed_device 24.5 MiB 0.03 1818 889 8659 1974 6034 651 64.2 MiB 0.05 0.00 3.7947 3.57147 -104.095 -3.57147 3.57147 0.23 0.000261867 0.000239075 0.0134388 0.0123337 -1 -1 -1 -1 28 1905 21 6.64007e+06 339066 500653. 1732.36 0.33 0.0523148 0.0459728 21970 115934 -1 1631 21 853 1375 86391 21527 2.77477 2.77477 -97.2385 -2.77477 0 0 612192. 2118.31 0.02 0.03 0.07 -1 -1 0.02 0.0138134 0.0123514 101 23 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_056.v common 2.59 vpr 64.23 MiB -1 -1 0.12 18436 1 0.03 -1 -1 29420 -1 -1 27 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65768 32 32 341 285 1 189 91 17 17 289 -1 unnamed_device 24.9 MiB 0.18 2440 999 7231 1434 5468 329 64.2 MiB 0.06 0.00 5.00545 4.0787 -137.534 -4.0787 4.0787 0.25 0.000462463 0.000411606 0.0167471 0.0154013 -1 -1 -1 -1 26 2717 42 6.64007e+06 339066 477104. 1650.88 1.09 0.111643 0.0977058 21682 110474 -1 2232 21 1443 2087 144175 36536 3.38903 3.38903 -135.561 -3.38903 0 0 585099. 2024.56 0.02 0.04 0.06 -1 -1 0.02 0.0161341 0.0143439 133 65 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_057.v common 1.94 vpr 64.99 MiB -1 -1 0.12 18676 1 0.03 -1 -1 30196 -1 -1 34 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66548 32 32 387 293 1 234 98 17 17 289 -1 unnamed_device 25.2 MiB 0.16 2841 1439 17873 5142 10318 2413 65.0 MiB 0.11 0.00 6.57692 5.56526 -164.086 -5.56526 5.56526 0.24 0.000362134 0.000331955 0.0320601 0.0294007 -1 -1 -1 -1 32 2821 20 6.64007e+06 426972 554710. 1919.41 0.38 0.0829831 0.0739859 22834 132086 -1 2555 20 1454 2329 127947 31765 4.32308 4.32308 -149.736 -4.32308 0 0 701300. 2426.64 0.03 0.05 0.07 -1 -1 0.03 0.0193231 0.0173864 174 31 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_058.v common 2.28 vpr 64.72 MiB -1 -1 0.12 18056 1 0.03 -1 -1 29928 -1 -1 38 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66276 32 32 340 270 1 181 102 17 17 289 -1 unnamed_device 24.9 MiB 0.06 2567 1021 10336 2399 7366 571 64.7 MiB 0.06 0.00 5.11912 4.26806 -134.06 -4.26806 4.26806 0.23 0.000334349 0.000304198 0.0160871 0.0147197 -1 -1 -1 -1 30 2164 19 6.64007e+06 477204 526063. 1820.29 0.92 0.113507 0.0996864 22546 126617 -1 1765 18 985 1626 87746 21380 2.84497 2.84497 -113.29 -2.84497 0 0 666494. 2306.21 0.03 0.03 0.07 -1 -1 0.03 0.0148181 0.0133477 141 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_059.v common 1.72 vpr 64.52 MiB -1 -1 0.18 17672 1 0.02 -1 -1 30240 -1 -1 33 30 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66064 30 32 278 235 1 148 95 17 17 289 -1 unnamed_device 24.5 MiB 0.03 2182 743 10679 2942 6832 905 64.5 MiB 0.05 0.00 4.2965 3.52427 -104.21 -3.52427 3.52427 0.25 0.000284469 0.000260517 0.0152668 0.0139714 -1 -1 -1 -1 32 1599 16 6.64007e+06 414414 554710. 1919.41 0.31 0.0492061 0.0433694 22834 132086 -1 1397 17 644 1197 65700 16378 2.71257 2.71257 -96.443 -2.71257 0 0 701300. 2426.64 0.03 0.03 0.08 -1 -1 0.03 0.0125154 0.0112655 111 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_060.v common 3.00 vpr 65.11 MiB -1 -1 0.18 18440 1 0.03 -1 -1 29996 -1 -1 31 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66676 32 32 431 332 1 235 95 17 17 289 -1 unnamed_device 25.6 MiB 0.20 2995 1451 16943 5312 9314 2317 65.1 MiB 0.14 0.00 7.55549 6.37067 -184.872 -6.37067 6.37067 0.25 0.000439913 0.000406748 0.0454496 0.0419737 -1 -1 -1 -1 32 3012 21 6.64007e+06 389298 554710. 1919.41 1.27 0.189098 0.167098 22834 132086 -1 2523 19 1586 2324 142907 33660 5.14455 5.14455 -172.168 -5.14455 0 0 701300. 2426.64 0.03 0.05 0.08 -1 -1 0.03 0.0191733 0.0172741 177 65 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_061.v common 2.58 vpr 64.71 MiB -1 -1 0.11 18056 1 0.03 -1 -1 30356 -1 -1 38 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66268 32 32 336 268 1 174 102 17 17 289 -1 unnamed_device 24.9 MiB 0.06 1956 1035 13668 3578 8233 1857 64.7 MiB 0.08 0.00 5.19907 4.58683 -138.182 -4.58683 4.58683 0.24 0.000338718 0.000311084 0.0250615 0.0230519 -1 -1 -1 -1 28 2405 23 6.64007e+06 477204 500653. 1732.36 1.17 0.125233 0.110063 21970 115934 -1 2035 19 1349 2237 141237 33242 3.66243 3.66243 -129.496 -3.66243 0 0 612192. 2118.31 0.02 0.04 0.06 -1 -1 0.02 0.0159444 0.0143778 136 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_062.v common 2.01 vpr 64.10 MiB -1 -1 0.10 17672 1 0.02 -1 -1 29932 -1 -1 27 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65640 32 32 231 199 1 140 91 17 17 289 -1 unnamed_device 24.5 MiB 0.03 1906 764 9067 2085 6178 804 64.1 MiB 0.05 0.00 4.2445 3.5653 -97.5026 -3.5653 3.5653 0.23 0.000250471 0.000229596 0.0128699 0.011824 -1 -1 -1 -1 26 1747 20 6.64007e+06 339066 477104. 1650.88 0.78 0.0916771 0.079558 21682 110474 -1 1553 18 736 1243 69356 18200 3.03517 3.03517 -99.0581 -3.03517 0 0 585099. 2024.56 0.02 0.03 0.06 -1 -1 0.02 0.0114051 0.0102012 103 3 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_063.v common 2.25 vpr 64.42 MiB -1 -1 0.11 17912 1 0.03 -1 -1 29820 -1 -1 40 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65968 32 32 349 273 1 191 104 17 17 289 -1 unnamed_device 24.9 MiB 0.06 2540 1175 11816 2954 8205 657 64.4 MiB 0.07 0.00 6.69892 5.65147 -139.258 -5.65147 5.65147 0.23 0.000343487 0.000315207 0.018729 0.0171086 -1 -1 -1 -1 28 2581 21 6.64007e+06 502320 500653. 1732.36 0.91 0.119022 0.104048 21970 115934 -1 2231 19 1018 2155 132770 30621 4.27588 4.27588 -130.562 -4.27588 0 0 612192. 2118.31 0.02 0.04 0.06 -1 -1 0.02 0.0157386 0.0141662 147 29 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_064.v common 2.20 vpr 64.39 MiB -1 -1 0.11 17668 1 0.03 -1 -1 29800 -1 -1 23 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65936 32 32 247 207 1 147 87 17 17 289 -1 unnamed_device 24.5 MiB 0.03 2164 893 10263 2683 6663 917 64.4 MiB 0.06 0.00 4.3277 3.5273 -108.396 -3.5273 3.5273 0.24 0.000311698 0.000287949 0.0177608 0.0162611 -1 -1 -1 -1 32 1749 18 6.64007e+06 288834 554710. 1919.41 0.91 0.101392 0.0881871 22834 132086 -1 1533 20 784 1238 71387 17120 2.77177 2.77177 -103.397 -2.77177 0 0 701300. 2426.64 0.03 0.03 0.08 -1 -1 0.03 0.0129162 0.0115158 107 3 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_065.v common 1.81 vpr 64.39 MiB -1 -1 0.13 17908 1 0.03 -1 -1 29836 -1 -1 38 30 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65940 30 32 278 235 1 147 100 17 17 289 -1 unnamed_device 24.5 MiB 0.06 2117 911 17732 5400 9784 2548 64.4 MiB 0.08 0.00 5.13641 4.09995 -112.419 -4.09995 4.09995 0.28 0.000286035 0.000255044 0.0231712 0.0210843 -1 -1 -1 -1 28 1992 21 6.64007e+06 477204 500653. 1732.36 0.38 0.0635272 0.0563098 21970 115934 -1 1710 18 975 1883 102536 25450 2.74837 2.74837 -101.654 -2.74837 0 0 612192. 2118.31 0.02 0.03 0.07 -1 -1 0.02 0.0128309 0.0114514 110 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_066.v common 2.43 vpr 64.82 MiB -1 -1 0.12 18060 1 0.03 -1 -1 29760 -1 -1 30 29 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66372 29 32 355 287 1 198 91 17 17 289 -1 unnamed_device 24.9 MiB 0.13 2698 1076 9679 2548 6094 1037 64.8 MiB 0.06 0.00 5.53367 4.61203 -130.625 -4.61203 4.61203 0.23 0.000338658 0.000311571 0.0192196 0.0176251 -1 -1 -1 -1 32 2459 22 6.64007e+06 376740 554710. 1919.41 0.99 0.129037 0.112919 22834 132086 -1 2073 18 1299 1977 111378 28075 3.37503 3.37503 -116.489 -3.37503 0 0 701300. 2426.64 0.03 0.04 0.07 -1 -1 0.03 0.0154722 0.0139398 146 62 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_067.v common 1.96 vpr 64.73 MiB -1 -1 0.14 18056 1 0.03 -1 -1 29784 -1 -1 27 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66288 32 32 358 289 1 175 91 17 17 289 -1 unnamed_device 24.9 MiB 0.06 1949 947 7639 1677 5525 437 64.7 MiB 0.05 0.00 5.24456 4.53352 -139.004 -4.53352 4.53352 0.25 0.000332698 0.00030496 0.0143265 0.0131711 -1 -1 -1 -1 32 2009 19 6.64007e+06 339066 554710. 1919.41 0.49 0.0942014 0.0834076 22834 132086 -1 1774 21 1241 1905 118138 28466 3.74782 3.74782 -129.815 -3.74782 0 0 701300. 2426.64 0.03 0.05 0.08 -1 -1 0.03 0.0215813 0.0193967 135 54 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_068.v common 1.84 vpr 64.76 MiB -1 -1 0.11 18060 1 0.03 -1 -1 29752 -1 -1 34 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66316 32 32 353 285 1 181 98 17 17 289 -1 unnamed_device 25.2 MiB 0.13 2440 1011 14498 3923 8676 1899 64.8 MiB 0.08 0.00 5.77607 4.82681 -139.307 -4.82681 4.82681 0.23 0.000370343 0.000327299 0.0234924 0.0214514 -1 -1 -1 -1 32 2255 19 6.64007e+06 426972 554710. 1919.41 0.34 0.0668056 0.0594183 22834 132086 -1 1902 18 994 1738 88852 22474 4.06723 4.06723 -132.101 -4.06723 0 0 701300. 2426.64 0.03 0.03 0.07 -1 -1 0.03 0.0149293 0.013428 136 51 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_069.v common 2.78 vpr 64.15 MiB -1 -1 0.11 18056 1 0.03 -1 -1 29784 -1 -1 22 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65692 32 32 276 237 1 160 86 17 17 289 -1 unnamed_device 24.5 MiB 0.22 1928 770 5189 970 3673 546 64.2 MiB 0.03 0.00 5.21395 4.75032 -127.226 -4.75032 4.75032 0.24 0.000282943 0.000258953 0.0093242 0.0085679 -1 -1 -1 -1 28 2312 21 6.64007e+06 276276 500653. 1732.36 1.22 0.102145 0.0888686 21970 115934 -1 1617 18 803 1095 74187 19482 3.17683 3.17683 -111.986 -3.17683 0 0 612192. 2118.31 0.02 0.03 0.07 -1 -1 0.02 0.0160528 0.0144005 107 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_070.v common 2.48 vpr 64.59 MiB -1 -1 0.12 18292 1 0.03 -1 -1 30320 -1 -1 23 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66144 31 32 319 272 1 169 86 17 17 289 -1 unnamed_device 25.1 MiB 0.12 2149 981 13694 3750 8080 1864 64.6 MiB 0.07 0.00 4.95096 4.00653 -127.945 -4.00653 4.00653 0.23 0.000296843 0.000271587 0.0257813 0.023674 -1 -1 -1 -1 32 1939 22 6.64007e+06 288834 554710. 1919.41 0.92 0.12807 0.111978 22834 132086 -1 1753 19 1043 1582 90723 22601 3.22583 3.22583 -119.839 -3.22583 0 0 701300. 2426.64 0.03 0.03 0.13 -1 -1 0.03 0.0144012 0.0128713 116 64 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_071.v common 2.22 vpr 64.55 MiB -1 -1 0.12 18060 1 0.03 -1 -1 30116 -1 -1 36 30 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66100 30 32 329 273 1 166 98 17 17 289 -1 unnamed_device 24.9 MiB 0.06 2322 929 9548 2022 6797 729 64.6 MiB 0.05 0.00 4.3867 3.5433 -97.7345 -3.5433 3.5433 0.23 0.000315462 0.000287317 0.0152887 0.0139914 -1 -1 -1 -1 32 1970 20 6.64007e+06 452088 554710. 1919.41 0.89 0.111736 0.0971106 22834 132086 -1 1630 17 815 1410 71619 17962 2.64857 2.64857 -94.6457 -2.64857 0 0 701300. 2426.64 0.03 0.03 0.08 -1 -1 0.03 0.0141874 0.0127433 128 57 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_072.v common 2.61 vpr 64.55 MiB -1 -1 0.12 17672 1 0.02 -1 -1 29804 -1 -1 39 28 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66096 28 32 277 229 1 155 99 17 17 289 -1 unnamed_device 24.5 MiB 0.05 1932 905 16515 4803 9135 2577 64.5 MiB 0.12 0.00 5.16736 4.19576 -104.869 -4.19576 4.19576 0.25 0.000632614 0.000587453 0.0403436 0.0370875 -1 -1 -1 -1 26 2022 22 6.64007e+06 489762 477104. 1650.88 1.09 0.130341 0.115208 21682 110474 -1 1822 20 1097 2083 117673 28230 3.55243 3.55243 -105.89 -3.55243 0 0 585099. 2024.56 0.02 0.05 0.06 -1 -1 0.02 0.0187176 0.0166672 122 27 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_073.v common 1.68 vpr 64.55 MiB -1 -1 0.13 18056 1 0.03 -1 -1 29788 -1 -1 21 30 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66096 30 32 317 269 1 152 83 17 17 289 -1 unnamed_device 24.5 MiB 0.07 1992 820 8003 2033 5428 542 64.5 MiB 0.05 0.00 4.60481 3.90078 -115.378 -3.90078 3.90078 0.23 0.000302657 0.000277024 0.0153228 0.0140736 -1 -1 -1 -1 32 1752 22 6.64007e+06 263718 554710. 1919.41 0.34 0.0557821 0.0493271 22834 132086 -1 1562 19 1039 1837 109271 27109 2.78277 2.78277 -104.529 -2.78277 0 0 701300. 2426.64 0.03 0.04 0.07 -1 -1 0.03 0.0140966 0.0125822 115 63 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_074.v common 2.41 vpr 64.68 MiB -1 -1 0.17 18052 1 0.03 -1 -1 29816 -1 -1 26 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66236 32 32 335 282 1 184 90 17 17 289 -1 unnamed_device 24.9 MiB 0.13 2267 1041 7728 1594 5511 623 64.7 MiB 0.05 0.00 4.51839 3.97836 -130.923 -3.97836 3.97836 0.23 0.000320385 0.000287586 0.0151298 0.0139414 -1 -1 -1 -1 28 2450 20 6.64007e+06 326508 500653. 1732.36 0.96 0.121822 0.106713 21970 115934 -1 2048 20 1250 1844 127691 29643 3.29503 3.29503 -126.978 -3.29503 0 0 612192. 2118.31 0.02 0.04 0.06 -1 -1 0.02 0.0153238 0.0137008 127 65 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_075.v common 2.43 vpr 64.59 MiB -1 -1 0.11 17668 1 0.03 -1 -1 29920 -1 -1 37 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66136 31 32 293 230 1 175 100 17 17 289 -1 unnamed_device 24.9 MiB 0.04 2060 1087 14716 3609 8495 2612 64.6 MiB 0.08 0.00 5.23607 4.60801 -131.451 -4.60801 4.60801 0.24 0.000305422 0.000279931 0.0231359 0.0211931 -1 -1 -1 -1 30 2215 19 6.64007e+06 464646 526063. 1820.29 1.06 0.136734 0.120549 22546 126617 -1 1958 23 1056 1969 119309 26451 3.47322 3.47322 -117.132 -3.47322 0 0 666494. 2306.21 0.03 0.04 0.07 -1 -1 0.03 0.0158791 0.0141618 134 4 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_076.v common 1.92 vpr 64.80 MiB -1 -1 0.13 18440 1 0.03 -1 -1 29936 -1 -1 29 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66360 32 32 350 275 1 209 93 17 17 289 -1 unnamed_device 25.0 MiB 0.15 2681 1037 9753 2581 5955 1217 64.8 MiB 0.07 0.00 6.01073 5.18024 -156.404 -5.18024 5.18024 0.24 0.000336837 0.000308978 0.0215031 0.0199073 -1 -1 -1 -1 32 2480 23 6.64007e+06 364182 554710. 1919.41 0.42 0.0729427 0.0649708 22834 132086 -1 2043 17 1212 1843 105388 26002 4.27189 4.27189 -143.17 -4.27189 0 0 701300. 2426.64 0.03 0.04 0.08 -1 -1 0.03 0.0155817 0.0140506 151 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_077.v common 2.78 vpr 64.84 MiB -1 -1 0.16 18052 1 0.03 -1 -1 29820 -1 -1 37 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66396 32 32 385 308 1 182 101 17 17 289 -1 unnamed_device 24.9 MiB 0.07 2633 929 18196 5476 8417 4303 64.8 MiB 0.08 0.00 5.68167 4.5876 -139.046 -4.5876 4.5876 0.23 0.000362423 0.000326394 0.0296245 0.0269269 -1 -1 -1 -1 34 2649 32 6.64007e+06 464646 585099. 2024.56 1.32 0.155351 0.136509 23122 138558 -1 1938 22 1357 2352 167798 52522 3.76663 3.76663 -127.254 -3.76663 0 0 742403. 2568.87 0.03 0.05 0.08 -1 -1 0.03 0.0180392 0.0161401 143 65 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_078.v common 2.96 vpr 64.88 MiB -1 -1 0.12 18052 1 0.03 -1 -1 30224 -1 -1 43 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66436 32 32 387 309 1 190 107 17 17 289 -1 unnamed_device 25.2 MiB 0.06 2914 1203 17817 4991 10319 2507 64.9 MiB 0.09 0.00 5.86707 4.47484 -142.898 -4.47484 4.47484 0.23 0.000359612 0.000326009 0.0272184 0.0247497 -1 -1 -1 -1 26 2975 23 6.64007e+06 539994 477104. 1650.88 1.56 0.12861 0.113349 21682 110474 -1 2473 21 1636 3093 192512 45419 3.88183 3.88183 -138.131 -3.88183 0 0 585099. 2024.56 0.02 0.05 0.06 -1 -1 0.02 0.017884 0.0159925 147 65 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_079.v common 1.71 vpr 64.47 MiB -1 -1 0.14 18052 1 0.03 -1 -1 29852 -1 -1 21 30 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66020 30 32 272 232 1 147 83 17 17 289 -1 unnamed_device 24.3 MiB 0.07 1992 827 11963 3673 6023 2267 64.5 MiB 0.06 0.00 4.80601 3.86158 -112.965 -3.86158 3.86158 0.23 0.000449703 0.000425374 0.0237691 0.022019 -1 -1 -1 -1 32 1758 20 6.64007e+06 263718 554710. 1919.41 0.33 0.060739 0.0541405 22834 132086 -1 1584 20 900 1546 91449 21952 2.74357 2.74357 -100.335 -2.74357 0 0 701300. 2426.64 0.03 0.04 0.07 -1 -1 0.03 0.015396 0.0137804 109 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_080.v common 2.41 vpr 64.81 MiB -1 -1 0.13 18052 1 0.03 -1 -1 30148 -1 -1 27 30 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66368 30 32 375 299 1 187 89 17 17 289 -1 unnamed_device 24.9 MiB 0.11 2027 1031 14741 4291 8504 1946 64.8 MiB 0.09 0.00 5.46127 4.75724 -139.41 -4.75724 4.75724 0.25 0.00034081 0.000312004 0.0309057 0.0283983 -1 -1 -1 -1 28 2442 23 6.64007e+06 339066 500653. 1732.36 0.80 0.136583 0.120041 21970 115934 -1 2156 21 1668 2701 170774 41593 4.08103 4.08103 -135.525 -4.08103 0 0 612192. 2118.31 0.04 0.08 0.11 -1 -1 0.04 0.0328061 0.0292899 147 63 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_081.v common 2.69 vpr 64.76 MiB -1 -1 0.12 18056 1 0.03 -1 -1 30236 -1 -1 30 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66316 32 32 340 270 1 200 94 17 17 289 -1 unnamed_device 24.9 MiB 0.15 2563 1179 8401 1845 5726 830 64.8 MiB 0.05 0.00 6.4762 5.43878 -158.127 -5.43878 5.43878 0.24 0.000339119 0.000311131 0.0150216 0.0138245 -1 -1 -1 -1 28 2965 25 6.64007e+06 376740 500653. 1732.36 1.19 0.120148 0.105622 21970 115934 -1 2377 19 1306 2106 150947 36744 4.09669 4.09669 -142.216 -4.09669 0 0 612192. 2118.31 0.04 0.07 0.09 -1 -1 0.04 0.0253964 0.0228129 145 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_082.v common 2.49 vpr 64.77 MiB -1 -1 0.15 17852 1 0.03 -1 -1 30196 -1 -1 35 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66320 31 32 340 275 1 196 98 17 17 289 -1 unnamed_device 24.9 MiB 0.17 2657 1228 12698 3369 8227 1102 64.8 MiB 0.07 0.00 6.49901 5.45438 -153.019 -5.45438 5.45438 0.24 0.000328689 0.000301312 0.0205704 0.0188312 -1 -1 -1 -1 28 2672 21 6.64007e+06 439530 500653. 1732.36 0.93 0.119834 0.105177 21970 115934 -1 2273 20 1393 2173 133451 33025 4.68168 4.68168 -150.535 -4.68168 0 0 612192. 2118.31 0.02 0.05 0.06 -1 -1 0.02 0.018244 0.0164405 152 47 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_083.v common 2.04 vpr 64.82 MiB -1 -1 0.19 17908 1 0.03 -1 -1 30140 -1 -1 38 30 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66380 30 32 377 310 1 177 100 17 17 289 -1 unnamed_device 24.9 MiB 0.13 2368 1088 19124 5773 11033 2318 64.8 MiB 0.10 0.00 5.27727 4.45304 -133.741 -4.45304 4.45304 0.33 0.000340028 0.000311762 0.0308833 0.0282403 -1 -1 -1 -1 32 2027 17 6.64007e+06 477204 554710. 1919.41 0.34 0.0763852 0.0678982 22834 132086 -1 1840 18 828 1458 87897 20192 2.99843 2.99843 -114.489 -2.99843 0 0 701300. 2426.64 0.03 0.03 0.09 -1 -1 0.03 0.0156678 0.0141019 144 83 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_084.v common 2.56 vpr 64.62 MiB -1 -1 0.13 18056 1 0.03 -1 -1 29764 -1 -1 25 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66168 32 32 365 294 1 185 89 17 17 289 -1 unnamed_device 25.2 MiB 0.12 2717 1084 11771 2992 7832 947 64.6 MiB 0.08 0.00 6.07747 5.03001 -142.129 -5.03001 5.03001 0.24 0.000341787 0.000313273 0.0256136 0.0235617 -1 -1 -1 -1 32 2400 18 6.64007e+06 313950 554710. 1919.41 1.03 0.132022 0.115711 22834 132086 -1 2204 17 1217 2211 124731 29809 3.86283 3.86283 -134.875 -3.86283 0 0 701300. 2426.64 0.03 0.04 0.07 -1 -1 0.03 0.0152233 0.0137184 141 57 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_085.v common 1.75 vpr 64.43 MiB -1 -1 0.13 18060 1 0.03 -1 -1 29736 -1 -1 38 29 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65976 29 32 378 310 1 177 99 17 17 289 -1 unnamed_device 24.9 MiB 0.07 2434 959 18567 5802 9719 3046 64.4 MiB 0.10 0.00 5.08141 4.25424 -118.37 -4.25424 4.25424 0.24 0.000348555 0.000319788 0.0336972 0.0310577 -1 -1 -1 -1 32 1868 18 6.64007e+06 477204 554710. 1919.41 0.35 0.0778854 0.0696741 22834 132086 -1 1742 19 1067 1824 102169 25222 2.96197 2.96197 -106.132 -2.96197 0 0 701300. 2426.64 0.03 0.04 0.07 -1 -1 0.03 0.0166391 0.0149238 137 85 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_086.v common 1.62 vpr 64.12 MiB -1 -1 0.12 17672 1 0.02 -1 -1 29928 -1 -1 19 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65656 32 32 243 205 1 139 83 17 17 289 -1 unnamed_device 24.5 MiB 0.03 1776 737 8003 1763 5996 244 64.1 MiB 0.04 0.00 4.47141 3.88758 -112.726 -3.88758 3.88758 0.24 0.000260941 0.000238488 0.0130657 0.0119905 -1 -1 -1 -1 28 1687 18 6.64007e+06 238602 500653. 1732.36 0.33 0.0470139 0.0415744 21970 115934 -1 1415 17 749 1150 66721 17748 2.93797 2.93797 -105.31 -2.93797 0 0 612192. 2118.31 0.02 0.03 0.06 -1 -1 0.02 0.0114493 0.0102428 99 3 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_087.v common 1.96 vpr 64.79 MiB -1 -1 0.13 18052 1 0.03 -1 -1 29772 -1 -1 35 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66344 32 32 373 302 1 176 99 17 17 289 -1 unnamed_device 25.3 MiB 0.11 2455 1051 10131 2558 6985 588 64.8 MiB 0.06 0.00 5.67067 4.66023 -138.505 -4.66023 4.66023 0.23 0.000342724 0.000314219 0.0174902 0.0160199 -1 -1 -1 -1 32 2099 20 6.64007e+06 439530 554710. 1919.41 0.36 0.0663895 0.058967 22834 132086 -1 1859 21 1036 1822 107535 26414 3.73983 3.73983 -129.269 -3.73983 0 0 701300. 2426.64 0.04 0.07 0.12 -1 -1 0.04 0.0301792 0.0272055 135 65 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_088.v common 1.84 vpr 64.88 MiB -1 -1 0.13 17444 1 0.03 -1 -1 30116 -1 -1 25 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66432 32 32 397 314 1 196 89 17 17 289 -1 unnamed_device 24.9 MiB 0.08 2786 978 14939 5098 7315 2526 64.9 MiB 0.09 0.00 5.96407 4.77924 -147.588 -4.77924 4.77924 0.23 0.000358013 0.000327645 0.0296295 0.0271703 -1 -1 -1 -1 32 2301 21 6.64007e+06 313950 554710. 1919.41 0.36 0.0769698 0.0685732 22834 132086 -1 1890 22 1749 2967 165614 41703 3.75843 3.75843 -135.029 -3.75843 0 0 701300. 2426.64 0.03 0.05 0.08 -1 -1 0.03 0.0205468 0.0184283 155 65 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_089.v common 1.73 vpr 64.52 MiB -1 -1 0.13 17672 1 0.03 -1 -1 29784 -1 -1 25 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66068 32 32 269 231 1 170 89 17 17 289 -1 unnamed_device 24.5 MiB 0.14 2060 1019 8999 2097 6268 634 64.5 MiB 0.05 0.00 5.08536 4.17772 -116.047 -4.17772 4.17772 0.23 0.000432787 0.000408561 0.0145659 0.0133905 -1 -1 -1 -1 26 2304 22 6.64007e+06 313950 477104. 1650.88 0.31 0.0518409 0.0456961 21682 110474 -1 1979 15 909 1262 86214 21433 3.35623 3.35623 -114.421 -3.35623 0 0 585099. 2024.56 0.02 0.03 0.06 -1 -1 0.02 0.0116363 0.0104526 117 29 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_090.v common 2.18 vpr 63.69 MiB -1 -1 0.11 17668 1 0.02 -1 -1 30320 -1 -1 23 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65216 31 32 245 205 1 150 86 17 17 289 -1 unnamed_device 23.9 MiB 0.04 2077 870 15017 4767 7797 2453 63.7 MiB 0.07 0.00 4.82101 3.80732 -109.576 -3.80732 3.80732 0.25 0.000256941 0.000235154 0.022651 0.0207191 -1 -1 -1 -1 30 1774 18 6.64007e+06 288834 526063. 1820.29 0.87 0.101667 0.0884464 22546 126617 -1 1499 20 971 1627 84799 20654 2.75457 2.75457 -100.629 -2.75457 0 0 666494. 2306.21 0.03 0.03 0.07 -1 -1 0.03 0.0128585 0.011425 110 4 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_091.v common 3.07 vpr 64.81 MiB -1 -1 0.13 17908 1 0.03 -1 -1 30380 -1 -1 30 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66364 32 32 348 274 1 211 94 17 17 289 -1 unnamed_device 24.9 MiB 0.14 2693 1116 13726 3780 8585 1361 64.8 MiB 0.09 0.00 6.31933 5.03147 -151.742 -5.03147 5.03147 0.26 0.000340195 0.000312031 0.0263611 0.0242555 -1 -1 -1 -1 26 3082 38 6.64007e+06 376740 477104. 1650.88 1.57 0.135113 0.119158 21682 110474 -1 2413 18 1436 1908 121395 30312 4.28008 4.28008 -150.977 -4.28008 0 0 585099. 2024.56 0.02 0.04 0.06 -1 -1 0.02 0.0157398 0.0141925 151 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_092.v common 3.12 vpr 64.84 MiB -1 -1 0.13 18052 1 0.03 -1 -1 29864 -1 -1 37 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66400 32 32 356 289 1 202 101 17 17 289 -1 unnamed_device 24.9 MiB 0.23 2455 1138 17726 5560 9419 2747 64.8 MiB 0.09 0.00 6.43337 5.25633 -153.723 -5.25633 5.25633 0.24 0.00033534 0.000306284 0.0271419 0.0248337 -1 -1 -1 -1 28 2970 26 6.64007e+06 464646 500653. 1732.36 1.21 0.137274 0.12092 21970 115934 -1 2282 20 1151 1899 136719 33457 4.29708 4.29708 -142.574 -4.29708 0 0 612192. 2118.31 0.02 0.05 0.06 -1 -1 0.02 0.0176497 0.0158217 157 56 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_093.v common 2.77 vpr 64.82 MiB -1 -1 0.12 17908 1 0.03 -1 -1 30172 -1 -1 43 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66372 32 32 349 260 1 204 107 17 17 289 -1 unnamed_device 24.9 MiB 0.04 2789 1287 17058 4718 10081 2259 64.8 MiB 0.11 0.00 6.50947 5.53806 -146.188 -5.53806 5.53806 0.34 0.000845223 0.000792687 0.0343809 0.0317838 -1 -1 -1 -1 30 2736 22 6.64007e+06 539994 526063. 1820.29 1.15 0.160837 0.141766 22546 126617 -1 2231 22 1148 2273 135275 29822 4.48228 4.48228 -138.994 -4.48228 0 0 666494. 2306.21 0.04 0.10 0.10 -1 -1 0.04 0.0419782 0.0376554 162 3 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_094.v common 1.72 vpr 64.60 MiB -1 -1 0.13 18052 1 0.03 -1 -1 30204 -1 -1 36 30 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66152 30 32 316 264 1 162 98 17 17 289 -1 unnamed_device 24.9 MiB 0.05 2263 842 16298 4881 8912 2505 64.6 MiB 0.08 0.00 4.4797 3.59647 -102.523 -3.59647 3.59647 0.23 0.000307307 0.000280621 0.0251614 0.0229662 -1 -1 -1 -1 32 1785 20 6.64007e+06 452088 554710. 1919.41 0.34 0.0656727 0.0582729 22834 132086 -1 1466 19 1042 1950 89350 23678 2.76377 2.76377 -94.1745 -2.76377 0 0 701300. 2426.64 0.03 0.04 0.08 -1 -1 0.03 0.0187442 0.0167254 124 52 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_095.v common 2.16 vpr 63.77 MiB -1 -1 0.11 17672 1 0.03 -1 -1 30148 -1 -1 23 27 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65304 27 32 255 219 1 132 82 17 17 289 -1 unnamed_device 24.5 MiB 0.03 1707 787 11296 3601 6010 1685 63.8 MiB 0.05 0.00 4.4859 3.4653 -97.6029 -3.4653 3.4653 0.23 0.000259889 0.000238275 0.0182365 0.0167452 -1 -1 -1 -1 32 1511 19 6.64007e+06 288834 554710. 1919.41 0.87 0.102496 0.0888358 22834 132086 -1 1326 21 866 1379 78231 19198 2.71397 2.71397 -92.9443 -2.71397 0 0 701300. 2426.64 0.03 0.03 0.07 -1 -1 0.03 0.0130114 0.0115292 100 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_096.v common 2.68 vpr 65.09 MiB -1 -1 0.13 18052 1 0.03 -1 -1 30116 -1 -1 34 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66648 32 32 421 327 1 232 98 17 17 289 -1 unnamed_device 25.2 MiB 0.14 3118 1444 14498 4090 9211 1197 65.1 MiB 0.10 0.00 5.55196 4.5101 -140.741 -4.5101 4.5101 0.23 0.000398638 0.000366161 0.0272928 0.0249945 -1 -1 -1 -1 30 3465 22 6.64007e+06 426972 526063. 1820.29 1.05 0.136378 0.119849 22546 126617 -1 2722 21 1607 2624 142172 32764 3.65863 3.65863 -130.646 -3.65863 0 0 666494. 2306.21 0.04 0.06 0.12 -1 -1 0.04 0.0258273 0.0233244 176 65 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_097.v common 2.80 vpr 64.80 MiB -1 -1 0.13 18044 1 0.03 -1 -1 29768 -1 -1 27 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66356 31 32 365 296 1 193 90 17 17 289 -1 unnamed_device 25.2 MiB 0.23 2629 1132 9336 2424 6148 764 64.8 MiB 0.06 0.00 6.80513 5.51727 -161.811 -5.51727 5.51727 0.24 0.000362914 0.000323191 0.0180721 0.016584 -1 -1 -1 -1 28 2466 20 6.64007e+06 339066 500653. 1732.36 1.25 0.174434 0.153503 21970 115934 -1 2101 19 1237 2000 130018 29929 4.16568 4.16568 -143.37 -4.16568 0 0 612192. 2118.31 0.02 0.04 0.06 -1 -1 0.02 0.0161927 0.0145835 151 64 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_098.v common 1.88 vpr 64.64 MiB -1 -1 0.16 18056 1 0.03 -1 -1 30324 -1 -1 23 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66196 32 32 331 280 1 174 87 17 17 289 -1 unnamed_device 24.9 MiB 0.20 2094 1015 14679 4364 8389 1926 64.6 MiB 0.08 0.00 5.09416 4.33009 -141.29 -4.33009 4.33009 0.24 0.000312539 0.000284692 0.0257348 0.0234754 -1 -1 -1 -1 32 1899 18 6.64007e+06 288834 554710. 1919.41 0.32 0.066431 0.0591023 22834 132086 -1 1719 19 831 1221 79113 18762 3.36323 3.36323 -128.856 -3.36323 0 0 701300. 2426.64 0.03 0.03 0.07 -1 -1 0.03 0.0147407 0.0132364 128 65 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_099.v common 2.01 vpr 64.66 MiB -1 -1 0.12 18056 1 0.04 -1 -1 29908 -1 -1 36 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66216 32 32 326 263 1 176 100 17 17 289 -1 unnamed_device 24.7 MiB 0.07 2458 1067 12164 3189 8279 696 64.7 MiB 0.07 0.00 6.37057 5.24988 -134.918 -5.24988 5.24988 0.23 0.000320631 0.000287726 0.018401 0.0167501 -1 -1 -1 -1 26 2581 23 6.64007e+06 452088 477104. 1650.88 0.42 0.0642136 0.0567882 21682 110474 -1 2228 21 1099 1899 121927 29754 3.83082 3.83082 -126.562 -3.83082 0 0 585099. 2024.56 0.02 0.05 0.06 -1 -1 0.02 0.02192 0.0194781 133 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_100.v common 2.30 vpr 64.30 MiB -1 -1 0.14 17892 1 0.03 -1 -1 29868 -1 -1 39 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65848 31 32 373 294 1 196 102 17 17 289 -1 unnamed_device 24.9 MiB 0.07 2316 1109 11050 2358 7802 890 64.3 MiB 0.06 0.00 5.64915 5.02635 -128.904 -5.02635 5.02635 0.24 0.00034588 0.00031657 0.0180672 0.0165722 -1 -1 -1 -1 30 2070 21 6.64007e+06 489762 526063. 1820.29 0.90 0.13078 0.114565 22546 126617 -1 1846 16 918 1501 68384 17532 4.07422 4.07422 -121.604 -4.07422 0 0 666494. 2306.21 0.03 0.03 0.08 -1 -1 0.03 0.0168693 0.0152914 151 50 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_101.v common 2.26 vpr 64.05 MiB -1 -1 0.11 18056 1 0.03 -1 -1 29844 -1 -1 36 30 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65584 30 32 325 268 1 171 98 17 17 289 -1 unnamed_device 24.6 MiB 0.07 2399 1037 15848 4616 8805 2427 64.0 MiB 0.08 0.00 4.4759 3.71089 -106.291 -3.71089 3.71089 0.24 0.000314293 0.000287759 0.0254439 0.0233391 -1 -1 -1 -1 32 2018 20 6.64007e+06 452088 554710. 1919.41 0.89 0.106875 0.0936934 22834 132086 -1 1894 20 997 1743 113167 25894 2.73777 2.73777 -99.0335 -2.73777 0 0 701300. 2426.64 0.03 0.04 0.07 -1 -1 0.03 0.0155864 0.013987 130 51 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_102.v common 2.58 vpr 64.82 MiB -1 -1 0.16 18048 1 0.03 -1 -1 29816 -1 -1 31 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66372 32 32 350 275 1 215 95 17 17 289 -1 unnamed_device 25.2 MiB 0.17 2711 1355 17159 4707 10238 2214 64.8 MiB 0.11 0.00 6.39133 5.42973 -168.16 -5.42973 5.42973 0.24 0.000333297 0.000305473 0.0305336 0.027931 -1 -1 -1 -1 32 2899 17 6.64007e+06 389298 554710. 1919.41 0.97 0.119619 0.104995 22834 132086 -1 2528 21 1636 2593 168950 38601 4.20469 4.20469 -151.273 -4.20469 0 0 701300. 2426.64 0.03 0.05 0.07 -1 -1 0.03 0.017333 0.015535 155 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_103.v common 3.02 vpr 64.88 MiB -1 -1 0.12 18056 1 0.03 -1 -1 29784 -1 -1 42 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66440 32 32 386 307 1 195 106 17 17 289 -1 unnamed_device 24.9 MiB 0.08 2637 1151 20606 6244 9655 4707 64.9 MiB 0.09 0.00 5.13347 4.30924 -132.442 -4.30924 4.30924 0.26 0.000366994 0.000335366 0.0367992 0.0340036 -1 -1 -1 -1 32 2462 42 6.64007e+06 527436 554710. 1919.41 1.55 0.189485 0.167465 22834 132086 -1 1986 17 1183 1864 116056 30310 3.22157 3.22157 -117.993 -3.22157 0 0 701300. 2426.64 0.03 0.04 0.07 -1 -1 0.03 0.0155732 0.014057 151 62 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_104.v common 2.21 vpr 64.13 MiB -1 -1 0.12 18056 1 0.02 -1 -1 29828 -1 -1 19 29 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65672 29 32 269 229 1 129 80 17 17 289 -1 unnamed_device 24.5 MiB 0.03 1582 689 11948 3112 7844 992 64.1 MiB 0.06 0.00 4.48041 4.01678 -109.438 -4.01678 4.01678 0.24 0.000455205 0.000431544 0.0247681 0.0228668 -1 -1 -1 -1 32 1385 20 6.64007e+06 238602 554710. 1919.41 0.86 0.10574 0.0924354 22834 132086 -1 1290 19 791 1195 77092 18865 2.88077 2.88077 -97.6008 -2.88077 0 0 701300. 2426.64 0.03 0.03 0.07 -1 -1 0.03 0.0128196 0.0114748 93 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_105.v common 2.41 vpr 64.59 MiB -1 -1 0.11 18052 1 0.03 -1 -1 29936 -1 -1 26 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66144 32 32 310 266 1 175 90 17 17 289 -1 unnamed_device 24.9 MiB 0.12 2235 1059 15969 4938 9075 1956 64.6 MiB 0.07 0.00 5.20036 4.23876 -128.495 -4.23876 4.23876 0.24 0.000299718 0.000274504 0.0251125 0.0229545 -1 -1 -1 -1 32 2001 23 6.64007e+06 326508 554710. 1919.41 1.01 0.131817 0.114808 22834 132086 -1 1797 18 929 1290 89628 20456 3.08203 3.08203 -115.313 -3.08203 0 0 701300. 2426.64 0.03 0.03 0.07 -1 -1 0.03 0.0136287 0.0122168 123 58 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_106.v common 2.97 vpr 64.70 MiB -1 -1 0.13 18056 1 0.03 -1 -1 29924 -1 -1 43 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66248 31 32 326 261 1 177 106 17 17 289 -1 unnamed_device 24.9 MiB 0.05 2343 905 18606 5361 10083 3162 64.7 MiB 0.09 0.00 5.80407 4.54858 -124.201 -4.54858 4.54858 0.24 0.000312841 0.000285299 0.0289889 0.0265187 -1 -1 -1 -1 28 2713 40 6.64007e+06 539994 500653. 1732.36 1.50 0.168338 0.147939 21970 115934 -1 2157 23 1491 2776 199878 49701 3.88503 3.88503 -124.264 -3.88503 0 0 612192. 2118.31 0.02 0.05 0.06 -1 -1 0.02 0.0168966 0.0150698 138 33 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_107.v common 1.83 vpr 64.50 MiB -1 -1 0.16 17672 1 0.03 -1 -1 29820 -1 -1 26 29 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66044 29 32 262 224 1 168 87 17 17 289 -1 unnamed_device 24.5 MiB 0.14 1937 1016 11799 3172 7074 1553 64.5 MiB 0.06 0.00 4.85327 4.04852 -112.319 -4.04852 4.04852 0.23 0.000270092 0.000247629 0.0179409 0.0164448 -1 -1 -1 -1 26 2153 18 6.64007e+06 326508 477104. 1650.88 0.29 0.0517776 0.0458058 21682 110474 -1 1918 18 889 1186 72681 17751 3.29122 3.29122 -107.623 -3.29122 0 0 585099. 2024.56 0.04 0.06 0.09 -1 -1 0.04 0.0283681 0.0254054 116 31 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_108.v common 2.23 vpr 64.48 MiB -1 -1 0.10 18052 1 0.02 -1 -1 29788 -1 -1 19 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66028 32 32 278 238 1 148 83 17 17 289 -1 unnamed_device 24.9 MiB 0.06 1781 947 10883 2848 6498 1537 64.5 MiB 0.05 0.00 4.52641 4.02095 -125.546 -4.02095 4.02095 0.23 0.00027826 0.000254627 0.0185587 0.0170438 -1 -1 -1 -1 30 1980 22 6.64007e+06 238602 526063. 1820.29 0.93 0.111158 0.096955 22546 126617 -1 1771 19 1115 1979 106566 25643 2.79377 2.79377 -111.145 -2.79377 0 0 666494. 2306.21 0.03 0.03 0.07 -1 -1 0.03 0.0130158 0.0116049 111 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_109.v common 2.54 vpr 64.81 MiB -1 -1 0.15 18056 1 0.03 -1 -1 29768 -1 -1 40 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66368 31 32 373 300 1 181 103 17 17 289 -1 unnamed_device 24.9 MiB 0.06 2560 1034 12876 3096 8656 1124 64.8 MiB 0.07 0.00 4.91801 4.20195 -124.421 -4.20195 4.20195 0.24 0.000360523 0.000329806 0.0257987 0.023957 -1 -1 -1 -1 32 2018 22 6.64007e+06 502320 554710. 1919.41 1.02 0.149989 0.131986 22834 132086 -1 1831 17 1180 1846 100223 25917 2.96877 2.96877 -113.134 -2.96877 0 0 701300. 2426.64 0.03 0.04 0.07 -1 -1 0.03 0.0152364 0.0137279 141 64 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_110.v common 2.41 vpr 64.49 MiB -1 -1 0.11 17672 1 0.03 -1 -1 29848 -1 -1 25 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66040 31 32 265 230 1 163 88 17 17 289 -1 unnamed_device 24.9 MiB 0.10 1957 849 12568 3841 6272 2455 64.5 MiB 0.08 0.00 4.49165 3.90436 -116.108 -3.90436 3.90436 0.25 0.000270822 0.000247709 0.0271462 0.0251465 -1 -1 -1 -1 32 1843 22 6.64007e+06 313950 554710. 1919.41 0.99 0.126567 0.110341 22834 132086 -1 1628 20 997 1467 92295 22084 2.90603 2.90603 -105.107 -2.90603 0 0 701300. 2426.64 0.03 0.03 0.07 -1 -1 0.03 0.0130624 0.0116593 113 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_111.v common 2.19 vpr 64.75 MiB -1 -1 0.13 18056 1 0.03 -1 -1 29776 -1 -1 37 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66304 32 32 349 286 1 171 101 17 17 289 -1 unnamed_device 25.2 MiB 0.07 2312 1072 14671 3700 9355 1616 64.8 MiB 0.07 0.00 4.37944 3.68167 -112.793 -3.68167 3.68167 0.23 0.000328231 0.000299444 0.0224555 0.0205477 -1 -1 -1 -1 26 2288 20 6.64007e+06 464646 477104. 1650.88 0.82 0.108143 0.0950909 21682 110474 -1 1944 21 1079 1949 120319 27849 2.90097 2.90097 -107.811 -2.90097 0 0 585099. 2024.56 0.02 0.04 0.06 -1 -1 0.02 0.0169673 0.0152162 131 57 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_112.v common 1.81 vpr 64.74 MiB -1 -1 0.14 18056 1 0.03 -1 -1 30212 -1 -1 36 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66296 31 32 396 325 1 183 99 17 17 289 -1 unnamed_device 24.7 MiB 0.13 2484 1002 10815 2483 7746 586 64.7 MiB 0.06 0.00 4.7433 4.0221 -125.424 -4.0221 4.0221 0.24 0.000397566 0.000334154 0.0194519 0.0177821 -1 -1 -1 -1 30 2069 23 6.64007e+06 452088 526063. 1820.29 0.35 0.0685942 0.0607519 22546 126617 -1 1876 21 1394 2192 129190 30545 3.12957 3.12957 -117.777 -3.12957 0 0 666494. 2306.21 0.03 0.04 0.07 -1 -1 0.03 0.0174038 0.015566 145 91 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_113.v common 1.76 vpr 64.49 MiB -1 -1 0.11 18052 1 0.03 -1 -1 29744 -1 -1 20 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66040 32 32 303 262 1 150 84 17 17 289 -1 unnamed_device 24.5 MiB 0.06 1814 857 7770 1801 5584 385 64.5 MiB 0.10 0.00 3.8549 3.3869 -105.248 -3.3869 3.3869 0.26 0.000808908 0.000752472 0.036892 0.0342639 -1 -1 -1 -1 30 1717 23 6.64007e+06 251160 526063. 1820.29 0.36 0.0758761 0.0680954 22546 126617 -1 1505 18 707 1177 69640 16846 2.62037 2.62037 -101.98 -2.62037 0 0 666494. 2306.21 0.03 0.03 0.07 -1 -1 0.03 0.0131102 0.0117754 111 57 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_114.v common 1.88 vpr 64.57 MiB -1 -1 0.11 18436 1 0.02 -1 -1 29784 -1 -1 25 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66116 32 32 290 244 1 177 89 17 17 289 -1 unnamed_device 24.5 MiB 0.13 2414 1035 16127 4715 9194 2218 64.6 MiB 0.08 0.00 5.19407 4.38701 -135.203 -4.38701 4.38701 0.30 0.000285817 0.00026167 0.0250029 0.0228938 -1 -1 -1 -1 28 2331 19 6.64007e+06 313950 500653. 1732.36 0.35 0.061641 0.0547906 21970 115934 -1 1998 18 1184 1766 112327 26702 3.18183 3.18183 -121.919 -3.18183 0 0 612192. 2118.31 0.02 0.04 0.06 -1 -1 0.02 0.0156723 0.0140089 123 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_115.v common 2.90 vpr 64.68 MiB -1 -1 0.13 18056 1 0.03 -1 -1 29532 -1 -1 28 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66228 32 32 318 257 1 194 92 17 17 289 -1 unnamed_device 24.9 MiB 0.13 2494 951 15617 4720 8033 2864 64.7 MiB 0.08 0.00 5.8041 4.77338 -128.314 -4.77338 4.77338 0.24 0.000322955 0.000295402 0.0258152 0.0235919 -1 -1 -1 -1 30 2411 22 6.64007e+06 351624 526063. 1820.29 1.43 0.116548 0.102484 22546 126617 -1 1780 20 1025 1564 87363 22048 3.81583 3.81583 -122.51 -3.81583 0 0 666494. 2306.21 0.03 0.03 0.07 -1 -1 0.03 0.0154909 0.0139488 138 30 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_116.v common 2.09 vpr 64.66 MiB -1 -1 0.14 18044 1 0.03 -1 -1 29808 -1 -1 36 29 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66208 29 32 324 268 1 168 97 17 17 289 -1 unnamed_device 24.9 MiB 0.08 2020 1028 6757 1470 4618 669 64.7 MiB 0.04 0.00 4.83347 4.36984 -119.357 -4.36984 4.36984 0.24 0.000308469 0.000282152 0.0111219 0.0102283 -1 -1 -1 -1 26 2136 15 6.64007e+06 452088 477104. 1650.88 0.68 0.0886405 0.0772855 21682 110474 -1 1886 18 837 1482 89240 21546 3.02743 3.02743 -103.989 -3.02743 0 0 585099. 2024.56 0.02 0.03 0.06 -1 -1 0.02 0.0143245 0.0128477 129 55 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_117.v common 2.68 vpr 64.55 MiB -1 -1 0.22 18440 1 0.03 -1 -1 30148 -1 -1 29 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66104 32 32 393 312 1 213 93 17 17 289 -1 unnamed_device 25.2 MiB 0.17 2426 1118 15843 4746 8389 2708 64.6 MiB 0.09 0.00 6.27101 5.72815 -176.849 -5.72815 5.72815 0.24 0.000376256 0.00034593 0.0315166 0.028967 -1 -1 -1 -1 32 2546 19 6.64007e+06 364182 554710. 1919.41 1.03 0.159075 0.140221 22834 132086 -1 2255 20 1391 2068 146331 34168 4.58628 4.58628 -155.397 -4.58628 0 0 701300. 2426.64 0.03 0.04 0.07 -1 -1 0.03 0.0179246 0.0161235 158 65 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_118.v common 2.12 vpr 64.08 MiB -1 -1 0.11 17672 1 0.02 -1 -1 29692 -1 -1 21 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65616 31 32 229 197 1 138 84 17 17 289 -1 unnamed_device 24.3 MiB 0.03 1660 747 7221 1683 5260 278 64.1 MiB 0.04 0.00 3.9861 3.49806 -100.112 -3.49806 3.49806 0.24 0.000247913 0.000227211 0.0112366 0.0103119 -1 -1 -1 -1 30 1664 18 6.64007e+06 263718 526063. 1820.29 0.90 0.0946062 0.0821045 22546 126617 -1 1301 16 550 893 50864 12892 2.64857 2.64857 -91.973 -2.64857 0 0 666494. 2306.21 0.03 0.02 0.07 -1 -1 0.03 0.0106208 0.00956507 100 4 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_119.v common 1.94 vpr 64.96 MiB -1 -1 0.14 18056 1 0.03 -1 -1 29708 -1 -1 37 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66516 32 32 412 334 1 190 101 17 17 289 -1 unnamed_device 25.2 MiB 0.06 2451 1087 18431 5518 10395 2518 65.0 MiB 0.11 0.00 5.50696 4.44233 -144.688 -4.44233 4.44233 0.23 0.00038496 0.000353611 0.0389541 0.0358696 -1 -1 -1 -1 32 2221 20 6.64007e+06 464646 554710. 1919.41 0.39 0.0947235 0.0847517 22834 132086 -1 1905 18 1214 1798 108778 25534 3.75862 3.75862 -135.309 -3.75862 0 0 701300. 2426.64 0.03 0.05 0.07 -1 -1 0.03 0.0201159 0.0182483 146 90 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_120.v common 1.77 vpr 64.17 MiB -1 -1 0.11 18056 1 0.03 -1 -1 29824 -1 -1 18 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65712 32 32 376 318 1 155 82 17 17 289 -1 unnamed_device 24.4 MiB 0.12 1766 955 11830 3130 7536 1164 64.2 MiB 0.06 0.00 4.1133 3.5251 -125.052 -3.5251 3.5251 0.24 0.000330759 0.000302081 0.0243994 0.022357 -1 -1 -1 -1 32 1865 20 6.64007e+06 226044 554710. 1919.41 0.36 0.0677556 0.0602023 22834 132086 -1 1684 21 1128 1645 110610 25795 2.66437 2.66437 -115.654 -2.66437 0 0 701300. 2426.64 0.03 0.04 0.08 -1 -1 0.03 0.0168254 0.0150063 116 96 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_121.v common 2.72 vpr 64.39 MiB -1 -1 0.12 18052 1 0.03 -1 -1 29776 -1 -1 35 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65936 32 32 360 293 1 179 99 17 17 289 -1 unnamed_device 24.5 MiB 0.07 2247 944 17427 4836 9376 3215 64.4 MiB 0.13 0.00 4.122 4.04884 -119.999 -4.04884 4.04884 0.23 0.000618313 0.000568585 0.0416241 0.038231 -1 -1 -1 -1 28 2356 26 6.64007e+06 439530 500653. 1732.36 1.26 0.157839 0.139557 21970 115934 -1 1861 17 982 1579 105965 27943 3.13537 3.13537 -108.58 -3.13537 0 0 612192. 2118.31 0.02 0.04 0.06 -1 -1 0.02 0.015124 0.0136237 134 60 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_122.v common 2.66 vpr 64.63 MiB -1 -1 0.12 18056 1 0.03 -1 -1 29808 -1 -1 33 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66180 32 32 396 299 1 236 97 17 17 289 -1 unnamed_device 25.2 MiB 0.18 3069 1434 11863 3029 7657 1177 64.6 MiB 0.10 0.00 7.74409 6.65703 -196.862 -6.65703 6.65703 0.23 0.000392613 0.000361026 0.02616 0.0242474 -1 -1 -1 -1 30 2977 29 6.64007e+06 414414 526063. 1820.29 1.12 0.168442 0.148951 22546 126617 -1 2525 20 1541 2230 119707 29396 5.29994 5.29994 -175.636 -5.29994 0 0 666494. 2306.21 0.03 0.05 0.07 -1 -1 0.03 0.019447 0.0175604 178 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_123.v common 1.65 vpr 64.08 MiB -1 -1 0.12 17672 1 0.03 -1 -1 30200 -1 -1 23 30 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65616 30 32 224 207 1 138 85 17 17 289 -1 unnamed_device 24.9 MiB 0.10 1779 825 13663 4108 8029 1526 64.1 MiB 0.05 0.00 3.77619 3.29107 -101.735 -3.29107 3.29107 0.23 0.000232903 0.000213388 0.0185332 0.0169707 -1 -1 -1 -1 26 1653 18 6.64007e+06 288834 477104. 1650.88 0.27 0.0489107 0.0432584 21682 110474 -1 1457 16 625 800 52338 13195 2.38617 2.38617 -94.87 -2.38617 0 0 585099. 2024.56 0.02 0.02 0.06 -1 -1 0.02 0.00980788 0.00878496 93 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_124.v common 2.23 vpr 64.48 MiB -1 -1 0.12 18052 1 0.03 -1 -1 30180 -1 -1 19 30 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66032 30 32 286 239 1 134 81 17 17 289 -1 unnamed_device 24.5 MiB 0.03 1551 715 8831 2097 6321 413 64.5 MiB 0.04 0.00 4.64461 4.13192 -117.713 -4.13192 4.13192 0.23 0.000283608 0.000257957 0.0163788 0.0150423 -1 -1 -1 -1 32 1455 18 6.64007e+06 238602 554710. 1919.41 0.87 0.0917998 0.0799261 22834 132086 -1 1299 17 693 1155 74739 18315 2.98597 2.98597 -106.773 -2.98597 0 0 701300. 2426.64 0.03 0.04 0.08 -1 -1 0.03 0.0161838 0.0144625 95 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_125.v common 1.80 vpr 64.14 MiB -1 -1 0.21 17672 1 0.03 -1 -1 29604 -1 -1 23 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65676 32 32 296 247 1 157 87 17 17 289 -1 unnamed_device 24.5 MiB 0.05 2105 944 14103 4753 7503 1847 64.1 MiB 0.07 0.00 4.1763 3.40707 -111.974 -3.40707 3.40707 0.23 0.000441972 0.000415373 0.023287 0.0213172 -1 -1 -1 -1 32 1961 19 6.64007e+06 288834 554710. 1919.41 0.34 0.0611781 0.0542074 22834 132086 -1 1733 21 1059 1936 116096 28016 2.87177 2.87177 -111.073 -2.87177 0 0 701300. 2426.64 0.03 0.04 0.07 -1 -1 0.03 0.0147393 0.0131377 119 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_126.v common 2.33 vpr 64.04 MiB -1 -1 0.10 18056 1 0.02 -1 -1 29888 -1 -1 31 25 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65572 25 32 216 194 1 122 88 17 17 289 -1 unnamed_device 24.9 MiB 0.03 1494 591 13153 4635 5984 2534 64.0 MiB 0.05 0.00 4.0913 3.45027 -80.5708 -3.45027 3.45027 0.25 0.000229 0.00020925 0.0176622 0.0161781 -1 -1 -1 -1 28 1498 20 6.64007e+06 389298 500653. 1732.36 1.02 0.117375 0.102145 21970 115934 -1 1204 20 767 1265 67303 18216 2.69777 2.69777 -76.5165 -2.69777 0 0 612192. 2118.31 0.03 0.03 0.08 -1 -1 0.03 0.0133537 0.0119732 93 29 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_127.v common 2.42 vpr 64.81 MiB -1 -1 0.13 18056 1 0.03 -1 -1 29772 -1 -1 24 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66364 32 32 376 307 1 185 88 17 17 289 -1 unnamed_device 24.9 MiB 0.09 2264 1161 14323 4312 8018 1993 64.8 MiB 0.10 0.00 5.34776 4.34527 -135.212 -4.34527 4.34527 0.25 0.000775451 0.00072278 0.0348073 0.0320495 -1 -1 -1 -1 26 2998 22 6.64007e+06 301392 477104. 1650.88 0.83 0.118776 0.10489 21682 110474 -1 2499 16 1260 2258 137367 32949 3.70982 3.70982 -129.996 -3.70982 0 0 585099. 2024.56 0.04 0.07 0.07 -1 -1 0.04 0.0305887 0.02766 137 72 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_128.v common 3.06 vpr 64.97 MiB -1 -1 0.14 18056 1 0.04 -1 -1 30020 -1 -1 42 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66532 31 32 409 331 1 191 105 17 17 289 -1 unnamed_device 25.6 MiB 0.11 2647 843 12949 3259 8450 1240 65.0 MiB 0.09 0.00 4.62461 4.03784 -124.693 -4.03784 4.03784 0.24 0.000379639 0.000344151 0.0272347 0.0251462 -1 -1 -1 -1 28 2404 29 6.64007e+06 527436 500653. 1732.36 1.36 0.169941 0.15025 21970 115934 -1 1842 19 1533 2462 139710 38054 3.40377 3.40377 -121.42 -3.40377 0 0 612192. 2118.31 0.02 0.05 0.07 -1 -1 0.02 0.0196062 0.0175902 148 90 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_001.v common 3.08 vpr 64.26 MiB -1 -1 0.12 18052 1 0.03 -1 -1 29560 -1 -1 36 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65800 32 32 354 285 1 202 100 17 17 289 -1 unnamed_device 24.5 MiB 0.11 2680 1148 17500 5750 8438 3312 64.3 MiB 0.09 0.00 6.6478 5.42989 -160.249 -5.42989 5.42989 0.24 0.000335393 0.000306568 0.0277456 0.0253704 -1 -1 -1 -1 30 2512 22 6.65987e+06 456408 526063. 1820.29 1.56 0.126519 0.111713 22546 126617 -1 2013 18 1144 1889 100010 26167 4.13851 4.13851 -142.958 -4.13851 0 0 666494. 2306.21 0.03 0.05 0.07 -1 -1 0.03 0.0214642 0.0194976 152 50 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_002.v common 2.48 vpr 64.32 MiB -1 -1 0.15 18056 1 0.03 -1 -1 29772 -1 -1 30 30 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65864 30 32 363 293 1 196 92 17 17 289 -1 unnamed_device 24.9 MiB 0.05 2387 1221 13961 4223 7808 1930 64.3 MiB 0.10 0.00 5.99396 4.81396 -139.964 -4.81396 4.81396 0.25 0.000338399 0.000310271 0.0346576 0.0320334 -1 -1 -1 -1 28 2736 20 6.65987e+06 380340 500653. 1732.36 1.05 0.148244 0.130948 21970 115934 -1 2265 22 1517 2342 156634 37698 4.01363 4.01363 -138.509 -4.01363 0 0 612192. 2118.31 0.02 0.05 0.06 -1 -1 0.02 0.0176982 0.015846 147 63 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_003.v common 1.88 vpr 64.51 MiB -1 -1 0.12 18052 1 0.03 -1 -1 30216 -1 -1 30 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66056 32 32 299 247 1 188 94 17 17 289 -1 unnamed_device 24.5 MiB 0.05 2525 994 9892 2479 6892 521 64.5 MiB 0.06 0.00 5.48484 4.34823 -112.31 -4.34823 4.34823 0.24 0.000492363 0.000456063 0.0191802 0.0176607 -1 -1 -1 -1 26 2792 43 6.65987e+06 380340 477104. 1650.88 0.57 0.0721775 0.0637459 21682 110474 -1 2032 20 1364 1969 121340 31274 3.49631 3.49631 -112.125 -3.49631 0 0 585099. 2024.56 0.02 0.04 0.06 -1 -1 0.02 0.0150753 0.0135285 129 29 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_004.v common 2.22 vpr 64.45 MiB -1 -1 0.15 18056 1 0.03 -1 -1 30124 -1 -1 31 29 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65996 29 32 308 248 1 169 92 17 17 289 -1 unnamed_device 24.7 MiB 0.04 2219 1039 14996 4248 8800 1948 64.4 MiB 0.08 0.00 5.26215 4.26714 -116.661 -4.26714 4.26714 0.24 0.000302092 0.000276833 0.0237687 0.02172 -1 -1 -1 -1 26 2187 23 6.65987e+06 393018 477104. 1650.88 0.82 0.105402 0.0923726 21682 110474 -1 1980 24 1460 2740 181180 44106 3.71485 3.71485 -115.237 -3.71485 0 0 585099. 2024.56 0.02 0.06 0.06 -1 -1 0.02 0.0193045 0.0170988 132 31 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_005.v common 2.42 vpr 64.53 MiB -1 -1 0.11 18292 1 0.03 -1 -1 30208 -1 -1 28 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66076 32 32 336 268 1 174 92 17 17 289 -1 unnamed_device 24.5 MiB 0.04 2401 1053 15203 4130 9477 1596 64.5 MiB 0.08 0.00 5.31844 4.32872 -126.669 -4.32872 4.32872 0.23 0.000320268 0.000292697 0.025632 0.0234395 -1 -1 -1 -1 32 2377 17 6.65987e+06 354984 554710. 1919.41 1.04 0.128557 0.112316 22834 132086 -1 2184 20 1318 2611 177400 41362 3.28085 3.28085 -117.499 -3.28085 0 0 701300. 2426.64 0.03 0.05 0.08 -1 -1 0.03 0.0162517 0.0145872 134 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_006.v common 2.21 vpr 64.70 MiB -1 -1 0.13 18052 1 0.03 -1 -1 29604 -1 -1 39 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66252 32 32 366 295 1 189 103 17 17 289 -1 unnamed_device 25.2 MiB 0.04 2589 1122 12876 3256 8561 1059 64.7 MiB 0.07 0.00 4.08553 3.2871 -114.846 -3.2871 3.2871 0.24 0.000367425 0.000337979 0.0203682 0.018632 -1 -1 -1 -1 26 2486 22 6.65987e+06 494442 477104. 1650.88 0.84 0.116554 0.102469 21682 110474 -1 2096 17 1159 1903 117864 29212 3.03931 3.03931 -115.398 -3.03931 0 0 585099. 2024.56 0.02 0.04 0.06 -1 -1 0.02 0.016059 0.0145175 145 58 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_007.v common 2.22 vpr 64.25 MiB -1 -1 0.11 17668 1 0.02 -1 -1 30136 -1 -1 21 27 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65788 27 32 259 221 1 130 80 17 17 289 -1 unnamed_device 24.5 MiB 0.04 1585 699 13324 5476 6895 953 64.2 MiB 0.06 0.00 4.35015 3.70388 -99.5965 -3.70388 3.70388 0.24 0.000265705 0.000243102 0.0220906 0.0202858 -1 -1 -1 -1 32 1384 19 6.65987e+06 266238 554710. 1919.41 0.86 0.104037 0.0904849 22834 132086 -1 1269 20 872 1519 90801 22733 2.68351 2.68351 -90.0723 -2.68351 0 0 701300. 2426.64 0.03 0.03 0.07 -1 -1 0.03 0.0133136 0.0118923 97 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_008.v common 2.19 vpr 64.39 MiB -1 -1 0.12 17284 1 0.02 -1 -1 29624 -1 -1 35 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65932 31 32 271 219 1 162 98 17 17 289 -1 unnamed_device 24.5 MiB 0.04 2037 1041 15848 4643 9032 2173 64.4 MiB 0.08 0.00 3.96304 3.28184 -98.7666 -3.28184 3.28184 0.23 0.000338791 0.000314774 0.0269531 0.0249084 -1 -1 -1 -1 26 2326 21 6.65987e+06 443730 477104. 1650.88 0.83 0.10049 0.0888051 21682 110474 -1 2048 20 1142 2144 140940 33098 2.61165 2.61165 -95.2482 -2.61165 0 0 585099. 2024.56 0.02 0.04 0.07 -1 -1 0.02 0.0141719 0.012715 123 4 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_009.v common 2.35 vpr 64.45 MiB -1 -1 0.11 18060 1 0.03 -1 -1 29784 -1 -1 25 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66000 31 32 317 271 1 168 88 17 17 289 -1 unnamed_device 24.9 MiB 0.05 2086 993 10423 2723 6384 1316 64.5 MiB 0.07 0.00 3.77724 3.3699 -115.032 -3.3699 3.3699 0.25 0.000671767 0.000645824 0.0231996 0.0214673 -1 -1 -1 -1 32 1809 20 6.65987e+06 316950 554710. 1919.41 0.92 0.127375 0.111058 22834 132086 -1 1615 20 794 1199 70607 17725 2.71311 2.71311 -106.08 -2.71311 0 0 701300. 2426.64 0.03 0.07 0.07 -1 -1 0.03 0.0328717 0.0293078 117 64 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_010.v common 2.60 vpr 64.36 MiB -1 -1 0.19 17660 1 0.03 -1 -1 29748 -1 -1 19 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65904 32 32 298 248 1 156 83 17 17 289 -1 unnamed_device 24.9 MiB 0.07 1795 844 9983 2313 7049 621 64.4 MiB 0.06 0.00 4.44435 3.77949 -122.028 -3.77949 3.77949 0.23 0.000293552 0.000268791 0.0198136 0.0182461 -1 -1 -1 -1 32 1846 16 6.65987e+06 240882 554710. 1919.41 0.94 0.121669 0.106343 22834 132086 -1 1731 18 979 1642 97359 24956 2.64251 2.64251 -108.37 -2.64251 0 0 701300. 2426.64 0.03 0.04 0.08 -1 -1 0.03 0.0139297 0.0125035 115 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_011.v common 1.67 vpr 63.78 MiB -1 -1 0.12 18436 1 0.02 -1 -1 29804 -1 -1 19 30 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65308 30 32 303 262 1 139 81 17 17 289 -1 unnamed_device 23.9 MiB 0.06 1674 802 13206 4528 6671 2007 63.8 MiB 0.06 0.00 4.47555 3.77152 -109.712 -3.77152 3.77152 0.24 0.000293529 0.000268875 0.0245645 0.0225758 -1 -1 -1 -1 32 1549 21 6.65987e+06 240882 554710. 1919.41 0.31 0.0629295 0.0559363 22834 132086 -1 1379 21 624 931 58999 14595 2.67371 2.67371 -95.9888 -2.67371 0 0 701300. 2426.64 0.03 0.04 0.07 -1 -1 0.03 0.0197524 0.0176291 101 63 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_012.v common 2.16 vpr 64.39 MiB -1 -1 0.12 17912 1 0.02 -1 -1 29688 -1 -1 23 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65936 32 32 276 237 1 167 87 17 17 289 -1 unnamed_device 24.8 MiB 0.05 2346 870 8343 1986 6056 301 64.4 MiB 0.05 0.00 4.65034 3.60712 -112.822 -3.60712 3.60712 0.23 0.00027589 0.000251814 0.013582 0.0124272 -1 -1 -1 -1 30 2025 25 6.65987e+06 291594 526063. 1820.29 0.87 0.0938097 0.0815367 22546 126617 -1 1544 16 760 1070 57907 15189 2.73385 2.73385 -101.25 -2.73385 0 0 666494. 2306.21 0.02 0.03 0.07 -1 -1 0.02 0.0118484 0.0106631 110 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_013.v common 3.22 vpr 64.61 MiB -1 -1 0.13 17912 1 0.03 -1 -1 30064 -1 -1 29 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66160 32 32 344 272 1 202 93 17 17 289 -1 unnamed_device 24.9 MiB 0.06 2572 1235 14583 4936 7551 2096 64.6 MiB 0.09 0.00 4.91561 4.33178 -140.279 -4.33178 4.33178 0.23 0.000334058 0.000305194 0.0254602 0.0232105 -1 -1 -1 -1 28 3236 28 6.65987e+06 367662 500653. 1732.36 1.72 0.149472 0.131385 21970 115934 -1 2425 22 1423 2166 166024 37915 3.20871 3.20871 -128.98 -3.20871 0 0 612192. 2118.31 0.02 0.05 0.11 -1 -1 0.02 0.0176084 0.015759 148 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_014.v common 3.16 vpr 64.28 MiB -1 -1 0.12 18052 1 0.03 -1 -1 29772 -1 -1 34 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65820 32 32 363 295 1 181 98 17 17 289 -1 unnamed_device 24.9 MiB 0.05 2535 916 19223 6040 10330 2853 64.3 MiB 0.10 0.00 5.72495 4.44986 -128.732 -4.44986 4.44986 0.31 0.000335278 0.000306305 0.0326129 0.0298459 -1 -1 -1 -1 28 2781 28 6.65987e+06 431052 500653. 1732.36 1.60 0.164036 0.144127 21970 115934 -1 2095 22 1720 2855 211888 56822 3.64231 3.64231 -126.124 -3.64231 0 0 612192. 2118.31 0.02 0.07 0.07 -1 -1 0.02 0.0230006 0.0205473 139 61 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_015.v common 2.35 vpr 63.86 MiB -1 -1 0.19 17672 1 0.03 -1 -1 29892 -1 -1 23 29 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65388 29 32 248 215 1 137 84 17 17 289 -1 unnamed_device 24.3 MiB 0.06 1651 644 11064 3432 5040 2592 63.9 MiB 0.05 0.00 3.69173 2.97053 -85.1657 -2.97053 2.97053 0.23 0.000259807 0.000238065 0.0167708 0.015379 -1 -1 -1 -1 32 1255 21 6.65987e+06 291594 554710. 1919.41 0.93 0.10113 0.0875946 22834 132086 -1 1067 19 701 1169 54274 15412 2.52431 2.52431 -81.3486 -2.52431 0 0 701300. 2426.64 0.03 0.03 0.07 -1 -1 0.03 0.0133753 0.0119419 103 27 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_016.v common 1.85 vpr 64.63 MiB -1 -1 0.12 18056 1 0.03 -1 -1 29772 -1 -1 27 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66184 32 32 370 297 1 183 91 17 17 289 -1 unnamed_device 24.9 MiB 0.06 2380 968 16819 5706 8070 3043 64.6 MiB 0.11 0.00 4.6711 4.04346 -120.969 -4.04346 4.04346 0.24 0.000352021 0.000322419 0.0406105 0.0374978 -1 -1 -1 -1 32 2265 23 6.65987e+06 342306 554710. 1919.41 0.38 0.0901688 0.0809194 22834 132086 -1 1906 20 1277 2430 141211 36257 3.18037 3.18037 -113.866 -3.18037 0 0 701300. 2426.64 0.03 0.04 0.07 -1 -1 0.03 0.0169663 0.0152628 138 58 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_017.v common 2.08 vpr 64.57 MiB -1 -1 0.13 18056 1 0.03 -1 -1 29812 -1 -1 28 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66124 32 32 338 269 1 196 92 17 17 289 -1 unnamed_device 24.9 MiB 0.09 2606 1180 9821 2681 6536 604 64.6 MiB 0.08 0.00 5.38841 4.32378 -139.417 -4.32378 4.32378 0.25 0.000791528 0.000740611 0.0268259 0.0249583 -1 -1 -1 -1 32 2326 24 6.65987e+06 354984 554710. 1919.41 0.36 0.0762524 0.0683985 22834 132086 -1 2119 19 1135 1613 108552 25602 2.99237 2.99237 -119.109 -2.99237 0 0 701300. 2426.64 0.04 0.06 0.13 -1 -1 0.04 0.0273834 0.0246954 144 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_018.v common 2.62 vpr 64.43 MiB -1 -1 0.16 18056 1 0.03 -1 -1 29744 -1 -1 34 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65980 32 32 323 276 1 153 98 17 17 289 -1 unnamed_device 24.9 MiB 0.07 2090 920 16748 5345 9445 1958 64.4 MiB 0.08 0.00 3.59784 2.86781 -104.206 -2.86781 2.86781 0.24 0.000333852 0.000306347 0.0276424 0.0253042 -1 -1 -1 -1 26 2004 20 6.65987e+06 431052 477104. 1650.88 1.02 0.118539 0.104012 21682 110474 -1 1752 18 988 1648 111876 27246 2.22331 2.22331 -97.4468 -2.22331 0 0 585099. 2024.56 0.02 0.04 0.06 -1 -1 0.02 0.0138236 0.0124016 115 65 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_019.v common 2.42 vpr 63.84 MiB -1 -1 0.19 17668 1 0.03 -1 -1 29836 -1 -1 17 30 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65372 30 32 222 206 1 117 79 17 17 289 -1 unnamed_device 24.6 MiB 0.04 1535 577 8022 1971 5649 402 63.8 MiB 0.04 0.00 2.83187 2.23087 -73.1637 -2.23087 2.23087 0.26 0.000238925 0.000219996 0.016597 0.0153503 -1 -1 -1 -1 32 1160 20 6.65987e+06 215526 554710. 1919.41 0.89 0.0914579 0.0795766 22834 132086 -1 1031 16 512 757 46741 12549 1.68145 1.68145 -71.9785 -1.68145 0 0 701300. 2426.64 0.03 0.02 0.07 -1 -1 0.03 0.00974086 0.00870837 85 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_020.v common 1.84 vpr 64.21 MiB -1 -1 0.14 17912 1 0.03 -1 -1 29612 -1 -1 24 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65748 31 32 291 243 1 171 87 17 17 289 -1 unnamed_device 24.5 MiB 0.13 2125 1025 13911 4279 7725 1907 64.2 MiB 0.09 0.00 5.78495 4.84052 -144.776 -4.84052 4.84052 0.24 0.000318651 0.000293292 0.0318166 0.0293921 -1 -1 -1 -1 32 1975 23 6.65987e+06 304272 554710. 1919.41 0.37 0.0796161 0.0710669 22834 132086 -1 1717 18 884 1286 76003 18888 3.38591 3.38591 -126.147 -3.38591 0 0 701300. 2426.64 0.03 0.03 0.07 -1 -1 0.03 0.0139715 0.012598 127 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_021.v common 2.67 vpr 64.59 MiB -1 -1 0.12 18052 1 0.03 -1 -1 29900 -1 -1 37 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66136 32 32 342 271 1 179 101 17 17 289 -1 unnamed_device 24.9 MiB 0.04 2331 1127 17961 5306 10774 1881 64.6 MiB 0.09 0.00 5.44296 4.25196 -133.571 -4.25196 4.25196 0.24 0.000328108 0.000300221 0.0278798 0.0255437 -1 -1 -1 -1 32 2239 20 6.65987e+06 469086 554710. 1919.41 1.28 0.164041 0.144183 22834 132086 -1 2044 20 1134 1882 137464 30497 3.52443 3.52443 -125.531 -3.52443 0 0 701300. 2426.64 0.03 0.04 0.07 -1 -1 0.03 0.0164691 0.0147989 140 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_022.v common 1.94 vpr 64.74 MiB -1 -1 0.12 18056 1 0.03 -1 -1 29936 -1 -1 31 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66296 32 32 372 300 1 207 95 17 17 289 -1 unnamed_device 24.9 MiB 0.07 2693 1105 8735 1790 6509 436 64.7 MiB 0.07 0.00 5.32033 4.24321 -129.182 -4.24321 4.24321 0.24 0.000355888 0.000326787 0.021586 0.0199751 -1 -1 -1 -1 32 2756 25 6.65987e+06 393018 554710. 1919.41 0.41 0.0732554 0.0652145 22834 132086 -1 2171 17 1204 1933 126107 29946 3.40551 3.40551 -121.526 -3.40551 0 0 701300. 2426.64 0.03 0.04 0.07 -1 -1 0.03 0.0163433 0.014756 151 62 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_023.v common 1.60 vpr 63.71 MiB -1 -1 0.10 17672 1 0.02 -1 -1 29788 -1 -1 20 26 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65236 26 32 190 182 1 108 78 17 17 289 -1 unnamed_device 24.1 MiB 0.04 1349 468 11200 4643 5749 808 63.7 MiB 0.04 0.00 2.72887 2.30927 -65.1311 -2.30927 2.30927 0.23 0.000202817 0.000184723 0.0152371 0.0139236 -1 -1 -1 -1 28 1180 20 6.65987e+06 253560 500653. 1732.36 0.32 0.0421095 0.0370717 21970 115934 -1 973 22 671 1041 63401 16945 1.84505 1.84505 -64.3919 -1.84505 0 0 612192. 2118.31 0.02 0.03 0.06 -1 -1 0.02 0.0104773 0.00928288 81 30 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_024.v common 2.48 vpr 64.38 MiB -1 -1 0.12 17672 1 0.02 -1 -1 29792 -1 -1 25 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65924 32 32 285 227 1 165 89 17 17 289 -1 unnamed_device 24.5 MiB 0.04 2052 1025 13751 4494 6800 2457 64.4 MiB 0.09 0.00 4.848 4.36895 -121.042 -4.36895 4.36895 0.24 0.000289177 0.000264542 0.0307812 0.0282922 -1 -1 -1 -1 30 2062 23 6.65987e+06 316950 526063. 1820.29 1.05 0.119757 0.105578 22546 126617 -1 1919 21 1129 2131 143866 32712 3.23591 3.23591 -111.109 -3.23591 0 0 666494. 2306.21 0.03 0.04 0.07 -1 -1 0.03 0.0153198 0.013733 125 3 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_025.v common 2.21 vpr 63.69 MiB -1 -1 0.09 17676 1 0.03 -1 -1 29708 -1 -1 17 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65220 32 32 173 169 1 116 81 17 17 289 -1 unnamed_device 24.1 MiB 0.05 1447 545 12331 4341 5596 2394 63.7 MiB 0.04 0.00 2.73393 2.35833 -70.1665 -2.35833 2.35833 0.24 0.000200135 0.000182493 0.0152465 0.0138979 -1 -1 -1 -1 28 1272 22 6.65987e+06 215526 500653. 1732.36 0.84 0.0753932 0.0656314 21970 115934 -1 1023 19 461 533 38297 10550 1.69971 1.69971 -68.1319 -1.69971 0 0 612192. 2118.31 0.02 0.02 0.09 -1 -1 0.02 0.00930423 0.00823659 82 3 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_026.v common 2.70 vpr 64.46 MiB -1 -1 0.12 18052 1 0.03 -1 -1 30148 -1 -1 31 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66012 32 32 300 245 1 165 95 17 17 289 -1 unnamed_device 24.5 MiB 0.05 2081 896 13487 3921 6875 2691 64.5 MiB 0.07 0.00 5.05175 4.41269 -119.651 -4.41269 4.41269 0.24 0.000297513 0.000271843 0.0207646 0.019033 -1 -1 -1 -1 30 2108 21 6.65987e+06 393018 526063. 1820.29 1.30 0.141092 0.123292 22546 126617 -1 1652 20 867 1525 86666 21900 3.26785 3.26785 -105.916 -3.26785 0 0 666494. 2306.21 0.03 0.04 0.08 -1 -1 0.03 0.0170098 0.0152863 126 24 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_027.v common 2.92 vpr 63.70 MiB -1 -1 0.11 17664 1 0.03 -1 -1 29928 -1 -1 39 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65232 32 32 297 233 1 177 103 17 17 289 -1 unnamed_device 24.1 MiB 0.03 2388 1023 19624 6470 10444 2710 63.7 MiB 0.16 0.00 4.58506 3.64141 -104.769 -3.64141 3.64141 0.25 0.000560476 0.000510967 0.0484126 0.0441709 -1 -1 -1 -1 26 2542 46 6.65987e+06 494442 477104. 1650.88 1.29 0.168586 0.149805 21682 110474 -1 2045 18 1075 2003 124306 31296 3.00917 3.00917 -106.461 -3.00917 0 0 585099. 2024.56 0.02 0.04 0.06 -1 -1 0.02 0.0140512 0.0126467 136 3 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_028.v common 2.79 vpr 64.55 MiB -1 -1 0.21 18044 1 0.04 -1 -1 30164 -1 -1 34 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66100 32 32 338 277 1 179 98 17 17 289 -1 unnamed_device 24.9 MiB 0.07 2305 1091 18323 5790 9817 2716 64.6 MiB 0.09 0.00 5.46249 4.55003 -127.972 -4.55003 4.55003 0.24 0.000318033 0.000290194 0.0282284 0.0257753 -1 -1 -1 -1 30 2249 26 6.65987e+06 431052 526063. 1820.29 1.08 0.140788 0.122545 22546 126617 -1 1876 22 1106 1999 115126 27433 3.41605 3.41605 -116.12 -3.41605 0 0 666494. 2306.21 0.03 0.04 0.07 -1 -1 0.03 0.0170675 0.0152663 132 50 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_029.v common 2.16 vpr 64.35 MiB -1 -1 0.11 18056 1 0.04 -1 -1 29776 -1 -1 21 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65892 32 32 284 241 1 145 85 17 17 289 -1 unnamed_device 24.5 MiB 0.03 1848 913 13291 3770 7974 1547 64.3 MiB 0.06 0.00 3.57584 2.90053 -103.342 -2.90053 2.90053 0.24 0.000281589 0.000257719 0.0224208 0.0205218 -1 -1 -1 -1 28 1955 21 6.65987e+06 266238 500653. 1732.36 0.80 0.109728 0.0958161 21970 115934 -1 1804 21 1025 1722 112193 27509 2.68265 2.68265 -105.703 -2.68265 0 0 612192. 2118.31 0.02 0.04 0.07 -1 -1 0.02 0.0146769 0.0131164 107 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_030.v common 2.40 vpr 64.27 MiB -1 -1 0.11 17672 1 0.02 -1 -1 29776 -1 -1 24 30 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65808 30 32 262 227 1 135 86 17 17 289 -1 unnamed_device 24.3 MiB 0.04 1630 651 8969 1996 5970 1003 64.3 MiB 0.06 0.00 3.39847 3.05504 -90.9474 -3.05504 3.05504 0.25 0.000642942 0.000600414 0.0237623 0.0220744 -1 -1 -1 -1 28 1977 31 6.65987e+06 304272 500653. 1732.36 1.09 0.126607 0.110752 21970 115934 -1 1470 22 937 1443 90491 25132 2.67851 2.67851 -92.6094 -2.67851 0 0 612192. 2118.31 0.02 0.03 0.06 -1 -1 0.02 0.01419 0.0126255 100 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_031.v common 2.45 vpr 64.29 MiB -1 -1 0.12 18056 1 0.02 -1 -1 29432 -1 -1 24 28 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65828 28 32 260 223 1 140 84 17 17 289 -1 unnamed_device 24.9 MiB 0.03 1903 614 8319 1869 5547 903 64.3 MiB 0.04 0.00 4.15324 3.37407 -91.8212 -3.37407 3.37407 0.24 0.000265987 0.000243464 0.0137025 0.012562 -1 -1 -1 -1 28 1780 25 6.65987e+06 304272 500653. 1732.36 1.08 0.111413 0.0967491 21970 115934 -1 1400 26 1051 1933 126779 34231 2.79571 2.79571 -93.3762 -2.79571 0 0 612192. 2118.31 0.02 0.05 0.07 -1 -1 0.02 0.0181639 0.0161746 104 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_032.v common 2.08 vpr 64.27 MiB -1 -1 0.10 17672 1 0.03 -1 -1 29812 -1 -1 21 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65816 32 32 253 210 1 154 85 17 17 289 -1 unnamed_device 24.5 MiB 0.04 2077 937 13663 4386 7373 1904 64.3 MiB 0.07 0.00 4.42935 3.71432 -111.148 -3.71432 3.71432 0.24 0.000318555 0.000292319 0.0221483 0.0202869 -1 -1 -1 -1 30 1919 20 6.65987e+06 266238 526063. 1820.29 0.76 0.0917732 0.0801906 22546 126617 -1 1728 21 1075 1786 109331 25720 2.65051 2.65051 -104.501 -2.65051 0 0 666494. 2306.21 0.03 0.04 0.07 -1 -1 0.03 0.0142262 0.0127329 116 3 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_033.v common 1.97 vpr 64.33 MiB -1 -1 0.12 17668 1 0.03 -1 -1 29800 -1 -1 33 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65876 31 32 271 231 1 148 96 17 17 289 -1 unnamed_device 24.5 MiB 0.03 1915 835 10827 2687 7563 577 64.3 MiB 0.09 0.00 3.84464 3.33721 -100.19 -3.33721 3.33721 0.35 0.000522039 0.00047658 0.0275881 0.0251882 -1 -1 -1 -1 26 1992 24 6.65987e+06 418374 477104. 1650.88 0.54 0.0791696 0.0702585 21682 110474 -1 1818 16 954 1675 105836 27778 2.82585 2.82585 -102.328 -2.82585 0 0 585099. 2024.56 0.02 0.03 0.06 -1 -1 0.02 0.0117904 0.0105846 111 30 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_034.v common 1.74 vpr 64.40 MiB -1 -1 0.12 18056 1 0.03 -1 -1 30200 -1 -1 31 29 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65948 29 32 291 250 1 153 92 17 17 289 -1 unnamed_device 24.5 MiB 0.05 2169 872 17273 5743 9135 2395 64.4 MiB 0.07 0.00 3.81664 3.21564 -100.08 -3.21564 3.21564 0.24 0.000287972 0.000263067 0.0258344 0.0235912 -1 -1 -1 -1 32 1641 19 6.65987e+06 393018 554710. 1919.41 0.35 0.0669967 0.0594516 22834 132086 -1 1488 14 765 1169 65775 17191 2.31791 2.31791 -88.1097 -2.31791 0 0 701300. 2426.64 0.03 0.03 0.08 -1 -1 0.03 0.0124866 0.0111334 112 54 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_035.v common 2.12 vpr 64.70 MiB -1 -1 0.16 18436 1 0.03 -1 -1 29616 -1 -1 42 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66252 32 32 367 282 1 201 106 17 17 289 -1 unnamed_device 24.9 MiB 0.06 2308 1244 18356 5163 9963 3230 64.7 MiB 0.10 0.00 4.39192 3.92829 -113.996 -3.92829 3.92829 0.25 0.000749949 0.000718237 0.0389664 0.0359702 -1 -1 -1 -1 32 2640 24 6.65987e+06 532476 554710. 1919.41 0.44 0.095081 0.0852499 22834 132086 -1 2262 21 1317 2612 179532 41270 3.25579 3.25579 -109.354 -3.25579 0 0 701300. 2426.64 0.03 0.08 0.13 -1 -1 0.03 0.0355269 0.0316882 158 29 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_036.v common 1.87 vpr 64.75 MiB -1 -1 0.17 18056 1 0.03 -1 -1 29764 -1 -1 41 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66300 32 32 391 311 1 192 105 17 17 289 -1 unnamed_device 25.2 MiB 0.07 2421 1098 16654 4458 10225 1971 64.7 MiB 0.10 0.00 4.43155 3.83032 -129.396 -3.83032 3.83032 0.24 0.000365598 0.000334178 0.0332215 0.0304978 -1 -1 -1 -1 28 2395 21 6.65987e+06 519798 500653. 1732.36 0.37 0.0820495 0.0733414 21970 115934 -1 2087 22 1631 2798 163826 40220 2.88617 2.88617 -117.628 -2.88617 0 0 612192. 2118.31 0.03 0.05 0.06 -1 -1 0.03 0.0206196 0.0184833 150 65 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_037.v common 1.74 vpr 64.39 MiB -1 -1 0.13 17912 1 0.03 -1 -1 29804 -1 -1 23 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65936 31 32 279 237 1 161 86 17 17 289 -1 unnamed_device 24.3 MiB 0.05 2417 954 13883 3379 9484 1020 64.4 MiB 0.07 0.00 4.94055 4.24332 -124.031 -4.24332 4.24332 0.24 0.000288508 0.000262756 0.0228909 0.0208676 -1 -1 -1 -1 32 1963 21 6.65987e+06 291594 554710. 1919.41 0.33 0.0612728 0.0542438 22834 132086 -1 1756 20 823 1155 77844 19870 2.98031 2.98031 -108.773 -2.98031 0 0 701300. 2426.64 0.03 0.03 0.07 -1 -1 0.03 0.0143922 0.0129215 114 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_038.v common 2.26 vpr 64.67 MiB -1 -1 0.13 18056 1 0.03 -1 -1 30520 -1 -1 29 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66224 31 32 370 297 1 186 92 17 17 289 -1 unnamed_device 25.2 MiB 0.06 2217 1128 16238 4900 9111 2227 64.7 MiB 0.09 0.00 4.7803 3.9389 -118.342 -3.9389 3.9389 0.24 0.000337036 0.000307837 0.0287174 0.0262948 -1 -1 -1 -1 30 2357 17 6.65987e+06 367662 526063. 1820.29 0.85 0.125417 0.110734 22546 126617 -1 2060 20 1126 2079 105239 26274 2.83077 2.83077 -109.668 -2.83077 0 0 666494. 2306.21 0.03 0.04 0.07 -1 -1 0.03 0.0172833 0.0155108 145 61 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_039.v common 2.99 vpr 64.78 MiB -1 -1 0.17 18440 1 0.03 -1 -1 29768 -1 -1 36 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66332 31 32 377 302 1 233 99 17 17 289 -1 unnamed_device 25.2 MiB 0.08 2995 1450 19023 5551 11450 2022 64.8 MiB 0.12 0.00 7.69393 5.6677 -167.985 -5.6677 5.6677 0.32 0.000381638 0.000350701 0.0372226 0.0341246 -1 -1 -1 -1 28 3350 21 6.65987e+06 456408 500653. 1732.36 1.33 0.159215 0.140889 21970 115934 -1 2772 21 1856 2735 170569 41048 4.77703 4.77703 -165.781 -4.77703 0 0 612192. 2118.31 0.03 0.06 0.07 -1 -1 0.03 0.0228982 0.0206184 178 64 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_040.v common 2.97 vpr 64.36 MiB -1 -1 0.14 18056 1 0.03 -1 -1 30132 -1 -1 32 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65900 31 32 383 305 1 209 95 17 17 289 -1 unnamed_device 24.9 MiB 0.59 2681 1309 14999 4622 8322 2055 64.4 MiB 0.09 0.00 6.28756 5.10273 -157.72 -5.10273 5.10273 0.23 0.00068262 0.00062368 0.0291839 0.0267265 -1 -1 -1 -1 32 2682 21 6.65987e+06 405696 554710. 1919.41 1.01 0.131813 0.116038 22834 132086 -1 2351 17 1068 1598 128922 28801 3.94943 3.94943 -145.575 -3.94943 0 0 701300. 2426.64 0.03 0.04 0.07 -1 -1 0.03 0.0160375 0.0145622 167 64 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_041.v common 1.94 vpr 64.62 MiB -1 -1 0.12 18052 1 0.03 -1 -1 29740 -1 -1 37 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66172 31 32 352 285 1 184 100 17 17 289 -1 unnamed_device 24.9 MiB 0.07 2150 1138 13788 3708 8180 1900 64.6 MiB 0.08 0.00 5.13095 4.43175 -130.78 -4.43175 4.43175 0.23 0.000330854 0.000303241 0.0226578 0.0208034 -1 -1 -1 -1 26 2684 23 6.65987e+06 469086 477104. 1650.88 0.48 0.0706622 0.0628663 21682 110474 -1 2241 22 1376 2290 147550 36455 3.10551 3.10551 -115.897 -3.10551 0 0 585099. 2024.56 0.02 0.05 0.06 -1 -1 0.02 0.0181755 0.0161496 140 55 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_042.v common 1.78 vpr 64.46 MiB -1 -1 0.13 18052 1 0.03 -1 -1 29580 -1 -1 27 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66008 32 32 291 242 1 179 91 17 17 289 -1 unnamed_device 24.5 MiB 0.05 2447 1059 9883 2265 7085 533 64.5 MiB 0.06 0.00 5.12624 4.09841 -110.895 -4.09841 4.09841 0.25 0.000296132 0.000272346 0.0176985 0.0162418 -1 -1 -1 -1 26 2556 27 6.65987e+06 342306 477104. 1650.88 0.46 0.0606008 0.0535975 21682 110474 -1 2017 21 1095 1676 106066 26073 3.51731 3.51731 -113.349 -3.51731 0 0 585099. 2024.56 0.02 0.04 0.06 -1 -1 0.02 0.0152707 0.0135971 124 27 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_043.v common 2.51 vpr 64.29 MiB -1 -1 0.12 18436 1 0.03 -1 -1 29856 -1 -1 43 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65836 32 32 457 356 1 223 107 17 17 289 -1 unnamed_device 25.2 MiB 0.07 3074 1204 12757 3068 8413 1276 64.3 MiB 0.08 0.00 6.1774 4.89901 -154.002 -4.89901 4.89901 0.23 0.000414085 0.000380006 0.0237217 0.0217485 -1 -1 -1 -1 28 3067 37 6.65987e+06 545154 500653. 1732.36 1.06 0.158471 0.138717 21970 115934 -1 2549 21 1787 2650 155948 39478 4.09557 4.09557 -145.446 -4.09557 0 0 612192. 2118.31 0.02 0.05 0.07 -1 -1 0.02 0.023765 0.0213011 176 87 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_044.v common 2.10 vpr 64.28 MiB -1 -1 0.12 17668 1 0.02 -1 -1 29856 -1 -1 23 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65824 31 32 261 225 1 142 86 17 17 289 -1 unnamed_device 24.9 MiB 0.04 2009 887 11048 2987 7063 998 64.3 MiB 0.06 0.00 4.26232 3.39378 -98.4132 -3.39378 3.39378 0.24 0.000267305 0.000244906 0.020054 0.018467 -1 -1 -1 -1 26 1891 30 6.65987e+06 291594 477104. 1650.88 0.77 0.105782 0.092071 21682 110474 -1 1662 20 1011 1739 107514 26503 2.82891 2.82891 -101.876 -2.82891 0 0 585099. 2024.56 0.02 0.03 0.06 -1 -1 0.02 0.0133012 0.0118709 104 28 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_045.v common 2.54 vpr 64.61 MiB -1 -1 0.13 18056 1 0.03 -1 -1 30240 -1 -1 34 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66160 31 32 337 267 1 204 97 17 17 289 -1 unnamed_device 25.2 MiB 0.06 2890 1251 18301 5355 10266 2680 64.6 MiB 0.10 0.00 6.05769 4.76375 -144.29 -4.76375 4.76375 0.25 0.000325031 0.000298013 0.0320046 0.0294245 -1 -1 -1 -1 26 3189 24 6.65987e+06 431052 477104. 1650.88 1.13 0.140561 0.123821 21682 110474 -1 2546 22 1555 2328 159437 38754 4.09251 4.09251 -137.605 -4.09251 0 0 585099. 2024.56 0.02 0.05 0.06 -1 -1 0.02 0.0175959 0.015789 149 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_046.v common 2.00 vpr 64.21 MiB -1 -1 0.12 18048 1 0.03 -1 -1 29732 -1 -1 38 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65748 32 32 349 284 1 182 102 17 17 289 -1 unnamed_device 24.2 MiB 0.05 2675 1157 12240 3182 8323 735 64.2 MiB 0.08 0.00 4.8754 3.93484 -114.185 -3.93484 3.93484 0.24 0.000330143 0.000300671 0.0222818 0.0204813 -1 -1 -1 -1 26 2757 32 6.65987e+06 481764 477104. 1650.88 0.60 0.0776811 0.0690096 21682 110474 -1 2363 19 1261 2360 164757 38552 3.36871 3.36871 -117.29 -3.36871 0 0 585099. 2024.56 0.02 0.05 0.06 -1 -1 0.02 0.019165 0.0171186 136 53 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_047.v common 1.88 vpr 64.40 MiB -1 -1 0.16 17528 1 0.03 -1 -1 30164 -1 -1 27 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65948 32 32 291 230 1 168 91 17 17 289 -1 unnamed_device 24.5 MiB 0.04 1813 1098 12127 4092 6786 1249 64.4 MiB 0.09 0.00 4.58224 3.99224 -122.075 -3.99224 3.99224 0.25 0.000381717 0.000350442 0.0280412 0.0258922 -1 -1 -1 -1 32 2237 19 6.65987e+06 342306 554710. 1919.41 0.40 0.0682722 0.0610453 22834 132086 -1 2105 20 1119 2098 156985 35010 3.48525 3.48525 -121.639 -3.48525 0 0 701300. 2426.64 0.03 0.07 0.07 -1 -1 0.03 0.0257139 0.0230642 127 3 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_048.v common 2.25 vpr 64.68 MiB -1 -1 0.16 18056 1 0.03 -1 -1 30152 -1 -1 31 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66232 32 32 353 287 1 198 95 17 17 289 -1 unnamed_device 24.9 MiB 0.09 2414 1201 14783 3737 9111 1935 64.7 MiB 0.09 0.00 5.28395 4.64383 -136.782 -4.64383 4.64383 0.23 0.000330395 0.000300954 0.0254379 0.0232664 -1 -1 -1 -1 28 2543 26 6.65987e+06 393018 500653. 1732.36 0.80 0.120905 0.105969 21970 115934 -1 2251 21 1408 1875 123007 30781 3.10031 3.10031 -118.173 -3.10031 0 0 612192. 2118.31 0.02 0.04 0.06 -1 -1 0.02 0.0168622 0.0151259 142 55 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_049.v common 4.51 vpr 64.64 MiB -1 -1 0.13 18436 1 0.03 -1 -1 29688 -1 -1 39 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66196 32 32 361 291 1 185 103 17 17 289 -1 unnamed_device 24.9 MiB 0.06 2461 953 17937 5130 8807 4000 64.6 MiB 0.08 0.00 4.2905 3.7987 -116.61 -3.7987 3.7987 0.24 0.000333522 0.000304868 0.0275557 0.0252356 -1 -1 -1 -1 34 2395 37 6.65987e+06 494442 585099. 2024.56 3.08 0.18849 0.165399 23122 138558 -1 1886 17 1036 1828 125524 37518 2.91397 2.91397 -111.895 -2.91397 0 0 742403. 2568.87 0.03 0.05 0.08 -1 -1 0.03 0.0175925 0.0160764 139 55 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_050.v common 2.11 vpr 64.62 MiB -1 -1 0.12 18056 1 0.03 -1 -1 30212 -1 -1 40 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66168 32 32 382 305 1 192 104 17 17 289 -1 unnamed_device 24.8 MiB 0.07 2721 1179 19868 6240 11195 2433 64.6 MiB 0.21 0.00 4.80995 4.10592 -126.681 -4.10592 4.10592 0.23 0.000537632 0.000496731 0.0705905 0.0653766 -1 -1 -1 -1 26 2816 24 6.65987e+06 507120 477104. 1650.88 0.60 0.128236 0.11589 21682 110474 -1 2357 21 1447 2439 171323 40624 2.93371 2.93371 -116.894 -2.93371 0 0 585099. 2024.56 0.02 0.05 0.06 -1 -1 0.02 0.0178623 0.0160256 149 62 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_051.v common 3.71 vpr 64.45 MiB -1 -1 0.11 17904 1 0.03 -1 -1 29800 -1 -1 36 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66000 32 32 306 248 1 166 100 17 17 289 -1 unnamed_device 25.0 MiB 0.05 1946 873 16108 4349 7937 3822 64.5 MiB 0.07 0.00 4.57124 3.93324 -112.121 -3.93324 3.93324 0.23 0.000306658 0.000280335 0.0248876 0.0228463 -1 -1 -1 -1 30 2274 29 6.65987e+06 456408 526063. 1820.29 2.35 0.120616 0.105943 22546 126617 -1 1515 22 1093 1983 103839 27229 3.38699 3.38699 -106.02 -3.38699 0 0 666494. 2306.21 0.03 0.04 0.07 -1 -1 0.03 0.0177718 0.0157363 127 24 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_052.v common 2.23 vpr 63.87 MiB -1 -1 0.14 18052 1 0.03 -1 -1 29584 -1 -1 28 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65404 32 32 319 257 1 198 92 17 17 289 -1 unnamed_device 24.5 MiB 0.09 2350 1139 12719 3270 8148 1301 63.9 MiB 0.07 0.00 5.74889 4.74243 -133.951 -4.74243 4.74243 0.24 0.000312147 0.000284437 0.0214525 0.0196459 -1 -1 -1 -1 30 2287 21 6.65987e+06 354984 526063. 1820.29 0.68 0.102014 0.0894369 22546 126617 -1 1970 18 1171 1696 92785 22648 3.49131 3.49131 -121.376 -3.49131 0 0 666494. 2306.21 0.04 0.05 0.12 -1 -1 0.04 0.0187291 0.0169296 137 29 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_053.v common 2.62 vpr 64.74 MiB -1 -1 0.14 18056 1 0.03 -1 -1 29800 -1 -1 30 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66296 31 32 373 299 1 205 93 17 17 289 -1 unnamed_device 24.9 MiB 0.06 2919 1229 8073 1790 5652 631 64.7 MiB 0.06 0.00 6.09275 4.90792 -144.963 -4.90792 4.90792 0.24 0.000354844 0.000325213 0.0163957 0.0150592 -1 -1 -1 -1 26 3109 38 6.65987e+06 380340 477104. 1650.88 1.20 0.150978 0.132741 21682 110474 -1 2584 23 1839 2855 189670 45582 4.00631 4.00631 -139.798 -4.00631 0 0 585099. 2024.56 0.02 0.05 0.07 -1 -1 0.02 0.019152 0.0170771 151 62 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_054.v common 2.92 vpr 64.23 MiB -1 -1 0.17 18056 1 0.03 -1 -1 30108 -1 -1 25 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65772 32 32 387 315 1 189 89 17 17 289 -1 unnamed_device 24.9 MiB 0.06 2687 1072 16523 5659 7829 3035 64.2 MiB 0.11 0.00 4.94107 4.09069 -129.92 -4.09069 4.09069 0.24 0.000857988 0.000801055 0.0416845 0.0386047 -1 -1 -1 -1 30 2468 19 6.65987e+06 316950 526063. 1820.29 1.40 0.171759 0.152727 22546 126617 -1 1929 19 1275 2194 126979 30184 3.36805 3.36805 -121.211 -3.36805 0 0 666494. 2306.21 0.03 0.05 0.08 -1 -1 0.03 0.0232353 0.0208535 141 77 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_055.v common 2.15 vpr 64.25 MiB -1 -1 0.11 17672 1 0.02 -1 -1 29820 -1 -1 27 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65792 32 32 251 219 1 140 91 17 17 289 -1 unnamed_device 24.1 MiB 0.03 1818 851 9271 2119 6628 524 64.2 MiB 0.04 0.00 3.59669 3.36815 -99.3617 -3.36815 3.36815 0.24 0.000266366 0.000244407 0.0136646 0.0125264 -1 -1 -1 -1 28 1906 24 6.65987e+06 342306 500653. 1732.36 0.84 0.108303 0.0937673 21970 115934 -1 1646 22 837 1395 90639 21909 2.60345 2.60345 -92.8412 -2.60345 0 0 612192. 2118.31 0.02 0.03 0.06 -1 -1 0.02 0.0136441 0.012154 101 23 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_056.v common 1.94 vpr 64.57 MiB -1 -1 0.11 18052 1 0.03 -1 -1 29848 -1 -1 27 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66120 32 32 341 285 1 189 91 17 17 289 -1 unnamed_device 24.9 MiB 0.05 2440 992 6007 1156 4597 254 64.6 MiB 0.04 0.00 4.88419 3.97947 -135.407 -3.97947 3.97947 0.29 0.000328686 0.000301478 0.0111881 0.0102596 -1 -1 -1 -1 28 2655 20 6.65987e+06 342306 500653. 1732.36 0.40 0.0545205 0.04797 21970 115934 -1 2093 23 1541 2202 159522 39777 3.38797 3.38797 -131.381 -3.38797 0 0 612192. 2118.31 0.03 0.05 0.06 -1 -1 0.03 0.0182671 0.0163156 133 65 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_057.v common 1.88 vpr 64.34 MiB -1 -1 0.15 18052 1 0.03 -1 -1 29828 -1 -1 34 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65888 32 32 387 293 1 234 98 17 17 289 -1 unnamed_device 25.1 MiB 0.06 2841 1434 16523 4655 9834 2034 64.3 MiB 0.11 0.00 6.09189 5.18108 -152.063 -5.18108 5.18108 0.24 0.000363101 0.000332817 0.0361583 0.0334442 -1 -1 -1 -1 32 3145 19 6.65987e+06 431052 554710. 1919.41 0.38 0.0838214 0.0752932 22834 132086 -1 2602 22 1587 2577 157408 37857 4.25491 4.25491 -142.991 -4.25491 0 0 701300. 2426.64 0.03 0.05 0.07 -1 -1 0.03 0.0194226 0.0174853 174 31 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_058.v common 3.65 vpr 64.57 MiB -1 -1 0.13 18020 1 0.03 -1 -1 29944 -1 -1 38 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66124 32 32 340 270 1 181 102 17 17 289 -1 unnamed_device 25.2 MiB 0.09 2565 908 17952 4964 9148 3840 64.6 MiB 0.09 0.00 5.03706 4.14283 -126.342 -4.14283 4.14283 0.23 0.000329597 0.000301333 0.0285814 0.0262011 -1 -1 -1 -1 30 2351 28 6.65987e+06 481764 526063. 1820.29 2.07 0.16465 0.145021 22546 126617 -1 1739 20 1039 1780 111645 29043 2.61551 2.61551 -104.065 -2.61551 0 0 666494. 2306.21 0.03 0.04 0.07 -1 -1 0.03 0.0164232 0.0147637 141 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_059.v common 2.35 vpr 64.36 MiB -1 -1 0.12 17668 1 0.03 -1 -1 30328 -1 -1 33 30 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65904 30 32 278 235 1 148 95 17 17 289 -1 unnamed_device 24.9 MiB 0.03 2182 907 13703 3856 8397 1450 64.4 MiB 0.07 0.00 4.13824 3.55007 -108.481 -3.55007 3.55007 0.25 0.000293269 0.000263617 0.024289 0.0224368 -1 -1 -1 -1 32 1765 21 6.65987e+06 418374 554710. 1919.41 0.98 0.118204 0.103343 22834 132086 -1 1534 19 670 1228 76480 18288 2.48817 2.48817 -96.8001 -2.48817 0 0 701300. 2426.64 0.03 0.03 0.07 -1 -1 0.03 0.013599 0.0121795 111 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_060.v common 2.80 vpr 64.20 MiB -1 -1 0.15 18824 1 0.03 -1 -1 30124 -1 -1 31 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65744 32 32 431 332 1 235 95 17 17 289 -1 unnamed_device 24.9 MiB 0.16 2995 1435 16943 5441 8966 2536 64.2 MiB 0.11 0.00 7.19172 6.12709 -179.158 -6.12709 6.12709 0.24 0.000402579 0.000368127 0.0338431 0.0310673 -1 -1 -1 -1 32 2968 21 6.65987e+06 393018 554710. 1919.41 1.11 0.166916 0.146566 22834 132086 -1 2576 21 1778 2583 161656 39107 4.64457 4.64457 -161.765 -4.64457 0 0 701300. 2426.64 0.03 0.05 0.07 -1 -1 0.03 0.0204855 0.0183688 177 65 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_061.v common 1.88 vpr 64.54 MiB -1 -1 0.17 17672 1 0.03 -1 -1 29952 -1 -1 38 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66084 32 32 336 268 1 174 102 17 17 289 -1 unnamed_device 24.9 MiB 0.07 1956 1087 13668 3395 8471 1802 64.5 MiB 0.07 0.00 5.02695 4.36075 -134.246 -4.36075 4.36075 0.23 0.000320393 0.000293161 0.0207929 0.0190365 -1 -1 -1 -1 32 2118 20 6.65987e+06 481764 554710. 1919.41 0.38 0.0685113 0.0607201 22834 132086 -1 1937 19 1075 1822 123899 28240 3.11425 3.11425 -116.807 -3.11425 0 0 701300. 2426.64 0.03 0.04 0.07 -1 -1 0.03 0.0159821 0.0143821 136 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_062.v common 2.20 vpr 64.20 MiB -1 -1 0.11 17668 1 0.02 -1 -1 29924 -1 -1 27 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65740 32 32 231 199 1 140 91 17 17 289 -1 unnamed_device 24.1 MiB 0.03 1906 763 10291 2431 6883 977 64.2 MiB 0.05 0.00 4.00198 3.24072 -93.0898 -3.24072 3.24072 0.24 0.000252957 0.00023204 0.014133 0.0129556 -1 -1 -1 -1 26 1813 19 6.65987e+06 342306 477104. 1650.88 0.90 0.100565 0.0873611 21682 110474 -1 1587 17 924 1601 94219 24609 2.67551 2.67551 -95.133 -2.67551 0 0 585099. 2024.56 0.02 0.03 0.07 -1 -1 0.02 0.0144873 0.0129215 103 3 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_063.v common 2.94 vpr 64.62 MiB -1 -1 0.13 18056 1 0.03 -1 -1 30252 -1 -1 40 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66168 32 32 349 273 1 191 104 17 17 289 -1 unnamed_device 24.9 MiB 0.09 2540 1184 12792 3130 8784 878 64.6 MiB 0.08 0.00 6.17103 5.12357 -128.342 -5.12357 5.12357 0.24 0.000405648 0.00035247 0.0251103 0.0232583 -1 -1 -1 -1 26 2736 22 6.65987e+06 507120 477104. 1650.88 1.38 0.129295 0.114292 21682 110474 -1 2329 19 1224 2599 181219 41024 3.77199 3.77199 -121.701 -3.77199 0 0 585099. 2024.56 0.02 0.05 0.06 -1 -1 0.02 0.0175625 0.0157507 147 29 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_064.v common 2.20 vpr 64.25 MiB -1 -1 0.23 17912 1 0.02 -1 -1 29776 -1 -1 23 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65788 32 32 247 207 1 147 87 17 17 289 -1 unnamed_device 24.1 MiB 0.04 2164 862 9111 2261 6252 598 64.2 MiB 0.05 0.00 4.2295 3.4211 -103.943 -3.4211 3.4211 0.25 0.000272144 0.000249418 0.0165738 0.015236 -1 -1 -1 -1 26 1976 21 6.65987e+06 291594 477104. 1650.88 0.72 0.0817198 0.0712883 21682 110474 -1 1647 22 1171 2052 118500 29809 2.99817 2.99817 -107.951 -2.99817 0 0 585099. 2024.56 0.02 0.04 0.06 -1 -1 0.02 0.0148357 0.0132715 107 3 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_065.v common 2.37 vpr 64.37 MiB -1 -1 0.15 17912 1 0.04 -1 -1 29824 -1 -1 38 30 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65916 30 32 278 235 1 147 100 17 17 289 -1 unnamed_device 24.5 MiB 0.08 2117 919 17732 5394 9708 2630 64.4 MiB 0.09 0.00 5.05435 4.00072 -108.105 -4.00072 4.00072 0.25 0.000319002 0.000294923 0.0275487 0.0252902 -1 -1 -1 -1 28 1932 24 6.65987e+06 481764 500653. 1732.36 0.86 0.115273 0.101221 21970 115934 -1 1752 19 902 1787 109885 27332 2.74851 2.74851 -98.5026 -2.74851 0 0 612192. 2118.31 0.02 0.03 0.06 -1 -1 0.02 0.0132408 0.0118756 110 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_066.v common 2.40 vpr 64.51 MiB -1 -1 0.18 18056 1 0.03 -1 -1 29996 -1 -1 30 29 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66060 29 32 355 287 1 198 91 17 17 289 -1 unnamed_device 25.2 MiB 0.09 2795 1157 13759 4262 7817 1680 64.5 MiB 0.08 0.00 5.46461 4.50718 -131.152 -4.50718 4.50718 0.31 0.000330091 0.000302586 0.0257511 0.0236546 -1 -1 -1 -1 26 2957 22 6.65987e+06 380340 477104. 1650.88 0.51 0.0783395 0.0700172 21682 110474 -1 2345 21 1460 2184 143176 34536 3.37397 3.37397 -119.24 -3.37397 0 0 585099. 2024.56 0.04 0.07 0.10 -1 -1 0.04 0.0287388 0.0256969 146 62 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_067.v common 2.14 vpr 64.57 MiB -1 -1 0.13 18056 1 0.03 -1 -1 29768 -1 -1 27 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66124 32 32 358 289 1 175 91 17 17 289 -1 unnamed_device 24.9 MiB 0.05 1949 952 8251 1965 5842 444 64.6 MiB 0.05 0.00 5.1233 4.33587 -133.747 -4.33587 4.33587 0.25 0.00033683 0.00030808 0.0176046 0.0162384 -1 -1 -1 -1 32 1981 22 6.65987e+06 342306 554710. 1919.41 0.57 0.102101 0.0906133 22834 132086 -1 1751 21 1307 2030 131428 31363 3.43337 3.43337 -125.859 -3.43337 0 0 701300. 2426.64 0.04 0.05 0.14 -1 -1 0.04 0.0190603 0.0171537 135 54 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_068.v common 1.82 vpr 64.58 MiB -1 -1 0.17 18056 1 0.03 -1 -1 29644 -1 -1 34 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66128 32 32 353 285 1 181 98 17 17 289 -1 unnamed_device 24.9 MiB 0.05 2440 995 11573 3131 7196 1246 64.6 MiB 0.07 0.00 5.53355 4.52906 -132.157 -4.52906 4.52906 0.25 0.000337555 0.000309443 0.0200569 0.0183746 -1 -1 -1 -1 32 2149 21 6.65987e+06 431052 554710. 1919.41 0.34 0.0639729 0.0567577 22834 132086 -1 1930 21 1161 1924 112326 28305 3.56431 3.56431 -123.17 -3.56431 0 0 701300. 2426.64 0.03 0.04 0.08 -1 -1 0.03 0.0192602 0.017328 136 51 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_069.v common 2.28 vpr 64.37 MiB -1 -1 0.15 18052 1 0.03 -1 -1 29596 -1 -1 22 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65916 32 32 276 237 1 160 86 17 17 289 -1 unnamed_device 24.5 MiB 0.06 1928 842 5756 1110 4290 356 64.4 MiB 0.04 0.00 5.01063 4.547 -125.133 -4.547 4.547 0.24 0.000281039 0.000257092 0.0108104 0.00993427 -1 -1 -1 -1 26 2746 42 6.65987e+06 278916 477104. 1650.88 0.81 0.0695017 0.0610828 21682 110474 -1 2009 23 1128 1545 124492 32025 3.20671 3.20671 -119.094 -3.20671 0 0 585099. 2024.56 0.02 0.04 0.07 -1 -1 0.02 0.0149363 0.0132929 107 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_070.v common 2.31 vpr 64.45 MiB -1 -1 0.12 18052 1 0.03 -1 -1 29780 -1 -1 23 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65996 31 32 319 272 1 169 86 17 17 289 -1 unnamed_device 24.5 MiB 0.05 2087 999 8402 2135 5628 639 64.4 MiB 0.05 0.00 4.70844 3.76401 -122.041 -3.76401 3.76401 0.24 0.000297899 0.000272927 0.0150693 0.0138092 -1 -1 -1 -1 30 2009 19 6.65987e+06 291594 526063. 1820.29 0.77 0.139907 0.122491 22546 126617 -1 1802 22 1049 1597 92062 22220 3.08351 3.08351 -115.52 -3.08351 0 0 666494. 2306.21 0.05 0.05 0.11 -1 -1 0.05 0.023418 0.0209173 116 64 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_071.v common 2.79 vpr 64.51 MiB -1 -1 0.14 18440 1 0.03 -1 -1 30120 -1 -1 36 30 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66056 30 32 329 273 1 166 98 17 17 289 -1 unnamed_device 24.5 MiB 0.06 2322 911 10223 2206 7289 728 64.5 MiB 0.06 0.00 4.14418 3.34001 -95.1163 -3.34001 3.34001 0.24 0.000313524 0.000285877 0.0164285 0.0150486 -1 -1 -1 -1 26 2414 22 6.65987e+06 456408 477104. 1650.88 1.37 0.107607 0.0946655 21682 110474 -1 1927 22 1181 2235 140233 36386 2.57639 2.57639 -96.5212 -2.57639 0 0 585099. 2024.56 0.02 0.05 0.06 -1 -1 0.02 0.0200354 0.0178693 128 57 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_072.v common 2.64 vpr 64.39 MiB -1 -1 0.11 17668 1 0.02 -1 -1 30184 -1 -1 39 28 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65940 28 32 277 229 1 155 99 17 17 289 -1 unnamed_device 24.5 MiB 0.06 1932 968 16515 5028 9029 2458 64.4 MiB 0.10 0.00 4.80358 3.82106 -98.9222 -3.82106 3.82106 0.27 0.000295246 0.000271701 0.0370857 0.0343414 -1 -1 -1 -1 30 1920 22 6.65987e+06 494442 526063. 1820.29 1.00 0.146017 0.128722 22546 126617 -1 1687 18 746 1556 78646 19064 3.06345 3.06345 -92.4917 -3.06345 0 0 666494. 2306.21 0.03 0.04 0.07 -1 -1 0.03 0.0156517 0.0140541 122 27 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_073.v common 1.82 vpr 64.39 MiB -1 -1 0.12 18056 1 0.03 -1 -1 29780 -1 -1 21 30 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65940 30 32 317 269 1 152 83 17 17 289 -1 unnamed_device 24.5 MiB 0.06 1992 840 8543 2231 5712 600 64.4 MiB 0.07 0.00 4.52275 3.81872 -113.653 -3.81872 3.81872 0.28 0.000471169 0.0004455 0.0265634 0.0247268 -1 -1 -1 -1 32 1758 21 6.65987e+06 266238 554710. 1919.41 0.37 0.0718623 0.0643443 22834 132086 -1 1633 20 966 1723 107995 26820 2.70651 2.70651 -105.636 -2.70651 0 0 701300. 2426.64 0.03 0.04 0.07 -1 -1 0.03 0.0152378 0.0135695 115 63 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_074.v common 2.08 vpr 64.07 MiB -1 -1 0.12 18056 1 0.03 -1 -1 29868 -1 -1 26 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65604 32 32 335 282 1 184 90 17 17 289 -1 unnamed_device 24.5 MiB 0.07 2267 1081 11748 2737 7741 1270 64.1 MiB 0.12 0.00 4.27587 3.75301 -127.23 -3.75301 3.75301 0.24 0.000922484 0.000857673 0.046778 0.043576 -1 -1 -1 -1 32 2169 20 6.65987e+06 329628 554710. 1919.41 0.53 0.113914 0.10228 22834 132086 -1 1912 17 1021 1536 95655 22988 3.18891 3.18891 -117.522 -3.18891 0 0 701300. 2426.64 0.04 0.06 0.11 -1 -1 0.04 0.0257491 0.022733 127 65 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_075.v common 2.59 vpr 64.44 MiB -1 -1 0.11 17672 1 0.02 -1 -1 29548 -1 -1 37 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65984 31 32 293 230 1 175 100 17 17 289 -1 unnamed_device 25.0 MiB 0.04 2060 1066 14716 3823 8466 2427 64.4 MiB 0.07 0.00 4.86349 4.26143 -121.889 -4.26143 4.26143 0.27 0.000296603 0.000269714 0.0210521 0.0191673 -1 -1 -1 -1 32 2163 21 6.65987e+06 469086 554710. 1919.41 1.11 0.142451 0.124381 22834 132086 -1 1952 18 1051 1980 108284 26406 3.51125 3.51125 -111.09 -3.51125 0 0 701300. 2426.64 0.03 0.04 0.10 -1 -1 0.03 0.0165159 0.0149261 134 4 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_076.v common 1.98 vpr 64.64 MiB -1 -1 0.12 18048 1 0.03 -1 -1 30360 -1 -1 29 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66192 32 32 350 275 1 209 93 17 17 289 -1 unnamed_device 25.2 MiB 0.07 2681 1168 10383 2802 6577 1004 64.6 MiB 0.07 0.00 5.68615 4.86192 -151.547 -4.86192 4.86192 0.24 0.000334875 0.000306795 0.0187135 0.0171881 -1 -1 -1 -1 32 2556 25 6.65987e+06 367662 554710. 1919.41 0.49 0.0877671 0.0777807 22834 132086 -1 2143 20 1336 2094 119998 29832 3.72991 3.72991 -134.478 -3.72991 0 0 701300. 2426.64 0.04 0.06 0.08 -1 -1 0.04 0.0242861 0.021965 151 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_077.v common 4.53 vpr 64.66 MiB -1 -1 0.13 18056 1 0.03 -1 -1 29792 -1 -1 37 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66216 32 32 385 308 1 182 101 17 17 289 -1 unnamed_device 25.2 MiB 0.06 2633 927 18196 5275 8727 4194 64.7 MiB 0.08 0.00 5.51755 4.47917 -136.038 -4.47917 4.47917 0.23 0.00035799 0.000327422 0.0311637 0.0285323 -1 -1 -1 -1 36 2460 39 6.65987e+06 469086 612192. 2118.31 3.09 0.183338 0.161522 23410 145293 -1 1908 19 1434 2459 149777 39483 3.72051 3.72051 -129.983 -3.72051 0 0 782063. 2706.10 0.03 0.04 0.09 -1 -1 0.03 0.0173432 0.0156109 143 65 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_078.v common 3.52 vpr 64.05 MiB -1 -1 0.12 18444 1 0.03 -1 -1 30240 -1 -1 43 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65592 32 32 387 309 1 190 107 17 17 289 -1 unnamed_device 24.5 MiB 0.08 2914 1226 13516 3426 8918 1172 64.1 MiB 0.11 0.00 5.66375 4.30832 -138.449 -4.30832 4.30832 0.31 0.000364026 0.000327868 0.0352371 0.0324508 -1 -1 -1 -1 26 3133 37 6.65987e+06 545154 477104. 1650.88 2.01 0.204454 0.180913 21682 110474 -1 2585 21 1659 3001 194586 46671 3.27771 3.27771 -128.625 -3.27771 0 0 585099. 2024.56 0.02 0.05 0.06 -1 -1 0.02 0.0184663 0.0164533 147 65 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_079.v common 1.84 vpr 64.31 MiB -1 -1 0.22 17672 1 0.03 -1 -1 30260 -1 -1 21 30 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65856 30 32 272 232 1 147 83 17 17 289 -1 unnamed_device 24.9 MiB 0.07 1945 699 9443 2134 6868 441 64.3 MiB 0.06 0.00 4.63389 3.7606 -108.702 -3.7606 3.7606 0.25 0.000274486 0.000250373 0.0202243 0.0186816 -1 -1 -1 -1 32 1712 22 6.65987e+06 266238 554710. 1919.41 0.36 0.0608618 0.0541478 22834 132086 -1 1351 17 754 1264 75034 19152 2.55625 2.55625 -94.2402 -2.55625 0 0 701300. 2426.64 0.03 0.03 0.07 -1 -1 0.03 0.0127318 0.0114779 109 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_080.v common 1.87 vpr 64.62 MiB -1 -1 0.14 18056 1 0.03 -1 -1 30156 -1 -1 27 30 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66176 30 32 375 299 1 187 89 17 17 289 -1 unnamed_device 24.9 MiB 0.07 2028 1003 9395 2078 6561 756 64.6 MiB 0.06 0.00 5.34001 4.72954 -137.554 -4.72954 4.72954 0.23 0.000351356 0.000321724 0.0184561 0.0169463 -1 -1 -1 -1 28 2499 27 6.65987e+06 342306 500653. 1732.36 0.47 0.0711341 0.0630113 21970 115934 -1 2043 19 1375 2121 129278 33516 3.72637 3.72637 -132.273 -3.72637 0 0 612192. 2118.31 0.02 0.04 0.06 -1 -1 0.02 0.0175255 0.0158171 147 63 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_081.v common 3.56 vpr 64.59 MiB -1 -1 0.12 18052 1 0.03 -1 -1 29852 -1 -1 30 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66136 32 32 340 270 1 200 94 17 17 289 -1 unnamed_device 24.9 MiB 0.09 2562 1172 8614 1885 5948 781 64.6 MiB 0.06 0.00 6.11242 5.075 -148.312 -5.075 5.075 0.24 0.000324053 0.000296578 0.0159447 0.0146839 -1 -1 -1 -1 28 3045 34 6.65987e+06 380340 500653. 1732.36 2.06 0.139928 0.123519 21970 115934 -1 2409 21 1636 2519 180150 43978 3.77211 3.77211 -133.398 -3.77211 0 0 612192. 2118.31 0.03 0.07 0.07 -1 -1 0.03 0.0233923 0.0209471 145 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_082.v common 2.64 vpr 64.71 MiB -1 -1 0.16 17524 1 0.04 -1 -1 29784 -1 -1 35 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66268 31 32 340 275 1 195 98 17 17 289 -1 unnamed_device 24.9 MiB 0.12 2655 1234 13373 3486 8666 1221 64.7 MiB 0.08 0.00 6.2565 5.20087 -146.632 -5.20087 5.20087 0.24 0.000337977 0.000309774 0.0232074 0.0213238 -1 -1 -1 -1 28 2603 23 6.65987e+06 443730 500653. 1732.36 0.95 0.148618 0.130153 21970 115934 -1 2276 21 1462 2381 143787 35641 4.28397 4.28397 -142.339 -4.28397 0 0 612192. 2118.31 0.04 0.07 0.11 -1 -1 0.04 0.0301272 0.0271323 152 47 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_083.v common 2.11 vpr 64.64 MiB -1 -1 0.12 18052 1 0.03 -1 -1 30124 -1 -1 38 30 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66188 30 32 377 310 1 177 100 17 17 289 -1 unnamed_device 24.9 MiB 0.37 2368 1078 19356 5734 11269 2353 64.6 MiB 0.11 0.00 5.15601 4.43481 -132.977 -4.43481 4.43481 0.24 0.000356646 0.000327786 0.0400155 0.0371255 -1 -1 -1 -1 32 2034 21 6.65987e+06 481764 554710. 1919.41 0.34 0.0872187 0.0784088 22834 132086 -1 1867 19 1042 1815 109969 26079 3.09757 3.09757 -117.861 -3.09757 0 0 701300. 2426.64 0.03 0.05 0.07 -1 -1 0.03 0.0270637 0.0241799 144 83 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_084.v common 1.79 vpr 64.22 MiB -1 -1 0.13 18056 1 0.03 -1 -1 29780 -1 -1 25 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65760 32 32 365 294 1 185 89 17 17 289 -1 unnamed_device 24.9 MiB 0.05 2717 1028 9989 2368 7036 585 64.2 MiB 0.08 0.00 5.82395 4.80846 -135.83 -4.80846 4.80846 0.25 0.000785676 0.000756889 0.0268928 0.0250003 -1 -1 -1 -1 32 2279 22 6.65987e+06 316950 554710. 1919.41 0.40 0.0816934 0.072869 22834 132086 -1 1969 18 1045 1838 103539 25809 3.51511 3.51511 -124.567 -3.51511 0 0 701300. 2426.64 0.03 0.04 0.07 -1 -1 0.03 0.0162994 0.0147361 141 57 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_085.v common 1.73 vpr 64.64 MiB -1 -1 0.12 18052 1 0.03 -1 -1 29804 -1 -1 38 29 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66196 29 32 378 310 1 177 99 17 17 289 -1 unnamed_device 25.2 MiB 0.06 2479 1013 19251 5705 10712 2834 64.6 MiB 0.10 0.00 4.83889 4.07094 -114.526 -4.07094 4.07094 0.24 0.000337925 0.000308777 0.0326149 0.0298842 -1 -1 -1 -1 30 1955 24 6.65987e+06 481764 526063. 1820.29 0.34 0.0803182 0.0715981 22546 126617 -1 1736 16 966 1673 79843 20483 2.65731 2.65731 -99.9201 -2.65731 0 0 666494. 2306.21 0.03 0.03 0.07 -1 -1 0.03 0.0153559 0.0139599 137 85 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_086.v common 2.25 vpr 64.21 MiB -1 -1 0.10 17668 1 0.02 -1 -1 29944 -1 -1 19 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65756 32 32 243 205 1 139 83 17 17 289 -1 unnamed_device 24.1 MiB 0.05 1776 913 13583 3827 8166 1590 64.2 MiB 0.06 0.00 4.36335 3.77952 -113.791 -3.77952 3.77952 0.23 0.000258733 0.000237246 0.0221535 0.0203246 -1 -1 -1 -1 32 1628 18 6.65987e+06 240882 554710. 1919.41 0.86 0.108382 0.0947406 22834 132086 -1 1492 15 568 862 53023 12847 2.73465 2.73465 -99.7426 -2.73465 0 0 701300. 2426.64 0.03 0.02 0.12 -1 -1 0.03 0.0110657 0.0100029 99 3 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_087.v common 2.64 vpr 64.61 MiB -1 -1 0.12 18052 1 0.03 -1 -1 29768 -1 -1 35 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66160 32 32 373 302 1 176 99 17 17 289 -1 unnamed_device 25.2 MiB 0.08 2442 1018 18339 5915 9603 2821 64.6 MiB 0.09 0.00 5.53955 4.46392 -134.604 -4.46392 4.46392 0.24 0.000350581 0.000320376 0.030238 0.0276861 -1 -1 -1 -1 28 2559 33 6.65987e+06 443730 500653. 1732.36 1.23 0.157921 0.139255 21970 115934 -1 2034 22 1390 2379 155320 38127 3.72251 3.72251 -131.726 -3.72251 0 0 612192. 2118.31 0.03 0.06 0.06 -1 -1 0.03 0.0224972 0.0200975 135 65 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_088.v common 1.88 vpr 64.36 MiB -1 -1 0.13 18044 1 0.03 -1 -1 29776 -1 -1 25 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65900 32 32 397 314 1 196 89 17 17 289 -1 unnamed_device 24.9 MiB 0.08 2649 1042 7415 1478 5399 538 64.4 MiB 0.05 0.00 5.84281 4.69477 -144.735 -4.69477 4.69477 0.25 0.000363804 0.000333298 0.0164987 0.0151272 -1 -1 -1 -1 32 2467 22 6.65987e+06 316950 554710. 1919.41 0.43 0.0723381 0.0642314 22834 132086 -1 2120 20 1640 2746 168107 41989 3.74157 3.74157 -135.95 -3.74157 0 0 701300. 2426.64 0.03 0.06 0.07 -1 -1 0.03 0.0231033 0.0206951 155 65 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_089.v common 2.15 vpr 64.37 MiB -1 -1 0.14 17660 1 0.03 -1 -1 29800 -1 -1 25 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65912 32 32 269 231 1 170 89 17 17 289 -1 unnamed_device 24.5 MiB 0.05 2060 1041 9791 2284 6736 771 64.4 MiB 0.05 0.00 4.9641 4.13987 -114.14 -4.13987 4.13987 0.23 0.000285581 0.000261993 0.0167929 0.0154416 -1 -1 -1 -1 22 2510 30 6.65987e+06 316950 420624. 1455.45 0.84 0.0995754 0.0866549 20818 92861 -1 2270 19 1086 1462 115592 27496 3.61557 3.61557 -116.563 -3.61557 0 0 500653. 1732.36 0.02 0.04 0.05 -1 -1 0.02 0.0135916 0.0121488 117 29 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_090.v common 1.77 vpr 64.24 MiB -1 -1 0.11 17668 1 0.03 -1 -1 29940 -1 -1 23 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65784 31 32 245 205 1 150 86 17 17 289 -1 unnamed_device 24.5 MiB 0.04 2068 883 14639 5191 7304 2144 64.2 MiB 0.07 0.00 4.81301 3.84841 -109.743 -3.84841 3.84841 0.25 0.000261358 0.000239166 0.0228225 0.0209759 -1 -1 -1 -1 32 1873 20 6.65987e+06 291594 554710. 1919.41 0.33 0.0586236 0.0521393 22834 132086 -1 1716 18 1042 1695 113744 27403 2.66951 2.66951 -100.595 -2.66951 0 0 701300. 2426.64 0.03 0.04 0.09 -1 -1 0.03 0.0131841 0.0117093 110 4 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_091.v common 2.88 vpr 64.64 MiB -1 -1 0.11 18052 1 0.03 -1 -1 30384 -1 -1 30 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66188 32 32 348 274 1 211 94 17 17 289 -1 unnamed_device 24.9 MiB 0.06 2693 1126 12235 3289 8013 933 64.6 MiB 0.08 0.00 6.19807 4.92983 -147.924 -4.92983 4.92983 0.24 0.000328778 0.000300919 0.0228505 0.0209311 -1 -1 -1 -1 26 2899 25 6.65987e+06 380340 477104. 1650.88 1.47 0.125491 0.110588 21682 110474 -1 2453 19 1611 2205 158180 38601 3.91843 3.91843 -143.277 -3.91843 0 0 585099. 2024.56 0.02 0.05 0.06 -1 -1 0.02 0.016446 0.01476 151 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_092.v common 2.73 vpr 64.70 MiB -1 -1 0.13 18056 1 0.03 -1 -1 29820 -1 -1 37 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66256 32 32 356 289 1 202 101 17 17 289 -1 unnamed_device 24.9 MiB 0.10 2455 1202 17726 5863 9448 2415 64.7 MiB 0.10 0.00 6.19085 4.98326 -147.838 -4.98326 4.98326 0.23 0.000337012 0.00030237 0.0286512 0.0261769 -1 -1 -1 -1 28 2992 31 6.65987e+06 469086 500653. 1732.36 1.28 0.150303 0.13201 21970 115934 -1 2209 22 1417 2227 163353 43256 4.07751 4.07751 -138.323 -4.07751 0 0 612192. 2118.31 0.02 0.05 0.06 -1 -1 0.02 0.0211012 0.0188692 157 56 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_093.v common 2.12 vpr 64.40 MiB -1 -1 0.21 18056 1 0.04 -1 -1 29828 -1 -1 43 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65948 32 32 349 260 1 204 107 17 17 289 -1 unnamed_device 24.7 MiB 0.04 2789 1282 17058 4558 10111 2389 64.4 MiB 0.10 0.00 6.22775 5.25635 -138.9 -5.25635 5.25635 0.24 0.000847755 0.000792737 0.0270822 0.0248474 -1 -1 -1 -1 30 2744 22 6.65987e+06 545154 526063. 1820.29 0.51 0.0787829 0.0704927 22546 126617 -1 2279 19 1165 2296 144567 32446 4.20857 4.20857 -132.092 -4.20857 0 0 666494. 2306.21 0.04 0.09 0.08 -1 -1 0.04 0.0377591 0.0340845 162 3 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_094.v common 2.48 vpr 64.46 MiB -1 -1 0.12 17908 1 0.03 -1 -1 29804 -1 -1 36 30 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66004 30 32 316 264 1 162 98 17 17 289 -1 unnamed_device 24.5 MiB 0.08 2263 907 15623 4094 8873 2656 64.5 MiB 0.07 0.00 4.35844 3.46421 -101.49 -3.46421 3.46421 0.23 0.000302285 0.000277318 0.0237892 0.0218542 -1 -1 -1 -1 30 1887 20 6.65987e+06 456408 526063. 1820.29 0.93 0.125269 0.109434 22546 126617 -1 1617 20 923 1599 76990 19613 2.69151 2.69151 -96.3226 -2.69151 0 0 666494. 2306.21 0.04 0.07 0.08 -1 -1 0.04 0.035453 0.0317282 124 52 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_095.v common 2.19 vpr 64.24 MiB -1 -1 0.14 17672 1 0.02 -1 -1 30144 -1 -1 23 27 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65784 27 32 255 219 1 132 82 17 17 289 -1 unnamed_device 24.1 MiB 0.03 1707 762 11296 3316 6423 1557 64.2 MiB 0.05 0.00 4.35664 3.48247 -97.7908 -3.48247 3.48247 0.23 0.000254069 0.00023285 0.0176088 0.0161447 -1 -1 -1 -1 32 1498 19 6.65987e+06 291594 554710. 1919.41 0.88 0.0982668 0.0852425 22834 132086 -1 1390 21 750 1239 79737 19491 2.74977 2.74977 -93.2365 -2.74977 0 0 701300. 2426.64 0.03 0.03 0.07 -1 -1 0.03 0.0131444 0.0117322 100 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_096.v common 3.10 vpr 64.94 MiB -1 -1 0.16 17672 1 0.03 -1 -1 30148 -1 -1 34 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66496 32 32 421 327 1 232 98 17 17 289 -1 unnamed_device 25.6 MiB 0.06 3118 1504 18998 5785 11135 2078 64.9 MiB 0.16 0.00 5.30144 4.15341 -134.659 -4.15341 4.15341 0.24 0.000723216 0.00066104 0.048028 0.0441656 -1 -1 -1 -1 32 3347 20 6.65987e+06 431052 554710. 1919.41 1.49 0.187082 0.165648 22834 132086 -1 2852 23 1753 2861 212134 47689 3.41911 3.41911 -128.837 -3.41911 0 0 701300. 2426.64 0.03 0.06 0.07 -1 -1 0.03 0.0239451 0.0214081 176 65 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_097.v common 2.76 vpr 64.15 MiB -1 -1 0.14 18044 1 0.03 -1 -1 30148 -1 -1 27 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65692 31 32 365 296 1 193 90 17 17 289 -1 unnamed_device 24.9 MiB 0.36 2626 1131 10743 2617 7196 930 64.2 MiB 0.07 0.00 6.52641 5.34958 -160.242 -5.34958 5.34958 0.23 0.000344068 0.000315901 0.0230363 0.0213167 -1 -1 -1 -1 32 2256 22 6.65987e+06 342306 554710. 1919.41 1.04 0.141545 0.124772 22834 132086 -1 2058 19 1267 1995 127981 30724 4.12737 4.12737 -144.115 -4.12737 0 0 701300. 2426.64 0.03 0.04 0.08 -1 -1 0.03 0.0163519 0.0147443 151 64 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_098.v common 2.49 vpr 64.12 MiB -1 -1 0.12 18052 1 0.02 -1 -1 29692 -1 -1 23 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65660 32 32 331 280 1 175 87 17 17 289 -1 unnamed_device 24.5 MiB 0.34 2093 1056 11223 2777 6565 1881 64.1 MiB 0.07 0.00 5.5891 4.44586 -136.991 -4.44586 4.44586 0.23 0.000310743 0.00028465 0.0245441 0.0226654 -1 -1 -1 -1 30 2098 21 6.65987e+06 291594 526063. 1820.29 0.83 0.115069 0.101493 22546 126617 -1 1713 17 744 1061 64700 15352 3.42717 3.42717 -125.557 -3.42717 0 0 666494. 2306.21 0.03 0.04 0.07 -1 -1 0.03 0.0188638 0.0169499 129 65 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_099.v common 1.99 vpr 64.05 MiB -1 -1 0.13 18056 1 0.03 -1 -1 30332 -1 -1 36 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65592 32 32 326 263 1 176 100 17 17 289 -1 unnamed_device 24.5 MiB 0.04 2458 1023 12396 3002 8710 684 64.1 MiB 0.06 0.00 5.92474 4.91628 -125.981 -4.91628 4.91628 0.31 0.00031312 0.000285308 0.0186718 0.0170098 -1 -1 -1 -1 26 2519 25 6.65987e+06 456408 477104. 1650.88 0.49 0.0681747 0.0605424 21682 110474 -1 2143 19 1162 2005 137788 34909 3.45605 3.45605 -115.538 -3.45605 0 0 585099. 2024.56 0.04 0.04 0.08 -1 -1 0.04 0.0156747 0.0141323 133 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_100.v common 2.49 vpr 64.38 MiB -1 -1 0.18 18052 1 0.03 -1 -1 29868 -1 -1 39 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65920 31 32 373 294 1 196 102 17 17 289 -1 unnamed_device 24.5 MiB 0.05 2316 1116 9622 2124 6827 671 64.4 MiB 0.07 0.00 5.28538 4.66257 -122.009 -4.66257 4.66257 0.24 0.000500582 0.000470974 0.022367 0.0207019 -1 -1 -1 -1 32 2164 22 6.65987e+06 494442 554710. 1919.41 0.96 0.150679 0.132762 22834 132086 -1 1941 21 1024 1664 98113 24600 3.71045 3.71045 -118.186 -3.71045 0 0 701300. 2426.64 0.03 0.04 0.08 -1 -1 0.03 0.0217 0.0195245 151 50 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_101.v common 2.43 vpr 64.50 MiB -1 -1 0.19 18056 1 0.03 -1 -1 30260 -1 -1 36 30 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66052 30 32 325 268 1 171 98 17 17 289 -1 unnamed_device 24.5 MiB 0.05 2399 1001 15848 4524 8647 2677 64.5 MiB 0.10 0.00 4.35464 3.6178 -102.686 -3.6178 3.6178 0.25 0.000340058 0.000313523 0.032293 0.0300242 -1 -1 -1 -1 32 2093 22 6.65987e+06 456408 554710. 1919.41 0.91 0.115634 0.10181 22834 132086 -1 1735 20 927 1616 95276 23308 2.75671 2.75671 -93.3009 -2.75671 0 0 701300. 2426.64 0.03 0.04 0.07 -1 -1 0.03 0.0152838 0.0137139 130 51 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_102.v common 2.63 vpr 64.65 MiB -1 -1 0.13 18052 1 0.03 -1 -1 30252 -1 -1 31 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66204 32 32 350 275 1 215 95 17 17 289 -1 unnamed_device 25.3 MiB 0.13 2711 1336 11327 3094 7340 893 64.7 MiB 0.08 0.00 6.10595 5.14435 -160.142 -5.14435 5.14435 0.23 0.00035727 0.000327964 0.0199369 0.0183003 -1 -1 -1 -1 32 2855 24 6.65987e+06 393018 554710. 1919.41 1.00 0.118695 0.104006 22834 132086 -1 2484 19 1479 2310 144508 33634 3.96111 3.96111 -144.603 -3.96111 0 0 701300. 2426.64 0.03 0.05 0.07 -1 -1 0.03 0.0177237 0.0159978 155 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_103.v common 3.00 vpr 64.70 MiB -1 -1 0.13 18052 1 0.03 -1 -1 30148 -1 -1 42 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66256 32 32 386 307 1 195 106 17 17 289 -1 unnamed_device 25.2 MiB 0.11 2637 1017 18856 5646 10377 2833 64.7 MiB 0.10 0.00 5.01221 4.18798 -126.815 -4.18798 4.18798 0.23 0.000362844 0.000331712 0.0291056 0.0266064 -1 -1 -1 -1 30 2352 24 6.65987e+06 532476 526063. 1820.29 1.29 0.129417 0.113746 22546 126617 -1 1931 21 1304 2159 137888 33646 2.87277 2.87277 -109.84 -2.87277 0 0 666494. 2306.21 0.03 0.05 0.07 -1 -1 0.03 0.0238673 0.0214352 151 62 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_104.v common 2.36 vpr 64.15 MiB -1 -1 0.13 17672 1 0.03 -1 -1 29820 -1 -1 19 29 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65688 29 32 269 229 1 129 80 17 17 289 -1 unnamed_device 24.5 MiB 0.03 1576 639 12464 3221 8431 812 64.1 MiB 0.09 0.00 4.48041 4.01678 -108.148 -4.01678 4.01678 0.28 0.000480442 0.000438543 0.0373201 0.0341971 -1 -1 -1 -1 30 1486 20 6.65987e+06 240882 526063. 1820.29 0.93 0.126396 0.111447 22546 126617 -1 1234 20 690 1018 70885 16894 2.71377 2.71377 -93.534 -2.71377 0 0 666494. 2306.21 0.03 0.03 0.07 -1 -1 0.03 0.0135202 0.0121234 93 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_105.v common 2.28 vpr 63.98 MiB -1 -1 0.13 17908 1 0.03 -1 -1 29936 -1 -1 26 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65520 32 32 310 266 1 175 90 17 17 289 -1 unnamed_device 24.1 MiB 0.04 2095 940 8331 1938 5650 743 64.0 MiB 0.05 0.00 4.98039 4.1175 -122.325 -4.1175 4.1175 0.25 0.000294899 0.000270139 0.0142154 0.0130403 -1 -1 -1 -1 26 2117 18 6.65987e+06 329628 477104. 1650.88 0.95 0.114865 0.100577 21682 110474 -1 1793 22 1060 1496 105030 24470 3.22317 3.22317 -116.181 -3.22317 0 0 585099. 2024.56 0.02 0.04 0.06 -1 -1 0.02 0.0159831 0.014244 123 58 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_106.v common 2.83 vpr 64.54 MiB -1 -1 0.14 18440 1 0.03 -1 -1 29876 -1 -1 43 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66088 31 32 326 261 1 177 106 17 17 289 -1 unnamed_device 24.5 MiB 0.05 2343 916 18356 4978 9795 3583 64.5 MiB 0.09 0.00 5.52155 4.37352 -119.432 -4.37352 4.37352 0.25 0.000354148 0.000290662 0.0273844 0.0250176 -1 -1 -1 -1 30 2290 33 6.65987e+06 545154 526063. 1820.29 1.40 0.157058 0.137275 22546 126617 -1 1831 24 1339 2530 162695 40201 3.55325 3.55325 -112.175 -3.55325 0 0 666494. 2306.21 0.03 0.05 0.07 -1 -1 0.03 0.0183438 0.0163401 138 33 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_107.v common 1.69 vpr 64.36 MiB -1 -1 0.12 17672 1 0.02 -1 -1 29796 -1 -1 26 29 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65904 29 32 262 224 1 168 87 17 17 289 -1 unnamed_device 24.5 MiB 0.05 1937 962 8151 2045 5043 1063 64.4 MiB 0.05 0.00 4.73201 3.89047 -108.453 -3.89047 3.89047 0.24 0.000334714 0.000292814 0.0167961 0.0155764 -1 -1 -1 -1 26 2222 19 6.65987e+06 329628 477104. 1650.88 0.37 0.0576277 0.0510664 21682 110474 -1 1935 15 790 1052 70400 17366 3.46957 3.46957 -109.369 -3.46957 0 0 585099. 2024.56 0.02 0.03 0.06 -1 -1 0.02 0.0117647 0.0106224 116 31 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_108.v common 2.30 vpr 64.32 MiB -1 -1 0.12 17668 1 0.02 -1 -1 30196 -1 -1 19 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65864 32 32 278 238 1 148 83 17 17 289 -1 unnamed_device 24.5 MiB 0.06 1781 952 11063 2996 6474 1593 64.3 MiB 0.06 0.00 4.35429 3.84883 -121.23 -3.84883 3.84883 0.23 0.000287209 0.000263087 0.0212423 0.0195714 -1 -1 -1 -1 32 2005 20 6.65987e+06 240882 554710. 1919.41 0.95 0.109571 0.0957045 22834 132086 -1 1812 17 1077 1863 113788 27875 2.76365 2.76365 -109.874 -2.76365 0 0 701300. 2426.64 0.03 0.03 0.07 -1 -1 0.03 0.0124444 0.0111877 111 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_109.v common 2.11 vpr 64.69 MiB -1 -1 0.13 18056 1 0.03 -1 -1 30172 -1 -1 40 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66244 31 32 373 300 1 181 103 17 17 289 -1 unnamed_device 25.2 MiB 0.10 2567 987 19865 6213 10843 2809 64.7 MiB 0.10 0.00 4.83595 3.99455 -119.479 -3.99455 3.99455 0.24 0.000342915 0.000313639 0.0314504 0.0287291 -1 -1 -1 -1 30 2020 22 6.65987e+06 507120 526063. 1820.29 0.38 0.0796706 0.0710934 22546 126617 -1 1680 17 1092 1822 104124 25102 2.69057 2.69057 -105.166 -2.69057 0 0 666494. 2306.21 0.04 0.06 0.13 -1 -1 0.04 0.0275626 0.0248684 141 64 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_110.v common 1.86 vpr 64.24 MiB -1 -1 0.22 17912 1 0.02 -1 -1 30232 -1 -1 25 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65780 31 32 265 230 1 163 88 17 17 289 -1 unnamed_device 24.2 MiB 0.05 1957 962 7888 1862 5402 624 64.2 MiB 0.04 0.00 4.37039 3.7831 -115.738 -3.7831 3.7831 0.24 0.000271273 0.000248449 0.0127145 0.0116877 -1 -1 -1 -1 32 1927 16 6.65987e+06 316950 554710. 1919.41 0.31 0.0483232 0.0426507 22834 132086 -1 1730 18 773 1167 76810 18412 2.99882 2.99882 -104.533 -2.99882 0 0 701300. 2426.64 0.03 0.03 0.12 -1 -1 0.03 0.0145656 0.0130899 113 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_111.v common 2.22 vpr 64.57 MiB -1 -1 0.16 18056 1 0.03 -1 -1 29800 -1 -1 37 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66124 32 32 349 286 1 171 101 17 17 289 -1 unnamed_device 24.9 MiB 0.06 2312 1008 10206 2347 7231 628 64.6 MiB 0.06 0.00 4.25818 3.54324 -107.169 -3.54324 3.54324 0.23 0.000332085 0.000303616 0.0162243 0.0148741 -1 -1 -1 -1 26 2349 20 6.65987e+06 469086 477104. 1650.88 0.85 0.0996743 0.0869767 21682 110474 -1 2018 17 1073 1917 117571 28694 3.00811 3.00811 -108.65 -3.00811 0 0 585099. 2024.56 0.03 0.04 0.06 -1 -1 0.03 0.0161924 0.0146389 131 57 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_112.v common 2.55 vpr 64.71 MiB -1 -1 0.13 18056 1 0.03 -1 -1 30128 -1 -1 36 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66268 31 32 396 325 1 183 99 17 17 289 -1 unnamed_device 25.2 MiB 0.31 2511 865 8763 1886 5820 1057 64.7 MiB 0.04 0.00 4.68116 3.95996 -121.43 -3.95996 3.95996 0.23 0.000354374 0.00032327 0.0160355 0.0147464 -1 -1 -1 -1 30 2002 20 6.65987e+06 456408 526063. 1820.29 0.94 0.117387 0.102667 22546 126617 -1 1550 23 1220 1942 99122 25765 3.04517 3.04517 -111.679 -3.04517 0 0 666494. 2306.21 0.03 0.05 0.08 -1 -1 0.03 0.0217423 0.0193783 145 91 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_113.v common 2.16 vpr 64.38 MiB -1 -1 0.13 17528 1 0.03 -1 -1 30128 -1 -1 20 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65928 32 32 303 262 1 150 84 17 17 289 -1 unnamed_device 24.5 MiB 0.05 1814 855 8685 1965 6279 441 64.4 MiB 0.05 0.00 3.73364 3.26564 -102.346 -3.26564 3.26564 0.24 0.000288455 0.000264091 0.0153522 0.0140632 -1 -1 -1 -1 30 1748 23 6.65987e+06 253560 526063. 1820.29 0.85 0.110401 0.0963068 22546 126617 -1 1498 21 732 1205 70856 17065 2.63031 2.63031 -100.894 -2.63031 0 0 666494. 2306.21 0.03 0.03 0.07 -1 -1 0.03 0.017499 0.0156765 111 57 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_114.v common 2.55 vpr 64.08 MiB -1 -1 0.11 18052 1 0.03 -1 -1 29772 -1 -1 25 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65616 32 32 290 244 1 177 89 17 17 289 -1 unnamed_device 24.5 MiB 0.05 2414 1034 14345 4099 8382 1864 64.1 MiB 0.08 0.00 4.99075 4.16652 -128.649 -4.16652 4.16652 0.23 0.000836935 0.000781281 0.0238684 0.0218989 -1 -1 -1 -1 26 2468 26 6.65987e+06 316950 477104. 1650.88 1.23 0.120498 0.105531 21682 110474 -1 2134 24 1416 2156 157699 36703 3.04751 3.04751 -115.392 -3.04751 0 0 585099. 2024.56 0.02 0.05 0.06 -1 -1 0.02 0.0174596 0.0154964 123 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_115.v common 2.52 vpr 64.16 MiB -1 -1 0.12 18056 1 0.04 -1 -1 29776 -1 -1 28 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65700 32 32 318 257 1 194 92 17 17 289 -1 unnamed_device 24.9 MiB 0.05 2494 994 15617 4673 8037 2907 64.2 MiB 0.09 0.00 5.51987 4.47824 -122.048 -4.47824 4.47824 0.25 0.000735291 0.000686061 0.0334077 0.0308887 -1 -1 -1 -1 32 2294 23 6.65987e+06 354984 554710. 1919.41 1.08 0.143869 0.126522 22834 132086 -1 1774 21 1187 1626 103869 25571 3.45205 3.45205 -115.407 -3.45205 0 0 701300. 2426.64 0.03 0.04 0.07 -1 -1 0.03 0.0163066 0.0146294 138 30 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_116.v common 2.17 vpr 64.41 MiB -1 -1 0.15 17900 1 0.03 -1 -1 29816 -1 -1 36 29 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65960 29 32 324 268 1 168 97 17 17 289 -1 unnamed_device 24.5 MiB 0.06 2020 1018 6757 1480 4594 683 64.4 MiB 0.04 0.00 4.63015 4.16652 -114.233 -4.16652 4.16652 0.24 0.000324166 0.00029741 0.0121531 0.0112268 -1 -1 -1 -1 26 2263 17 6.65987e+06 456408 477104. 1650.88 0.81 0.10672 0.0933432 21682 110474 -1 1930 17 916 1609 100571 24369 2.92431 2.92431 -101.278 -2.92431 0 0 585099. 2024.56 0.02 0.04 0.07 -1 -1 0.02 0.0152708 0.0135685 129 55 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_117.v common 1.83 vpr 64.79 MiB -1 -1 0.17 18044 1 0.03 -1 -1 29804 -1 -1 29 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66344 32 32 393 312 1 213 93 17 17 289 -1 unnamed_device 25.2 MiB 0.06 2445 1182 15843 4177 9740 1926 64.8 MiB 0.10 0.00 6.02849 5.60583 -175.338 -5.60583 5.60583 0.24 0.000364198 0.000333706 0.0327777 0.0301651 -1 -1 -1 -1 32 2463 22 6.65987e+06 367662 554710. 1919.41 0.36 0.0842253 0.075097 22834 132086 -1 2221 17 1304 1896 104576 26642 4.22277 4.22277 -152.701 -4.22277 0 0 701300. 2426.64 0.03 0.04 0.07 -1 -1 0.03 0.0167933 0.015254 158 65 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_118.v common 2.23 vpr 63.93 MiB -1 -1 0.12 17676 1 0.03 -1 -1 29940 -1 -1 21 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65468 31 32 229 197 1 138 84 17 17 289 -1 unnamed_device 24.1 MiB 0.04 1660 797 8502 1949 6085 468 63.9 MiB 0.04 0.00 3.86484 3.31781 -96.9676 -3.31781 3.31781 0.24 0.000251262 0.000230584 0.0130921 0.0120166 -1 -1 -1 -1 32 1566 18 6.65987e+06 266238 554710. 1919.41 0.87 0.0866868 0.0751474 22834 132086 -1 1391 19 657 1075 65111 16588 2.50751 2.50751 -91.4965 -2.50751 0 0 701300. 2426.64 0.03 0.03 0.08 -1 -1 0.03 0.0126917 0.0113845 100 4 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_119.v common 1.89 vpr 64.77 MiB -1 -1 0.18 18052 1 0.03 -1 -1 29736 -1 -1 37 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66324 32 32 412 334 1 190 101 17 17 289 -1 unnamed_device 24.9 MiB 0.05 2451 1117 18431 5270 10930 2231 64.8 MiB 0.10 0.00 5.26444 4.25378 -140.231 -4.25378 4.25378 0.23 0.000373417 0.000339939 0.0316981 0.0289474 -1 -1 -1 -1 32 2341 20 6.65987e+06 469086 554710. 1919.41 0.35 0.080619 0.0716735 22834 132086 -1 2008 21 1252 1842 124809 28919 3.67551 3.67551 -132.399 -3.67551 0 0 701300. 2426.64 0.05 0.10 0.07 -1 -1 0.05 0.0452931 0.0406668 146 90 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_120.v common 2.82 vpr 64.54 MiB -1 -1 0.15 18056 1 0.03 -1 -1 29804 -1 -1 18 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66092 32 32 376 318 1 156 82 17 17 289 -1 unnamed_device 24.5 MiB 0.09 1828 704 11118 4283 5586 1249 64.5 MiB 0.06 0.00 4.2335 3.6453 -123.384 -3.6453 3.6453 0.24 0.000342878 0.000313621 0.023058 0.0211148 -1 -1 -1 -1 28 2422 44 6.65987e+06 228204 500653. 1732.36 1.43 0.142219 0.124509 21970 115934 -1 1780 19 1300 1811 145425 37952 3.84337 3.84337 -134.566 -3.84337 0 0 612192. 2118.31 0.02 0.04 0.06 -1 -1 0.02 0.0162809 0.0146439 117 96 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_121.v common 3.28 vpr 64.64 MiB -1 -1 0.12 18060 1 0.03 -1 -1 29800 -1 -1 35 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66188 32 32 360 293 1 179 99 17 17 289 -1 unnamed_device 24.9 MiB 0.06 2247 913 17427 4947 8338 4142 64.6 MiB 0.08 0.00 3.91868 3.84552 -113.949 -3.84552 3.84552 0.24 0.000355925 0.00032683 0.0299331 0.027482 -1 -1 -1 -1 30 2270 33 6.65987e+06 443730 526063. 1820.29 1.87 0.141496 0.124872 22546 126617 -1 1646 21 1045 1639 90768 24593 2.74351 2.74351 -97.3413 -2.74351 0 0 666494. 2306.21 0.03 0.04 0.07 -1 -1 0.03 0.0173314 0.0155781 134 60 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_122.v common 3.41 vpr 64.84 MiB -1 -1 0.13 18436 1 0.03 -1 -1 30408 -1 -1 33 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66392 32 32 396 299 1 236 97 17 17 289 -1 unnamed_device 25.2 MiB 0.09 3069 1481 14971 3777 9344 1850 64.8 MiB 0.10 0.00 7.38831 6.08328 -185.229 -6.08328 6.08328 0.24 0.000411097 0.000378951 0.029417 0.0270377 -1 -1 -1 -1 28 3362 36 6.65987e+06 418374 500653. 1732.36 1.91 0.197809 0.176182 21970 115934 -1 2828 20 1964 2892 207521 47864 4.90737 4.90737 -169.574 -4.90737 0 0 612192. 2118.31 0.02 0.06 0.06 -1 -1 0.02 0.0197778 0.0179217 178 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_123.v common 2.17 vpr 64.17 MiB -1 -1 0.14 17660 1 0.02 -1 -1 29808 -1 -1 23 30 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65708 30 32 224 207 1 138 85 17 17 289 -1 unnamed_device 24.1 MiB 0.03 1779 770 11245 2856 7531 858 64.2 MiB 0.05 0.00 3.68981 3.20901 -98.3536 -3.20901 3.20901 0.25 0.000246513 0.000216211 0.0159507 0.0145994 -1 -1 -1 -1 28 1564 19 6.65987e+06 291594 500653. 1732.36 0.87 0.100704 0.088167 21970 115934 -1 1350 17 651 829 50023 12838 2.20351 2.20351 -87.8269 -2.20351 0 0 612192. 2118.31 0.02 0.03 0.06 -1 -1 0.02 0.0142654 0.0125989 93 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_124.v common 2.33 vpr 64.30 MiB -1 -1 0.11 17668 1 0.02 -1 -1 30056 -1 -1 19 30 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65840 30 32 286 239 1 134 81 17 17 289 -1 unnamed_device 24.9 MiB 0.07 1551 682 8831 2129 6271 431 64.3 MiB 0.04 0.00 4.40209 3.8416 -111.334 -3.8416 3.8416 0.23 0.000277254 0.000253555 0.0158328 0.0145297 -1 -1 -1 -1 30 1565 17 6.65987e+06 240882 526063. 1820.29 1.00 0.125437 0.109434 22546 126617 -1 1321 19 741 1248 76607 18509 2.86471 2.86471 -106.925 -2.86471 0 0 666494. 2306.21 0.03 0.03 0.07 -1 -1 0.03 0.0139883 0.0125804 95 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_125.v common 1.67 vpr 64.40 MiB -1 -1 0.11 17672 1 0.04 -1 -1 29780 -1 -1 23 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65948 32 32 296 247 1 157 87 17 17 289 -1 unnamed_device 24.5 MiB 0.04 2143 845 9303 1922 7070 311 64.4 MiB 0.05 0.00 4.04404 3.39881 -108.793 -3.39881 3.39881 0.23 0.000291844 0.000265742 0.0156435 0.0143167 -1 -1 -1 -1 30 2055 22 6.65987e+06 291594 526063. 1820.29 0.36 0.0577119 0.0509962 22546 126617 -1 1649 20 1059 1884 106086 26424 2.57731 2.57731 -102.381 -2.57731 0 0 666494. 2306.21 0.03 0.04 0.07 -1 -1 0.03 0.0142499 0.0127288 119 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_126.v common 1.66 vpr 63.88 MiB -1 -1 0.11 17668 1 0.03 -1 -1 29940 -1 -1 31 25 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65408 25 32 216 194 1 122 88 17 17 289 -1 unnamed_device 24.1 MiB 0.03 1494 614 13153 4634 5792 2727 63.9 MiB 0.05 0.00 3.79264 3.36581 -78.5128 -3.36581 3.36581 0.24 0.000221928 0.000202489 0.0164571 0.0150544 -1 -1 -1 -1 32 1365 25 6.65987e+06 393018 554710. 1919.41 0.32 0.0489517 0.0432483 22834 132086 -1 1113 18 614 985 48919 13492 2.53525 2.53525 -71.42 -2.53525 0 0 701300. 2426.64 0.03 0.03 0.08 -1 -1 0.03 0.0126873 0.0114295 93 29 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_127.v common 1.91 vpr 64.62 MiB -1 -1 0.14 18056 1 0.04 -1 -1 29764 -1 -1 24 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66176 32 32 376 307 1 185 88 17 17 289 -1 unnamed_device 24.7 MiB 0.06 2264 1147 14323 4224 8035 2064 64.6 MiB 0.10 0.00 5.10524 4.17275 -131.194 -4.17275 4.17275 0.25 0.000342368 0.000312581 0.0307727 0.0283674 -1 -1 -1 -1 32 2473 25 6.65987e+06 304272 554710. 1919.41 0.42 0.0914247 0.0815378 22834 132086 -1 2202 25 1395 2545 160708 39277 3.38805 3.38805 -119.812 -3.38805 0 0 701300. 2426.64 0.03 0.06 0.07 -1 -1 0.03 0.0241588 0.0215803 137 72 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_128.v common 1.77 vpr 64.71 MiB -1 -1 0.13 18056 1 0.03 -1 -1 29792 -1 -1 42 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66260 31 32 409 331 1 191 105 17 17 289 -1 unnamed_device 24.9 MiB 0.06 2647 860 12702 3275 8213 1214 64.7 MiB 0.08 0.00 4.50335 3.91658 -121.607 -3.91658 3.91658 0.23 0.000366347 0.000329594 0.0216129 0.0197719 -1 -1 -1 -1 32 2045 24 6.65987e+06 532476 554710. 1919.41 0.38 0.0799359 0.0709708 22834 132086 -1 1761 21 1382 2184 119657 31714 2.82571 2.82571 -107.817 -2.82571 0 0 701300. 2426.64 0.03 0.05 0.08 -1 -1 0.03 0.0226136 0.02042 148 90 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_001.v common 4.08 vpr 65.26 MiB -1 -1 0.12 18060 1 0.03 -1 -1 30128 -1 -1 16 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66828 32 32 354 285 1 191 80 17 17 289 -1 unnamed_device 25.6 MiB 0.85 2453 972 10228 4188 5749 291 65.3 MiB 0.06 0.00 6.53897 5.5107 -161.059 -5.5107 5.5107 0.25 0.000360483 0.000330651 0.0301468 0.0280027 -1 -1 -1 -1 48 2385 23 6.95648e+06 231611 865456. 2994.66 1.81 0.152519 0.134344 28354 207349 -1 1961 26 1704 2847 242432 77762 4.53791 4.53791 -149.014 -4.53791 0 0 1.05005e+06 3633.38 0.04 0.08 0.11 -1 -1 0.04 0.0207781 0.0185925 81 50 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_002.v common 6.05 vpr 64.70 MiB -1 -1 0.13 18444 1 0.03 -1 -1 30380 -1 -1 18 30 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66252 30 32 363 293 1 187 80 17 17 289 -1 unnamed_device 25.5 MiB 1.26 2699 985 12980 3943 7957 1080 64.7 MiB 0.06 0.00 5.32638 4.21658 -134.56 -4.21658 4.21658 0.24 0.000338369 0.000310011 0.0273553 0.0251228 -1 -1 -1 -1 36 2667 32 6.95648e+06 260562 648988. 2245.63 3.39 0.180648 0.159451 26050 158493 -1 2213 23 2112 3019 267785 55858 4.35602 4.35602 -151.278 -4.35602 0 0 828058. 2865.25 0.03 0.06 0.08 -1 -1 0.03 0.0188925 0.0169542 79 63 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_003.v common 3.46 vpr 64.77 MiB -1 -1 0.13 17916 1 0.03 -1 -1 29740 -1 -1 18 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66328 32 32 299 247 1 182 82 17 17 289 -1 unnamed_device 25.2 MiB 0.60 2358 1032 12186 3430 7248 1508 64.8 MiB 0.06 0.00 4.71675 3.78245 -119.015 -3.78245 3.78245 0.24 0.000295122 0.000269011 0.022121 0.0202745 -1 -1 -1 -1 40 2414 23 6.95648e+06 260562 706193. 2443.58 1.50 0.121574 0.106131 26914 176310 -1 2051 18 1192 1596 127749 28397 3.76412 3.76412 -125.019 -3.76412 0 0 926341. 3205.33 0.03 0.04 0.09 -1 -1 0.03 0.0170379 0.0152769 74 29 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_004.v common 3.41 vpr 64.20 MiB -1 -1 0.12 18048 1 0.04 -1 -1 29756 -1 -1 23 29 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65740 29 32 308 248 1 162 84 17 17 289 -1 unnamed_device 25.2 MiB 0.18 2112 720 13077 5176 5901 2000 64.2 MiB 0.06 0.00 4.84222 3.96328 -113.617 -3.96328 3.96328 0.25 0.000302052 0.000274458 0.0235956 0.0215408 -1 -1 -1 -1 40 2085 22 6.95648e+06 332941 706193. 2443.58 1.80 0.148459 0.129635 26914 176310 -1 1621 23 1506 2612 185027 44223 3.91416 3.91416 -121.795 -3.91416 0 0 926341. 3205.33 0.03 0.05 0.10 -1 -1 0.03 0.0165964 0.014824 73 31 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_005.v common 2.47 vpr 64.86 MiB -1 -1 0.11 18056 1 0.03 -1 -1 29800 -1 -1 21 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66420 32 32 336 268 1 167 85 17 17 289 -1 unnamed_device 25.2 MiB 0.20 1783 1032 10315 2877 5917 1521 64.9 MiB 0.05 0.00 4.51952 3.92812 -130.309 -3.92812 3.92812 0.25 0.000322632 0.000292025 0.0200178 0.0182508 -1 -1 -1 -1 38 2695 38 6.95648e+06 303989 678818. 2348.85 0.88 0.0962041 0.0849132 26626 170182 -1 2290 20 1586 2944 220343 47674 3.95326 3.95326 -137.892 -3.95326 0 0 902133. 3121.57 0.03 0.05 0.09 -1 -1 0.03 0.0177714 0.0159486 76 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_006.v common 2.99 vpr 65.46 MiB -1 -1 0.13 18444 1 0.03 -1 -1 29784 -1 -1 25 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 67028 32 32 366 295 1 182 89 17 17 289 -1 unnamed_device 25.6 MiB 0.25 1940 1017 15137 4323 9926 888 65.5 MiB 0.08 0.00 3.4886 3.1127 -116.972 -3.1127 3.1127 0.25 0.0003474 0.00031008 0.0306325 0.0281225 -1 -1 -1 -1 36 2556 21 6.95648e+06 361892 648988. 2245.63 1.35 0.148265 0.129937 26050 158493 -1 2163 22 1481 2233 179619 40338 3.25947 3.25947 -126.143 -3.25947 0 0 828058. 2865.25 0.03 0.05 0.09 -1 -1 0.03 0.0190004 0.0170065 81 58 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_007.v common 5.15 vpr 64.68 MiB -1 -1 0.12 17676 1 0.03 -1 -1 30108 -1 -1 14 27 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66228 27 32 259 221 1 124 73 17 17 289 -1 unnamed_device 25.2 MiB 2.03 1479 544 11169 5105 5436 628 64.7 MiB 0.04 0.00 3.66833 3.46173 -93.1309 -3.46173 3.46173 0.25 0.000261857 0.000239568 0.0209747 0.0192546 -1 -1 -1 -1 38 1555 46 6.95648e+06 202660 678818. 2348.85 1.71 0.145141 0.126544 26626 170182 -1 1272 22 1128 1830 194540 63071 2.72212 2.72212 -92.3383 -2.72212 0 0 902133. 3121.57 0.03 0.06 0.09 -1 -1 0.03 0.0173633 0.0154463 52 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_008.v common 2.44 vpr 65.14 MiB -1 -1 0.11 17676 1 0.03 -1 -1 30192 -1 -1 27 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66704 31 32 271 219 1 157 90 17 17 289 -1 unnamed_device 25.2 MiB 0.13 1731 837 13758 3354 9842 562 65.1 MiB 0.06 0.00 3.236 3.0033 -96.4877 -3.0033 3.0033 0.25 0.000283257 0.000257476 0.0224466 0.0205166 -1 -1 -1 -1 38 2185 35 6.95648e+06 390843 678818. 2348.85 0.94 0.0935904 0.0819904 26626 170182 -1 1935 17 1016 1691 155726 37439 2.85232 2.85232 -101.969 -2.85232 0 0 902133. 3121.57 0.03 0.04 0.09 -1 -1 0.03 0.0128395 0.0115411 69 4 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_009.v common 6.46 vpr 65.11 MiB -1 -1 0.12 18056 1 0.03 -1 -1 30160 -1 -1 13 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66672 31 32 317 271 1 163 76 17 17 289 -1 unnamed_device 25.4 MiB 1.02 2045 984 6476 1579 4344 553 65.1 MiB 0.04 0.00 4.38541 3.20949 -116.851 -3.20949 3.20949 0.25 0.000304035 0.000278359 0.0141149 0.0129919 -1 -1 -1 -1 38 2225 23 6.95648e+06 188184 678818. 2348.85 4.11 0.175878 0.153736 26626 170182 -1 1916 23 1238 1764 156025 32304 3.10437 3.10437 -120.049 -3.10437 0 0 902133. 3121.57 0.03 0.04 0.09 -1 -1 0.03 0.0167635 0.0150094 63 64 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_010.v common 2.47 vpr 64.80 MiB -1 -1 0.12 17676 1 0.02 -1 -1 29756 -1 -1 11 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66356 32 32 298 248 1 150 75 17 17 289 -1 unnamed_device 25.2 MiB 0.52 1624 626 11135 4403 5579 1153 64.8 MiB 0.05 0.00 3.54488 3.30308 -115.111 -3.30308 3.30308 0.25 0.000294589 0.000269238 0.0240851 0.0221711 -1 -1 -1 -1 40 1722 35 6.95648e+06 159232 706193. 2443.58 0.62 0.0818033 0.0720409 26914 176310 -1 1420 24 1290 1850 123276 30882 3.09812 3.09812 -112.612 -3.09812 0 0 926341. 3205.33 0.03 0.04 0.10 -1 -1 0.03 0.0168038 0.0149627 60 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_011.v common 4.11 vpr 64.83 MiB -1 -1 0.11 18056 1 0.03 -1 -1 29584 -1 -1 12 30 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66388 30 32 303 262 1 135 74 17 17 289 -1 unnamed_device 25.2 MiB 0.66 1495 729 9064 2569 5999 496 64.8 MiB 0.04 0.00 3.68438 3.28838 -103.976 -3.28838 3.28838 0.24 0.000292096 0.000267169 0.0187869 0.0172538 -1 -1 -1 -1 34 1814 26 6.95648e+06 173708 618332. 2139.56 2.16 0.138849 0.120791 25762 151098 -1 1490 24 1184 1664 130152 30363 3.42052 3.42052 -114.288 -3.42052 0 0 787024. 2723.27 0.03 0.04 0.08 -1 -1 0.03 0.0178223 0.0157866 54 63 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_012.v common 6.43 vpr 65.00 MiB -1 -1 0.13 17672 1 0.03 -1 -1 30076 -1 -1 13 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66556 32 32 276 237 1 161 77 17 17 289 -1 unnamed_device 25.2 MiB 0.89 1858 901 11324 2936 7996 392 65.0 MiB 0.05 0.00 4.14163 3.40773 -113.867 -3.40773 3.40773 0.25 0.000320972 0.000297119 0.0219671 0.0201439 -1 -1 -1 -1 38 2225 33 6.95648e+06 188184 678818. 2348.85 4.06 0.177221 0.15457 26626 170182 -1 1830 23 1206 1558 121613 27198 3.12917 3.12917 -117.675 -3.12917 0 0 902133. 3121.57 0.03 0.04 0.10 -1 -1 0.03 0.0181981 0.0163783 61 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_013.v common 7.28 vpr 64.84 MiB -1 -1 0.12 18444 1 0.03 -1 -1 29752 -1 -1 17 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66392 32 32 344 272 1 194 81 17 17 289 -1 unnamed_device 25.2 MiB 1.00 2661 1052 13556 4454 6679 2423 64.8 MiB 0.07 0.00 4.95968 4.03143 -135.537 -4.03143 4.03143 0.24 0.000326325 0.000299541 0.0282066 0.0259143 -1 -1 -1 -1 38 2740 31 6.95648e+06 246087 678818. 2348.85 4.74 0.196684 0.172533 26626 170182 -1 2270 20 1490 2238 167680 36771 3.49922 3.49922 -132.659 -3.49922 0 0 902133. 3121.57 0.04 0.07 0.13 -1 -1 0.04 0.0232164 0.0208544 80 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_014.v common 3.32 vpr 65.40 MiB -1 -1 0.19 18056 1 0.04 -1 -1 30120 -1 -1 25 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66968 32 32 363 295 1 174 89 17 17 289 -1 unnamed_device 25.6 MiB 0.20 2639 1006 16721 5083 10286 1352 65.4 MiB 0.07 0.00 5.50502 4.26608 -134.261 -4.26608 4.26608 0.24 0.000347966 0.00031851 0.0304499 0.0278639 -1 -1 -1 -1 44 2225 22 6.95648e+06 361892 787024. 2723.27 1.60 0.154803 0.135854 27778 195446 -1 2034 24 1656 2393 186636 39712 3.87492 3.87492 -138.683 -3.87492 0 0 997811. 3452.63 0.04 0.05 0.11 -1 -1 0.04 0.0186054 0.0166199 78 61 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_015.v common 3.30 vpr 64.66 MiB -1 -1 0.19 18060 1 0.03 -1 -1 29916 -1 -1 18 29 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66216 29 32 248 215 1 132 79 17 17 289 -1 unnamed_device 25.6 MiB 0.37 1589 651 12078 4589 5218 2271 64.7 MiB 0.05 0.00 3.39735 2.90715 -89.179 -2.90715 2.90715 0.25 0.000252159 0.00023083 0.0201331 0.0184469 -1 -1 -1 -1 32 1836 31 6.95648e+06 260562 586450. 2029.24 1.34 0.118347 0.102735 25474 144626 -1 1503 20 997 1583 125466 28770 3.05702 3.05702 -99.4476 -3.05702 0 0 744469. 2576.02 0.04 0.06 0.14 -1 -1 0.04 0.0205365 0.0182302 55 27 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_016.v common 2.73 vpr 64.73 MiB -1 -1 0.12 18060 1 0.04 -1 -1 29784 -1 -1 17 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66284 32 32 370 297 1 178 81 17 17 289 -1 unnamed_device 25.6 MiB 0.39 2049 1029 11981 3954 6378 1649 64.7 MiB 0.06 0.00 3.37235 3.1427 -120.775 -3.1427 3.1427 0.25 0.00035851 0.000328148 0.0268688 0.0246765 -1 -1 -1 -1 36 2643 31 6.95648e+06 246087 648988. 2245.63 0.88 0.10544 0.0937733 26050 158493 -1 2255 24 1811 2949 246149 54989 3.28927 3.28927 -130.375 -3.28927 0 0 828058. 2865.25 0.03 0.06 0.08 -1 -1 0.03 0.0197367 0.0176201 77 58 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_017.v common 4.33 vpr 65.27 MiB -1 -1 0.12 18060 1 0.03 -1 -1 29808 -1 -1 17 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66840 32 32 338 269 1 190 81 17 17 289 -1 unnamed_device 26.0 MiB 1.14 2597 1132 10756 3252 6270 1234 65.3 MiB 0.09 0.00 4.76516 3.87916 -128.033 -3.87916 3.87916 0.27 0.000563673 0.000514764 0.0381079 0.0349105 -1 -1 -1 -1 42 2528 39 6.95648e+06 246087 744469. 2576.02 1.76 0.175647 0.154706 27202 183097 -1 2217 22 1720 2455 228601 47027 3.26597 3.26597 -129.76 -3.26597 0 0 949917. 3286.91 0.03 0.05 0.10 -1 -1 0.03 0.0178021 0.0160045 78 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_018.v common 2.86 vpr 64.37 MiB -1 -1 0.12 18440 1 0.03 -1 -1 30132 -1 -1 16 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65912 32 32 323 276 1 148 80 17 17 289 -1 unnamed_device 25.1 MiB 0.47 1940 709 13324 5680 7328 316 64.4 MiB 0.06 0.00 2.8806 2.25046 -92.451 -2.25046 2.25046 0.24 0.000321601 0.000294567 0.0263952 0.0242186 -1 -1 -1 -1 38 2063 49 6.95648e+06 231611 678818. 2348.85 1.00 0.109513 0.096137 26626 170182 -1 1469 19 1138 1719 118571 27421 2.31168 2.31168 -99.7954 -2.31168 0 0 902133. 3121.57 0.04 0.04 0.11 -1 -1 0.04 0.0146975 0.0132061 61 65 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_019.v common 2.39 vpr 64.57 MiB -1 -1 0.11 17676 1 0.02 -1 -1 29840 -1 -1 11 30 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66124 30 32 222 206 1 114 73 17 17 289 -1 unnamed_device 25.2 MiB 0.09 1511 777 10865 4570 5988 307 64.6 MiB 0.04 0.00 2.51091 2.19546 -86.0348 -2.19546 2.19546 0.24 0.000228699 0.000208066 0.0176833 0.0161505 -1 -1 -1 -1 30 1680 41 6.95648e+06 159232 556674. 1926.21 1.04 0.0942002 0.0812793 25186 138497 -1 1470 25 872 1208 156123 52175 2.24868 2.24868 -93.6233 -2.24868 0 0 706193. 2443.58 0.03 0.05 0.07 -1 -1 0.03 0.0130512 0.0115238 44 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_020.v common 4.25 vpr 65.08 MiB -1 -1 0.12 18060 1 0.03 -1 -1 29832 -1 -1 14 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66644 31 32 291 243 1 167 77 17 17 289 -1 unnamed_device 25.2 MiB 1.28 1942 915 11161 3690 6402 1069 65.1 MiB 0.05 0.00 5.06493 4.53133 -147.051 -4.53133 4.53133 0.25 0.000298558 0.000268472 0.0217239 0.0198683 -1 -1 -1 -1 36 2497 27 6.95648e+06 202660 648988. 2245.63 1.65 0.13307 0.116025 26050 158493 -1 2085 22 1516 2176 182935 41144 4.25897 4.25897 -152.532 -4.25897 0 0 828058. 2865.25 0.03 0.05 0.08 -1 -1 0.03 0.0156028 0.0139499 68 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_021.v common 4.09 vpr 65.23 MiB -1 -1 0.14 18060 1 0.03 -1 -1 30352 -1 -1 27 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66792 32 32 342 271 1 172 91 17 17 289 -1 unnamed_device 26.0 MiB 0.15 2240 900 16819 7148 9182 489 65.2 MiB 0.09 0.00 4.59829 3.69419 -127.892 -3.69419 3.69419 0.25 0.000327843 0.000299751 0.0411088 0.0379383 -1 -1 -1 -1 36 2377 35 6.95648e+06 390843 648988. 2245.63 2.54 0.186161 0.164863 26050 158493 -1 1845 26 1702 2575 179217 41202 3.87196 3.87196 -134.248 -3.87196 0 0 828058. 2865.25 0.03 0.06 0.08 -1 -1 0.03 0.0217552 0.0194069 79 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_022.v common 7.73 vpr 65.38 MiB -1 -1 0.18 17676 1 0.03 -1 -1 30120 -1 -1 16 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66948 32 32 372 300 1 200 80 17 17 289 -1 unnamed_device 25.6 MiB 0.78 2415 1121 6444 1474 4751 219 65.4 MiB 0.04 0.00 5.37301 4.45576 -133.655 -4.45576 4.45576 0.26 0.00035798 0.00032954 0.0151061 0.0139068 -1 -1 -1 -1 38 2880 26 6.95648e+06 231611 678818. 2348.85 5.52 0.175453 0.15353 26626 170182 -1 2526 22 1727 2641 222774 46845 4.34031 4.34031 -139.36 -4.34031 0 0 902133. 3121.57 0.03 0.06 0.09 -1 -1 0.03 0.0185616 0.0166569 82 62 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_023.v common 2.66 vpr 64.47 MiB -1 -1 0.10 18060 1 0.02 -1 -1 30160 -1 -1 15 26 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66020 26 32 190 182 1 104 73 17 17 289 -1 unnamed_device 25.2 MiB 0.20 1222 421 8281 3372 4348 561 64.5 MiB 0.03 0.00 2.67211 2.19726 -65.4152 -2.19726 2.19726 0.26 0.000228356 0.00020948 0.0126875 0.0116165 -1 -1 -1 -1 34 1125 29 6.95648e+06 217135 618332. 2139.56 1.06 0.0810129 0.0700315 25762 151098 -1 896 17 520 688 56109 14316 2.11048 2.11048 -70.2765 -2.11048 0 0 787024. 2723.27 0.04 0.03 0.12 -1 -1 0.04 0.0133129 0.0119175 44 30 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_024.v common 6.89 vpr 64.69 MiB -1 -1 0.10 17676 1 0.03 -1 -1 29772 -1 -1 17 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66240 32 32 285 227 1 159 81 17 17 289 -1 unnamed_device 25.2 MiB 0.35 1875 1004 10231 3152 5666 1413 64.7 MiB 0.06 0.00 5.1927 4.35141 -124.49 -4.35141 4.35141 0.25 0.000474772 0.000449994 0.0235867 0.0218554 -1 -1 -1 -1 36 2522 34 6.95648e+06 246087 648988. 2245.63 5.19 0.179034 0.157958 26050 158493 -1 2149 24 1520 2509 215703 44929 4.03036 4.03036 -133.912 -4.03036 0 0 828058. 2865.25 0.03 0.05 0.08 -1 -1 0.03 0.0165415 0.0147724 66 3 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_025.v common 2.43 vpr 64.38 MiB -1 -1 0.09 17676 1 0.02 -1 -1 30096 -1 -1 10 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65928 32 32 173 169 1 111 74 17 17 289 -1 unnamed_device 25.1 MiB 0.07 1407 728 7049 2858 4069 122 64.4 MiB 0.02 0.00 2.65931 2.13126 -73.9387 -2.13126 2.13126 0.35 0.000195657 0.000177916 0.0099747 0.00911854 -1 -1 -1 -1 32 1341 22 6.95648e+06 144757 586450. 2029.24 1.01 0.0883843 0.0759555 25474 144626 -1 1180 22 633 749 76305 16284 2.09038 2.09038 -81.6951 -2.09038 0 0 744469. 2576.02 0.03 0.03 0.08 -1 -1 0.03 0.0107041 0.00951017 43 3 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_026.v common 5.27 vpr 65.07 MiB -1 -1 0.12 18056 1 0.03 -1 -1 29532 -1 -1 19 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66636 32 32 300 245 1 159 83 17 17 289 -1 unnamed_device 25.2 MiB 0.32 1864 913 6383 1452 4629 302 65.1 MiB 0.04 0.00 5.25865 4.40051 -125.247 -4.40051 4.40051 0.26 0.000324656 0.000298873 0.0125488 0.0115213 -1 -1 -1 -1 34 2450 32 6.95648e+06 275038 618332. 2139.56 3.53 0.144068 0.12555 25762 151098 -1 1968 22 1275 2064 154484 34551 3.92096 3.92096 -128.528 -3.92096 0 0 787024. 2723.27 0.03 0.04 0.08 -1 -1 0.03 0.0158121 0.0141592 67 24 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_027.v common 3.01 vpr 64.59 MiB -1 -1 0.15 17912 1 0.04 -1 -1 29932 -1 -1 27 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66136 32 32 297 233 1 170 91 17 17 289 -1 unnamed_device 25.6 MiB 0.11 1827 924 6823 1513 4978 332 64.6 MiB 0.04 0.00 3.55265 2.9965 -104.682 -2.9965 2.9965 0.25 0.000516058 0.000468551 0.0159334 0.0147054 -1 -1 -1 -1 36 2414 49 6.95648e+06 390843 648988. 2245.63 1.42 0.124523 0.109913 26050 158493 -1 2132 24 1474 2395 199348 43414 3.61137 3.61137 -119.408 -3.61137 0 0 828058. 2865.25 0.03 0.05 0.09 -1 -1 0.03 0.0172033 0.015398 77 3 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_028.v common 8.45 vpr 64.66 MiB -1 -1 0.12 18036 1 0.04 -1 -1 30072 -1 -1 23 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66212 32 32 338 277 1 172 87 17 17 289 -1 unnamed_device 25.2 MiB 0.57 2669 874 15063 4561 8642 1860 64.7 MiB 0.07 0.00 5.40282 4.22168 -126.749 -4.22168 4.22168 0.24 0.000319671 0.000291658 0.02712 0.0248042 -1 -1 -1 -1 36 2848 47 6.95648e+06 332941 648988. 2245.63 6.44 0.185299 0.162867 26050 158493 -1 2116 21 1518 2498 224468 49562 4.10051 4.10051 -134.747 -4.10051 0 0 828058. 2865.25 0.03 0.06 0.08 -1 -1 0.03 0.0182949 0.0163777 74 50 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_029.v common 3.03 vpr 64.75 MiB -1 -1 0.19 17676 1 0.02 -1 -1 29812 -1 -1 15 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66300 32 32 284 241 1 139 79 17 17 289 -1 unnamed_device 25.6 MiB 0.33 1680 676 6670 1523 4966 181 64.7 MiB 0.04 0.00 3.27205 2.9051 -100.648 -2.9051 2.9051 0.24 0.000284299 0.000260273 0.0131353 0.012032 -1 -1 -1 -1 42 1765 28 6.95648e+06 217135 744469. 2576.02 1.26 0.115797 0.100284 27202 183097 -1 1497 22 1119 1800 140720 33242 2.86952 2.86952 -107.095 -2.86952 0 0 949917. 3286.91 0.03 0.04 0.10 -1 -1 0.03 0.0149791 0.0133634 57 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_030.v common 2.72 vpr 64.80 MiB -1 -1 0.14 18060 1 0.02 -1 -1 29852 -1 -1 19 30 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66356 30 32 262 227 1 134 81 17 17 289 -1 unnamed_device 25.2 MiB 0.12 1538 820 8831 2040 6273 518 64.8 MiB 0.05 0.00 3.47888 3.21595 -101.099 -3.21595 3.21595 0.36 0.000386212 0.000355056 0.0224496 0.020607 -1 -1 -1 -1 32 1847 36 6.95648e+06 275038 586450. 2029.24 1.08 0.108432 0.0945639 25474 144626 -1 1689 22 1091 1749 148756 32107 3.02582 3.02582 -108.609 -3.02582 0 0 744469. 2576.02 0.03 0.05 0.08 -1 -1 0.03 0.0174901 0.0155263 59 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_031.v common 4.82 vpr 64.29 MiB -1 -1 0.14 16988 1 0.03 -1 -1 29608 -1 -1 21 28 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65832 28 32 260 223 1 135 81 17 17 289 -1 unnamed_device 25.2 MiB 0.12 1490 680 8131 2137 5414 580 64.3 MiB 0.04 0.00 3.44925 2.9041 -94.451 -2.9041 2.9041 0.25 0.000306648 0.000271689 0.0168356 0.0155005 -1 -1 -1 -1 36 1823 27 6.95648e+06 303989 648988. 2245.63 3.31 0.15174 0.132313 26050 158493 -1 1652 18 950 1569 148138 33466 3.16212 3.16212 -107.018 -3.16212 0 0 828058. 2865.25 0.03 0.04 0.09 -1 -1 0.03 0.0121723 0.0109062 60 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_032.v common 3.39 vpr 64.12 MiB -1 -1 0.12 17912 1 0.03 -1 -1 29812 -1 -1 13 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65664 32 32 253 210 1 149 77 17 17 289 -1 unnamed_device 24.9 MiB 0.12 1566 824 4152 861 3106 185 64.1 MiB 0.03 0.00 3.63718 3.35753 -114.051 -3.35753 3.35753 0.26 0.000266189 0.000243736 0.0126143 0.0117093 -1 -1 -1 -1 38 1997 21 6.95648e+06 188184 678818. 2348.85 1.83 0.153 0.132863 26626 170182 -1 1719 21 1284 1950 159352 33411 2.89152 2.89152 -114.478 -2.89152 0 0 902133. 3121.57 0.03 0.04 0.12 -1 -1 0.03 0.0157463 0.0139925 59 3 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_033.v common 3.90 vpr 64.73 MiB -1 -1 0.20 17676 1 0.02 -1 -1 29760 -1 -1 17 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66288 31 32 271 231 1 143 80 17 17 289 -1 unnamed_device 25.2 MiB 0.11 1688 869 8680 2729 4472 1479 64.7 MiB 0.04 0.00 3.72648 3.16398 -108.388 -3.16398 3.16398 0.25 0.00027281 0.000249896 0.0156627 0.0143815 -1 -1 -1 -1 34 2179 22 6.95648e+06 246087 618332. 2139.56 2.41 0.131565 0.114533 25762 151098 -1 2014 21 1110 1930 166652 35472 3.09012 3.09012 -116.571 -3.09012 0 0 787024. 2723.27 0.03 0.04 0.08 -1 -1 0.03 0.0141418 0.0126396 60 30 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_034.v common 4.04 vpr 65.15 MiB -1 -1 0.16 18056 1 0.02 -1 -1 29796 -1 -1 20 29 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66712 29 32 291 250 1 148 81 17 17 289 -1 unnamed_device 25.2 MiB 0.55 1854 689 13206 5558 7105 543 65.1 MiB 0.06 0.00 2.91366 2.41246 -87.9827 -2.41246 2.41246 0.25 0.000281282 0.000256616 0.0241148 0.0221193 -1 -1 -1 -1 36 2057 43 6.95648e+06 289514 648988. 2245.63 1.88 0.158976 0.138171 26050 158493 -1 1583 29 1369 1971 208107 67819 2.98053 2.98053 -102.288 -2.98053 0 0 828058. 2865.25 0.03 0.07 0.09 -1 -1 0.03 0.0181052 0.0160143 63 54 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_035.v common 7.24 vpr 64.71 MiB -1 -1 0.12 18060 1 0.03 -1 -1 29616 -1 -1 33 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66264 32 32 367 282 1 193 97 17 17 289 -1 unnamed_device 25.6 MiB 0.21 2526 1025 17413 5779 8975 2659 64.7 MiB 0.08 0.00 5.03788 4.17868 -123.252 -4.17868 4.17868 0.25 0.000357228 0.000325244 0.030235 0.0275701 -1 -1 -1 -1 42 2595 19 6.95648e+06 477698 744469. 2576.02 5.55 0.206893 0.181707 27202 183097 -1 2211 31 1710 2988 296315 99088 3.69472 3.69472 -122.109 -3.69472 0 0 949917. 3286.91 0.03 0.09 0.11 -1 -1 0.03 0.0247971 0.0221375 91 29 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_036.v common 3.70 vpr 65.41 MiB -1 -1 0.12 18300 1 0.03 -1 -1 29748 -1 -1 32 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66984 32 32 391 311 1 184 96 17 17 289 -1 unnamed_device 25.6 MiB 0.38 2256 862 16740 6194 8330 2216 65.4 MiB 0.08 0.00 3.74582 3.41048 -122.287 -3.41048 3.41048 0.34 0.000358304 0.000326722 0.0296809 0.0270057 -1 -1 -1 -1 44 2238 38 6.95648e+06 463222 787024. 2723.27 1.75 0.167056 0.145504 27778 195446 -1 1850 25 2011 3068 224363 51977 3.35632 3.35632 -126.689 -3.35632 0 0 997811. 3452.63 0.04 0.06 0.12 -1 -1 0.04 0.0204384 0.0182152 88 65 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_037.v common 3.57 vpr 64.55 MiB -1 -1 0.12 18052 1 0.02 -1 -1 30172 -1 -1 13 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66100 31 32 279 237 1 159 76 17 17 289 -1 unnamed_device 25.5 MiB 0.74 1859 944 11436 4031 5937 1468 64.6 MiB 0.05 0.00 4.42062 3.66882 -116.881 -3.66882 3.66882 0.25 0.000536804 0.000511655 0.0225096 0.020716 -1 -1 -1 -1 40 2026 25 6.95648e+06 188184 706193. 2443.58 1.40 0.115557 0.10067 26914 176310 -1 1930 22 1362 1958 174593 39631 3.25737 3.25737 -121.471 -3.25737 0 0 926341. 3205.33 0.03 0.05 0.13 -1 -1 0.03 0.0175896 0.015843 65 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_038.v common 3.50 vpr 64.73 MiB -1 -1 0.13 18060 1 0.04 -1 -1 30156 -1 -1 19 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66288 31 32 370 297 1 179 82 17 17 289 -1 unnamed_device 26.0 MiB 0.37 2058 981 11474 4741 6449 284 64.7 MiB 0.06 0.00 4.15263 3.41873 -120.517 -3.41873 3.41873 0.25 0.000343553 0.000314072 0.0242446 0.0222411 -1 -1 -1 -1 36 2791 28 6.95648e+06 275038 648988. 2245.63 1.51 0.113157 0.100064 26050 158493 -1 2313 25 1860 2917 241256 52575 3.29867 3.29867 -128.902 -3.29867 0 0 828058. 2865.25 0.03 0.06 0.08 -1 -1 0.03 0.0199085 0.017774 78 61 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_039.v common 4.99 vpr 65.45 MiB -1 -1 0.12 18052 1 0.03 -1 -1 29748 -1 -1 21 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 67020 31 32 377 302 1 231 84 17 17 289 -1 unnamed_device 26.0 MiB 1.01 2986 1206 16188 5856 7795 2537 65.4 MiB 0.09 0.00 6.98421 5.23991 -167.77 -5.23991 5.23991 0.24 0.000345786 0.000316332 0.0397705 0.0366514 -1 -1 -1 -1 44 3341 26 6.95648e+06 303989 787024. 2723.27 2.49 0.212114 0.187739 27778 195446 -1 2677 24 2355 3504 330191 67709 4.75275 4.75275 -167.178 -4.75275 0 0 997811. 3452.63 0.04 0.07 0.11 -1 -1 0.04 0.0199259 0.0178701 99 64 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_040.v common 3.87 vpr 65.04 MiB -1 -1 0.12 18444 1 0.03 -1 -1 30152 -1 -1 17 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66600 31 32 383 305 1 201 80 17 17 289 -1 unnamed_device 25.6 MiB 1.19 2460 938 14012 6050 7484 478 65.0 MiB 0.07 0.00 5.07595 4.39319 -147.97 -4.39319 4.39319 0.30 0.000353719 0.000323381 0.0319885 0.0293714 -1 -1 -1 -1 46 2574 33 6.95648e+06 246087 828058. 2865.25 1.19 0.122738 0.108773 28066 200906 -1 2087 21 1723 2601 166326 39721 4.33271 4.33271 -148.753 -4.33271 0 0 1.01997e+06 3529.29 0.04 0.05 0.11 -1 -1 0.04 0.0184975 0.0166052 88 64 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_041.v common 6.56 vpr 63.99 MiB -1 -1 0.12 18060 1 0.03 -1 -1 29748 -1 -1 23 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65524 31 32 352 285 1 177 86 17 17 289 -1 unnamed_device 25.3 MiB 0.61 1905 1063 13505 4619 6904 1982 64.0 MiB 0.07 0.00 3.86153 3.50353 -122.837 -3.50353 3.50353 0.25 0.000334119 0.000306413 0.0260397 0.023895 -1 -1 -1 -1 38 2691 24 6.95648e+06 332941 678818. 2348.85 4.55 0.175979 0.154524 26626 170182 -1 2207 20 1543 2431 175549 38503 3.17607 3.17607 -124.233 -3.17607 0 0 902133. 3121.57 0.03 0.05 0.09 -1 -1 0.03 0.0179781 0.0161697 79 55 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_042.v common 2.72 vpr 65.22 MiB -1 -1 0.13 18060 1 0.03 -1 -1 29772 -1 -1 18 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66788 32 32 291 242 1 173 82 17 17 289 -1 unnamed_device 25.4 MiB 0.58 2234 1084 10050 2925 5856 1269 65.2 MiB 0.05 0.00 5.02688 4.05268 -121.011 -4.05268 4.05268 0.24 0.000289648 0.000264781 0.018507 0.0170161 -1 -1 -1 -1 36 2592 25 6.95648e+06 260562 648988. 2245.63 0.78 0.0776036 0.068171 26050 158493 -1 2252 21 1397 2007 181674 36928 3.91432 3.91432 -125.021 -3.91432 0 0 828058. 2865.25 0.03 0.04 0.09 -1 -1 0.03 0.0149357 0.0133601 70 27 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_043.v common 8.70 vpr 65.39 MiB -1 -1 0.13 18060 1 0.03 -1 -1 30288 -1 -1 28 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66964 32 32 457 356 1 214 92 17 17 289 -1 unnamed_device 26.0 MiB 0.61 3011 1199 9614 2248 6243 1123 65.4 MiB 0.06 0.00 5.60998 4.24958 -145.469 -4.24958 4.24958 0.25 0.000422765 0.000388597 0.0221656 0.0203896 -1 -1 -1 -1 36 3239 50 6.95648e+06 405319 648988. 2245.63 6.67 0.281134 0.247038 26050 158493 -1 2666 23 2075 3298 272107 58339 4.23492 4.23492 -151.925 -4.23492 0 0 828058. 2865.25 0.03 0.07 0.09 -1 -1 0.03 0.0229493 0.0205874 97 87 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_044.v common 1.98 vpr 64.71 MiB -1 -1 0.11 17912 1 0.02 -1 -1 30264 -1 -1 17 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66268 31 32 261 225 1 138 80 17 17 289 -1 unnamed_device 25.6 MiB 0.21 1501 818 9024 2908 5023 1093 64.7 MiB 0.04 0.00 3.4146 3.0387 -101.681 -3.0387 3.0387 0.25 0.000266387 0.000243369 0.0156035 0.0143094 -1 -1 -1 -1 32 2004 40 6.95648e+06 246087 586450. 2029.24 0.49 0.0599967 0.0526947 25474 144626 -1 1709 22 1202 1786 156398 34480 3.27367 3.27367 -111.108 -3.27367 0 0 744469. 2576.02 0.03 0.04 0.08 -1 -1 0.03 0.0143091 0.0127558 58 28 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_045.v common 4.00 vpr 64.32 MiB -1 -1 0.12 18060 1 0.03 -1 -1 29872 -1 -1 18 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65864 31 32 337 267 1 199 81 17 17 289 -1 unnamed_device 25.6 MiB 0.71 2145 1112 10931 4151 5627 1153 64.3 MiB 0.06 0.00 4.85719 4.35599 -139.539 -4.35599 4.35599 0.25 0.000344925 0.000316949 0.0228979 0.021019 -1 -1 -1 -1 46 2578 27 6.95648e+06 260562 828058. 2865.25 1.80 0.152247 0.133516 28066 200906 -1 2222 20 1385 2128 175307 36107 4.35122 4.35122 -143.095 -4.35122 0 0 1.01997e+06 3529.29 0.04 0.05 0.11 -1 -1 0.04 0.0206612 0.0185831 82 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_046.v common 5.18 vpr 65.28 MiB -1 -1 0.11 18060 1 0.03 -1 -1 29724 -1 -1 26 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66848 32 32 349 284 1 175 90 17 17 289 -1 unnamed_device 25.6 MiB 0.32 2157 965 10542 2851 6614 1077 65.3 MiB 0.06 0.00 3.52265 3.1127 -108.745 -3.1127 3.1127 0.24 0.000330891 0.000302135 0.0192964 0.0176786 -1 -1 -1 -1 36 2961 34 6.95648e+06 376368 648988. 2245.63 3.51 0.168227 0.14795 26050 158493 -1 2355 20 1415 2400 212790 47241 3.46317 3.46317 -122.988 -3.46317 0 0 828058. 2865.25 0.03 0.05 0.08 -1 -1 0.03 0.0163403 0.0146583 78 53 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_047.v common 4.70 vpr 65.20 MiB -1 -1 0.11 17672 1 0.03 -1 -1 29816 -1 -1 19 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66768 32 32 291 230 1 161 83 17 17 289 -1 unnamed_device 25.6 MiB 0.22 1764 988 11603 4009 6122 1472 65.2 MiB 0.05 0.00 4.66672 3.99627 -123.227 -3.99627 3.99627 0.25 0.000450265 0.000422578 0.0219192 0.0201582 -1 -1 -1 -1 36 2563 29 6.95648e+06 275038 648988. 2245.63 2.93 0.158681 0.13936 26050 158493 -1 2183 22 1428 2520 202696 44123 3.83276 3.83276 -133.9 -3.83276 0 0 828058. 2865.25 0.04 0.08 0.14 -1 -1 0.04 0.0269728 0.0241938 70 3 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_048.v common 3.77 vpr 65.38 MiB -1 -1 0.17 18056 1 0.04 -1 -1 30056 -1 -1 16 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66952 32 32 353 287 1 190 80 17 17 289 -1 unnamed_device 25.6 MiB 1.14 2163 1097 11948 3658 6620 1670 65.4 MiB 0.06 0.00 4.63715 4.346 -136.985 -4.346 4.346 0.27 0.000328162 0.000300805 0.0253231 0.0232672 -1 -1 -1 -1 34 2975 47 6.95648e+06 231611 618332. 2139.56 0.96 0.10334 0.0912855 25762 151098 -1 2354 20 1518 2047 175086 38630 3.82676 3.82676 -139.13 -3.82676 0 0 787024. 2723.27 0.03 0.05 0.08 -1 -1 0.03 0.0164645 0.014809 76 55 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_049.v common 2.80 vpr 65.41 MiB -1 -1 0.12 18060 1 0.03 -1 -1 30140 -1 -1 29 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66976 32 32 361 291 1 178 93 17 17 289 -1 unnamed_device 25.6 MiB 0.36 2190 1077 15423 4714 8722 1987 65.4 MiB 0.07 0.00 3.80407 3.1427 -117.276 -3.1427 3.1427 0.24 0.000335494 0.00030613 0.0268972 0.0246316 -1 -1 -1 -1 36 2642 22 6.95648e+06 419795 648988. 2245.63 1.07 0.115534 0.102164 26050 158493 -1 2227 23 1499 2470 188526 40710 3.00577 3.00577 -119.751 -3.00577 0 0 828058. 2865.25 0.03 0.06 0.09 -1 -1 0.03 0.0206086 0.0184721 81 55 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_050.v common 3.78 vpr 65.39 MiB -1 -1 0.21 18056 1 0.04 -1 -1 29324 -1 -1 28 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66960 32 32 382 305 1 184 92 17 17 289 -1 unnamed_device 26.0 MiB 0.26 1992 927 11891 3545 6012 2334 65.4 MiB 0.06 0.00 4.22719 3.72599 -122.298 -3.72599 3.72599 0.25 0.000354423 0.000324206 0.022889 0.0209982 -1 -1 -1 -1 38 2841 35 6.95648e+06 405319 678818. 2348.85 1.97 0.123296 0.108865 26626 170182 -1 2185 23 1596 2460 203199 45565 3.39842 3.39842 -128.958 -3.39842 0 0 902133. 3121.57 0.03 0.06 0.09 -1 -1 0.03 0.0194308 0.0173982 86 62 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_051.v common 3.43 vpr 64.74 MiB -1 -1 0.11 18056 1 0.03 -1 -1 29772 -1 -1 22 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66292 32 32 306 248 1 160 86 17 17 289 -1 unnamed_device 25.2 MiB 0.41 1773 991 12182 3165 8076 941 64.7 MiB 0.06 0.00 4.66977 4.24147 -124.389 -4.24147 4.24147 0.25 0.000303542 0.000277176 0.0212523 0.0194711 -1 -1 -1 -1 44 2187 23 6.95648e+06 318465 787024. 2723.27 1.56 0.130789 0.114575 27778 195446 -1 1919 20 1150 1977 158945 33393 3.70736 3.70736 -126.727 -3.70736 0 0 997811. 3452.63 0.04 0.04 0.11 -1 -1 0.04 0.0150716 0.01354 70 24 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_052.v common 3.63 vpr 64.13 MiB -1 -1 0.16 18056 1 0.03 -1 -1 29560 -1 -1 17 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65668 32 32 319 257 1 191 81 17 17 289 -1 unnamed_device 24.9 MiB 0.60 2389 1129 13556 4515 7064 1977 64.1 MiB 0.07 0.00 5.21638 4.27023 -132.909 -4.27023 4.27023 0.25 0.00032728 0.00029993 0.0285934 0.0263253 -1 -1 -1 -1 46 2261 24 6.95648e+06 246087 828058. 2865.25 1.56 0.139003 0.122239 28066 200906 -1 2053 19 1489 2067 148493 32149 3.91922 3.91922 -135.811 -3.91922 0 0 1.01997e+06 3529.29 0.04 0.06 0.11 -1 -1 0.04 0.0243854 0.0220312 78 29 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_053.v common 4.48 vpr 64.78 MiB -1 -1 0.13 18060 1 0.03 -1 -1 29732 -1 -1 17 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66332 31 32 373 299 1 197 80 17 17 289 -1 unnamed_device 26.0 MiB 0.83 2531 897 9540 3871 5214 455 64.8 MiB 0.05 0.00 5.05188 4.17558 -131.538 -4.17558 4.17558 0.25 0.00034728 0.000317831 0.022077 0.0202609 -1 -1 -1 -1 52 2602 45 6.95648e+06 246087 926341. 3205.33 2.17 0.168751 0.148119 29218 227130 -1 1929 23 1708 2759 217252 49174 3.83221 3.83221 -127.134 -3.83221 0 0 1.14541e+06 3963.36 0.04 0.05 0.12 -1 -1 0.04 0.0187353 0.0168008 84 62 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_054.v common 8.14 vpr 65.36 MiB -1 -1 0.18 18296 1 0.03 -1 -1 30104 -1 -1 15 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66928 32 32 387 315 1 182 79 17 17 289 -1 unnamed_device 25.6 MiB 0.44 1967 1073 7177 2229 3943 1005 65.4 MiB 0.04 0.00 4.52855 3.87614 -130.615 -3.87614 3.87614 0.31 0.000389174 0.000358475 0.0179409 0.0165194 -1 -1 -1 -1 36 3074 47 6.95648e+06 217135 648988. 2245.63 6.15 0.265094 0.23242 26050 158493 -1 2610 24 1796 3077 296639 62485 4.18392 4.18392 -145.171 -4.18392 0 0 828058. 2865.25 0.03 0.07 0.08 -1 -1 0.03 0.020107 0.0180066 76 77 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_055.v common 2.83 vpr 64.64 MiB -1 -1 0.10 17912 1 0.02 -1 -1 29788 -1 -1 16 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66192 32 32 251 219 1 136 80 17 17 289 -1 unnamed_device 25.2 MiB 0.09 1592 878 8852 2868 4758 1226 64.6 MiB 0.04 0.00 3.87998 3.17038 -103.769 -3.17038 3.17038 0.25 0.000264988 0.00024193 0.0149789 0.0137099 -1 -1 -1 -1 36 2026 24 6.95648e+06 231611 648988. 2245.63 1.46 0.117846 0.102121 26050 158493 -1 1799 19 1076 1732 149430 31991 3.22042 3.22042 -107.606 -3.22042 0 0 828058. 2865.25 0.03 0.04 0.08 -1 -1 0.03 0.0127789 0.0114464 56 23 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_056.v common 3.40 vpr 65.29 MiB -1 -1 0.12 18056 1 0.03 -1 -1 29828 -1 -1 14 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66860 32 32 341 285 1 183 78 17 17 289 -1 unnamed_device 25.2 MiB 0.73 1846 1064 9706 3019 5412 1275 65.3 MiB 0.05 0.00 3.60009 3.47479 -130.861 -3.47479 3.47479 0.25 0.000773114 0.000715199 0.0212245 0.0194564 -1 -1 -1 -1 40 2587 46 6.95648e+06 202660 706193. 2443.58 1.27 0.118264 0.104074 26914 176310 -1 2232 22 1763 2514 248265 50335 3.32827 3.32827 -135.378 -3.32827 0 0 926341. 3205.33 0.03 0.06 0.10 -1 -1 0.03 0.0173627 0.0155392 72 65 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_057.v common 4.17 vpr 65.05 MiB -1 -1 0.12 18440 1 0.03 -1 -1 30200 -1 -1 18 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66608 32 32 387 293 1 226 82 17 17 289 -1 unnamed_device 25.5 MiB 0.60 2660 1172 13076 5502 7259 315 65.0 MiB 0.07 0.00 5.95448 4.84692 -154.661 -4.84692 4.84692 0.25 0.000367204 0.000336088 0.0295512 0.0270804 -1 -1 -1 -1 46 3443 25 6.95648e+06 260562 828058. 2865.25 2.08 0.175334 0.154048 28066 200906 -1 2694 32 2085 3257 431955 154928 5.30886 5.30886 -163.334 -5.30886 0 0 1.01997e+06 3529.29 0.04 0.12 0.11 -1 -1 0.04 0.0268485 0.0240574 95 31 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_058.v common 3.02 vpr 65.37 MiB -1 -1 0.13 17916 1 0.03 -1 -1 30352 -1 -1 20 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66936 32 32 340 270 1 174 84 17 17 289 -1 unnamed_device 25.6 MiB 0.40 1785 1004 12162 4142 6583 1437 65.4 MiB 0.06 0.00 3.74951 3.62421 -127.524 -3.62421 3.62421 0.25 0.000328207 0.000300371 0.0237712 0.0218108 -1 -1 -1 -1 34 2614 24 6.95648e+06 289514 618332. 2139.56 1.06 0.099806 0.0878389 25762 151098 -1 2197 22 1673 2441 224418 54031 3.16082 3.16082 -132.565 -3.16082 0 0 787024. 2723.27 0.05 0.10 0.14 -1 -1 0.05 0.0315226 0.0283479 75 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_059.v common 3.39 vpr 64.27 MiB -1 -1 0.12 17532 1 0.02 -1 -1 29796 -1 -1 19 30 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65816 30 32 278 235 1 143 81 17 17 289 -1 unnamed_device 25.2 MiB 0.12 1631 823 9181 2114 6505 562 64.3 MiB 0.05 0.00 3.34415 2.9573 -102.523 -2.9573 2.9573 0.26 0.00028315 0.000259772 0.0223587 0.0207038 -1 -1 -1 -1 36 1928 25 6.95648e+06 275038 648988. 2245.63 1.83 0.127391 0.111338 26050 158493 -1 1722 21 1126 1816 175406 51035 3.20612 3.20612 -118.395 -3.20612 0 0 828058. 2865.25 0.03 0.06 0.09 -1 -1 0.03 0.0163952 0.0145539 61 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_060.v common 9.47 vpr 65.29 MiB -1 -1 0.13 18056 1 0.03 -1 -1 29820 -1 -1 18 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66856 32 32 431 332 1 227 82 17 17 289 -1 unnamed_device 25.6 MiB 0.98 2894 1372 10584 3239 6480 865 65.3 MiB 0.07 0.00 6.27232 5.48274 -168.026 -5.48274 5.48274 0.24 0.000400481 0.000366473 0.0260854 0.0239812 -1 -1 -1 -1 40 3261 24 6.95648e+06 260562 706193. 2443.58 7.07 0.217311 0.190731 26914 176310 -1 2808 20 2067 3042 240600 51699 5.01116 5.01116 -171.359 -5.01116 0 0 926341. 3205.33 0.03 0.06 0.09 -1 -1 0.03 0.0201692 0.0181833 94 65 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_061.v common 3.66 vpr 64.59 MiB -1 -1 0.11 18056 1 0.03 -1 -1 30340 -1 -1 25 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66140 32 32 336 268 1 169 89 17 17 289 -1 unnamed_device 25.2 MiB 0.69 1948 1025 14147 4356 8052 1739 64.6 MiB 0.06 0.00 5.21955 4.32235 -136.289 -4.32235 4.32235 0.26 0.000325361 0.00029643 0.025429 0.0232205 -1 -1 -1 -1 38 2361 27 6.95648e+06 361892 678818. 2348.85 1.59 0.152009 0.133043 26626 170182 -1 2059 21 1422 2085 156669 34906 4.01806 4.01806 -140.938 -4.01806 0 0 902133. 3121.57 0.03 0.05 0.09 -1 -1 0.03 0.0168919 0.0151418 75 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_062.v common 2.95 vpr 64.64 MiB -1 -1 0.10 17680 1 0.02 -1 -1 30328 -1 -1 16 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66196 32 32 231 199 1 136 80 17 17 289 -1 unnamed_device 25.6 MiB 0.15 1662 643 9368 2123 6903 342 64.6 MiB 0.05 0.00 3.47745 2.966 -95.4204 -2.966 2.966 0.26 0.000417153 0.00039395 0.0187903 0.0172787 -1 -1 -1 -1 36 2034 42 6.95648e+06 231611 648988. 2245.63 1.48 0.11454 0.0994636 26050 158493 -1 1518 21 1006 1688 188499 70294 3.07297 3.07297 -103.979 -3.07297 0 0 828058. 2865.25 0.03 0.06 0.08 -1 -1 0.03 0.0133088 0.0118814 54 3 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_063.v common 3.62 vpr 64.90 MiB -1 -1 0.13 18060 1 0.03 -1 -1 29928 -1 -1 31 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66456 32 32 349 273 1 184 95 17 17 289 -1 unnamed_device 25.2 MiB 0.19 2110 1084 13919 4620 7096 2203 64.9 MiB 0.07 0.00 5.666 4.87452 -132.402 -4.87452 4.87452 0.27 0.000367143 0.000334943 0.0266391 0.0244722 -1 -1 -1 -1 36 3030 29 6.95648e+06 448746 648988. 2245.63 2.00 0.123915 0.110447 26050 158493 -1 2425 21 1662 3047 282448 59742 4.65731 4.65731 -144.362 -4.65731 0 0 828058. 2865.25 0.03 0.06 0.08 -1 -1 0.03 0.0173935 0.0156353 85 29 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_064.v common 2.65 vpr 64.11 MiB -1 -1 0.11 17676 1 0.02 -1 -1 29776 -1 -1 16 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65652 32 32 247 207 1 142 80 17 17 289 -1 unnamed_device 25.2 MiB 0.16 1515 868 8852 2747 5050 1055 64.1 MiB 0.04 0.00 3.51345 2.9793 -108.005 -2.9793 2.9793 0.24 0.000259585 0.000237221 0.0150162 0.0137528 -1 -1 -1 -1 34 1886 24 6.95648e+06 231611 618332. 2139.56 1.18 0.0966165 0.0838043 25762 151098 -1 1797 19 1169 1788 142635 30918 3.15892 3.15892 -117.991 -3.15892 0 0 787024. 2723.27 0.03 0.04 0.08 -1 -1 0.03 0.0128545 0.0115147 58 3 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_065.v common 3.50 vpr 64.79 MiB -1 -1 0.16 18060 1 0.02 -1 -1 29840 -1 -1 25 30 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66340 30 32 278 235 1 141 87 17 17 289 -1 unnamed_device 25.6 MiB 0.33 1720 753 11223 4264 5738 1221 64.8 MiB 0.05 0.00 3.72028 3.23198 -104.978 -3.23198 3.23198 0.35 0.000279277 0.000254685 0.0198131 0.0182093 -1 -1 -1 -1 38 1855 21 6.95648e+06 361892 678818. 2348.85 1.56 0.133737 0.11684 26626 170182 -1 1614 22 1198 1946 139206 32254 3.38942 3.38942 -117.246 -3.38942 0 0 902133. 3121.57 0.05 0.06 0.14 -1 -1 0.05 0.0223008 0.0199494 64 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_066.v common 3.75 vpr 65.32 MiB -1 -1 0.13 18056 1 0.03 -1 -1 29760 -1 -1 19 29 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66884 29 32 355 287 1 191 80 17 17 289 -1 unnamed_device 25.6 MiB 0.71 2234 978 11948 4957 6509 482 65.3 MiB 0.06 0.00 4.18549 3.52127 -111.57 -3.52127 3.52127 0.25 0.000328695 0.000300758 0.0250101 0.0229279 -1 -1 -1 -1 44 2569 26 6.95648e+06 275038 787024. 2723.27 1.60 0.138089 0.120443 27778 195446 -1 2149 23 1910 2895 251904 52894 3.24537 3.24537 -116.207 -3.24537 0 0 997811. 3452.63 0.04 0.08 0.11 -1 -1 0.04 0.0236407 0.0211535 81 62 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_067.v common 2.87 vpr 65.26 MiB -1 -1 0.12 18444 1 0.03 -1 -1 29760 -1 -1 19 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66824 32 32 358 289 1 171 83 17 17 289 -1 unnamed_device 26.0 MiB 0.49 2085 843 13943 6117 7487 339 65.3 MiB 0.06 0.00 5.02682 4.14368 -134.376 -4.14368 4.14368 0.24 0.000339146 0.000310561 0.0280627 0.025702 -1 -1 -1 -1 36 2481 34 6.95648e+06 275038 648988. 2245.63 1.03 0.111834 0.0985597 26050 158493 -1 1947 23 1701 2459 192548 45377 4.30012 4.30012 -147.879 -4.30012 0 0 828058. 2865.25 0.03 0.05 0.08 -1 -1 0.03 0.0185936 0.0166696 74 54 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_068.v common 8.00 vpr 65.21 MiB -1 -1 0.12 17916 1 0.03 -1 -1 29752 -1 -1 20 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66780 32 32 353 285 1 175 84 17 17 289 -1 unnamed_device 25.9 MiB 0.37 1817 988 13443 4741 6786 1916 65.2 MiB 0.06 0.00 4.64078 4.17648 -135.842 -4.17648 4.17648 0.24 0.000324448 0.000296469 0.0260462 0.0238591 -1 -1 -1 -1 36 3048 49 6.95648e+06 289514 648988. 2245.63 6.23 0.203406 0.178319 26050 158493 -1 2385 23 1677 2692 269744 58364 4.16382 4.16382 -145.367 -4.16382 0 0 828058. 2865.25 0.03 0.06 0.11 -1 -1 0.03 0.0195483 0.0175155 77 51 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_069.v common 6.19 vpr 65.02 MiB -1 -1 0.11 17916 1 0.03 -1 -1 29808 -1 -1 12 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66584 32 32 276 237 1 153 76 17 17 289 -1 unnamed_device 25.6 MiB 1.10 1886 837 9356 2240 6749 367 65.0 MiB 0.05 0.00 4.63212 3.81128 -119.489 -3.81128 3.81128 0.25 0.000277956 0.000254334 0.0212686 0.0195754 -1 -1 -1 -1 38 2203 37 6.95648e+06 173708 678818. 2348.85 3.64 0.151591 0.13123 26626 170182 -1 1790 20 1149 1580 134760 29661 3.38327 3.38327 -119.839 -3.38327 0 0 902133. 3121.57 0.05 0.08 0.10 -1 -1 0.05 0.0324819 0.0289059 59 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_070.v common 3.92 vpr 64.91 MiB -1 -1 0.12 18060 1 0.03 -1 -1 29796 -1 -1 14 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66464 31 32 319 272 1 165 77 17 17 289 -1 unnamed_device 25.4 MiB 1.03 1833 985 10672 3667 5493 1512 64.9 MiB 0.05 0.00 4.19022 3.70692 -123.76 -3.70692 3.70692 0.24 0.000301967 0.00027545 0.0222779 0.020474 -1 -1 -1 -1 42 2256 26 6.95648e+06 202660 744469. 2576.02 1.53 0.125605 0.109064 27202 183097 -1 2010 22 1417 2054 188245 38923 3.30947 3.30947 -128.605 -3.30947 0 0 949917. 3286.91 0.03 0.05 0.10 -1 -1 0.03 0.0163974 0.0146881 65 64 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_071.v common 3.47 vpr 65.02 MiB -1 -1 0.14 17672 1 0.03 -1 -1 30516 -1 -1 29 30 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66576 30 32 329 273 1 160 91 17 17 289 -1 unnamed_device 25.2 MiB 0.19 1945 745 13351 4198 6604 2549 65.0 MiB 0.08 0.00 3.7091 3.01356 -93.2618 -3.01356 3.01356 0.25 0.000760732 0.000708834 0.035933 0.033495 -1 -1 -1 -1 38 2032 20 6.95648e+06 419795 678818. 2348.85 1.76 0.146264 0.12921 26626 170182 -1 1601 22 1121 1935 125895 29552 3.02112 3.02112 -95.7193 -3.02112 0 0 902133. 3121.57 0.03 0.04 0.18 -1 -1 0.03 0.0161828 0.0144409 75 57 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_072.v common 5.36 vpr 64.51 MiB -1 -1 0.16 17676 1 0.03 -1 -1 30208 -1 -1 30 28 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66056 28 32 277 229 1 150 90 17 17 289 -1 unnamed_device 25.2 MiB 0.16 2011 872 12552 3452 7683 1417 64.5 MiB 0.06 0.00 4.66475 3.68024 -105.78 -3.68024 3.68024 0.24 0.000503075 0.000476972 0.0239511 0.0222033 -1 -1 -1 -1 32 2459 50 6.95648e+06 434271 586450. 2029.24 3.79 0.154412 0.135403 25474 144626 -1 2023 22 1254 2170 186743 41740 3.87011 3.87011 -115.393 -3.87011 0 0 744469. 2576.02 0.03 0.05 0.08 -1 -1 0.03 0.0154132 0.0137491 69 27 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_073.v common 2.40 vpr 65.05 MiB -1 -1 0.18 18060 1 0.04 -1 -1 30168 -1 -1 13 30 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66616 30 32 317 269 1 146 75 17 17 289 -1 unnamed_device 25.2 MiB 0.43 1690 920 7501 2498 3863 1140 65.1 MiB 0.04 0.00 3.88478 3.28908 -114.727 -3.28908 3.28908 0.24 0.000297594 0.000272455 0.0159031 0.0146019 -1 -1 -1 -1 32 2138 42 6.95648e+06 188184 586450. 2029.24 0.51 0.0667491 0.0588076 25474 144626 -1 1947 21 1371 2041 175235 41141 3.06372 3.06372 -123.129 -3.06372 0 0 744469. 2576.02 0.03 0.05 0.08 -1 -1 0.03 0.0152027 0.0135917 60 63 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_074.v common 10.45 vpr 64.18 MiB -1 -1 0.12 18060 1 0.03 -1 -1 30184 -1 -1 14 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65724 32 32 335 282 1 178 78 17 17 289 -1 unnamed_device 25.2 MiB 0.98 1907 1068 11864 3789 6604 1471 64.2 MiB 0.06 0.00 3.98976 3.26039 -121.807 -3.26039 3.26039 0.25 0.000332258 0.000298989 0.0244042 0.0223413 -1 -1 -1 -1 40 2633 27 6.95648e+06 202660 706193. 2443.58 8.03 0.197614 0.173512 26914 176310 -1 2317 24 1532 2182 220982 44609 3.39857 3.39857 -132.889 -3.39857 0 0 926341. 3205.33 0.03 0.06 0.10 -1 -1 0.03 0.0197269 0.0177008 69 65 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_075.v common 6.33 vpr 65.14 MiB -1 -1 0.19 17676 1 0.03 -1 -1 29524 -1 -1 28 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66704 31 32 293 230 1 168 91 17 17 289 -1 unnamed_device 25.2 MiB 0.09 1954 1022 8863 2079 6129 655 65.1 MiB 0.04 0.00 4.72172 4.01902 -124.512 -4.01902 4.01902 0.24 0.0003344 0.000307698 0.0152924 0.0139831 -1 -1 -1 -1 40 2382 38 6.95648e+06 405319 706193. 2443.58 4.77 0.171303 0.149447 26914 176310 -1 2176 25 1492 2546 211497 46101 3.93111 3.93111 -128.021 -3.93111 0 0 926341. 3205.33 0.03 0.06 0.10 -1 -1 0.03 0.0182985 0.016269 77 4 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_076.v common 8.52 vpr 65.37 MiB -1 -1 0.11 18060 1 0.03 -1 -1 29952 -1 -1 17 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66940 32 32 350 275 1 201 81 17 17 289 -1 unnamed_device 25.8 MiB 0.86 2386 1198 10231 3183 5327 1721 65.4 MiB 0.06 0.00 5.01638 4.27059 -145.615 -4.27059 4.27059 0.25 0.000347323 0.000318969 0.0270089 0.0251911 -1 -1 -1 -1 38 3178 30 6.95648e+06 246087 678818. 2348.85 6.30 0.188955 0.166547 26626 170182 -1 2598 21 1833 2710 208293 44175 4.12906 4.12906 -152.157 -4.12906 0 0 902133. 3121.57 0.04 0.05 0.09 -1 -1 0.04 0.0179993 0.0161953 83 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_077.v common 4.33 vpr 64.74 MiB -1 -1 0.12 18060 1 0.03 -1 -1 29768 -1 -1 27 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66296 32 32 385 308 1 176 91 17 17 289 -1 unnamed_device 25.6 MiB 0.76 2067 860 9067 2994 4608 1465 64.7 MiB 0.05 0.00 5.02252 4.13222 -135.728 -4.13222 4.13222 0.25 0.000357951 0.000322619 0.0220214 0.0203008 -1 -1 -1 -1 52 2139 29 6.95648e+06 390843 926341. 3205.33 2.07 0.163955 0.142438 29218 227130 -1 1758 23 1486 2566 195701 45640 3.61706 3.61706 -133.911 -3.61706 0 0 1.14541e+06 3963.36 0.04 0.05 0.14 -1 -1 0.04 0.0192195 0.0172358 81 65 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_078.v common 3.00 vpr 65.49 MiB -1 -1 0.12 18056 1 0.03 -1 -1 29848 -1 -1 34 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 67064 32 32 387 309 1 182 98 17 17 289 -1 unnamed_device 26.0 MiB 0.37 2383 1001 14723 3257 11066 400 65.5 MiB 0.07 0.00 4.65582 4.051 -135.3 -4.051 4.051 0.26 0.000364327 0.000329589 0.0259811 0.0236825 -1 -1 -1 -1 46 2674 49 6.95648e+06 492173 828058. 2865.25 1.18 0.131299 0.115986 28066 200906 -1 2258 24 1693 2916 231831 48343 3.79886 3.79886 -135.102 -3.79886 0 0 1.01997e+06 3529.29 0.04 0.06 0.11 -1 -1 0.04 0.0221089 0.0198942 88 65 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_079.v common 2.49 vpr 64.73 MiB -1 -1 0.12 17672 1 0.02 -1 -1 29664 -1 -1 13 30 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66280 30 32 272 232 1 142 75 17 17 289 -1 unnamed_device 25.2 MiB 0.34 1640 871 10503 3905 4899 1699 64.7 MiB 0.05 0.00 4.04631 3.58091 -110.597 -3.58091 3.58091 0.25 0.000271226 0.000247969 0.0204865 0.0188574 -1 -1 -1 -1 40 1905 22 6.95648e+06 188184 706193. 2443.58 0.82 0.0881242 0.0774387 26914 176310 -1 1801 18 1073 1821 136370 29998 2.95232 2.95232 -113.094 -2.95232 0 0 926341. 3205.33 0.03 0.04 0.09 -1 -1 0.03 0.0127374 0.0114172 58 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_080.v common 3.12 vpr 64.73 MiB -1 -1 0.13 18060 1 0.03 -1 -1 29792 -1 -1 16 30 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66280 30 32 375 299 1 179 78 17 17 289 -1 unnamed_device 25.6 MiB 0.20 2263 979 14022 6059 7515 448 64.7 MiB 0.07 0.00 4.96142 3.95902 -134.036 -3.95902 3.95902 0.24 0.000345961 0.000317658 0.0343629 0.0315794 -1 -1 -1 -1 40 2208 27 6.95648e+06 231611 706193. 2443.58 1.48 0.146559 0.128454 26914 176310 -1 1994 23 2050 2994 247756 52238 3.84676 3.84676 -136.997 -3.84676 0 0 926341. 3205.33 0.03 0.08 0.11 -1 -1 0.03 0.0293045 0.0261939 78 63 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_081.v common 4.32 vpr 65.41 MiB -1 -1 0.12 18060 1 0.03 -1 -1 29852 -1 -1 18 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66984 32 32 340 270 1 193 82 17 17 289 -1 unnamed_device 25.3 MiB 0.83 2252 1135 5422 1105 3974 343 65.4 MiB 0.03 0.00 5.21041 4.51361 -142.408 -4.51361 4.51361 0.25 0.000326717 0.000299349 0.0118588 0.010928 -1 -1 -1 -1 48 2777 21 6.95648e+06 260562 865456. 2994.66 2.04 0.1506 0.131797 28354 207349 -1 2286 24 1653 2579 248336 48799 4.23062 4.23062 -147.459 -4.23062 0 0 1.05005e+06 3633.38 0.04 0.06 0.11 -1 -1 0.04 0.0184952 0.0165578 80 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_082.v common 7.39 vpr 65.29 MiB -1 -1 0.12 18444 1 0.04 -1 -1 29792 -1 -1 16 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66852 31 32 340 275 1 188 79 17 17 289 -1 unnamed_device 25.4 MiB 0.83 2310 992 9543 2486 6548 509 65.3 MiB 0.06 0.00 6.40554 5.4777 -155.957 -5.4777 5.4777 0.25 0.000327639 0.000300051 0.020285 0.0186377 -1 -1 -1 -1 38 2728 50 6.95648e+06 231611 678818. 2348.85 5.14 0.179636 0.157579 26626 170182 -1 2193 21 1591 2407 184090 43251 4.33266 4.33266 -145.385 -4.33266 0 0 902133. 3121.57 0.04 0.05 0.09 -1 -1 0.04 0.0169823 0.0152252 80 47 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_083.v common 3.68 vpr 64.68 MiB -1 -1 0.12 18060 1 0.03 -1 -1 30372 -1 -1 25 30 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66236 30 32 377 310 1 169 87 17 17 289 -1 unnamed_device 25.6 MiB 1.28 1889 756 14871 5671 7163 2037 64.7 MiB 0.06 0.00 4.34198 4.07348 -128.883 -4.07348 4.07348 0.24 0.000338279 0.000309011 0.0286867 0.0262429 -1 -1 -1 -1 40 2318 30 6.95648e+06 361892 706193. 2443.58 1.01 0.100877 0.0892676 26914 176310 -1 1820 22 1439 2322 207641 51502 3.33982 3.33982 -122.459 -3.33982 0 0 926341. 3205.33 0.03 0.05 0.09 -1 -1 0.03 0.018083 0.0162233 76 83 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_084.v common 3.78 vpr 65.30 MiB -1 -1 0.12 18060 1 0.03 -1 -1 30156 -1 -1 15 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66864 32 32 365 294 1 177 79 17 17 289 -1 unnamed_device 26.0 MiB 0.31 1978 1030 12247 4070 6334 1843 65.3 MiB 0.06 0.00 4.70608 4.25858 -140.542 -4.25858 4.25858 0.25 0.000351506 0.000322633 0.0273447 0.0251296 -1 -1 -1 -1 46 2664 29 6.95648e+06 217135 828058. 2865.25 2.04 0.190442 0.16687 28066 200906 -1 2305 22 1743 3062 250592 49506 3.92702 3.92702 -139.174 -3.92702 0 0 1.01997e+06 3529.29 0.04 0.06 0.11 -1 -1 0.04 0.0181199 0.016217 74 57 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_085.v common 2.99 vpr 64.88 MiB -1 -1 0.13 18444 1 0.03 -1 -1 30004 -1 -1 25 29 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66440 29 32 378 310 1 170 86 17 17 289 -1 unnamed_device 25.5 MiB 0.38 1806 1002 10670 2920 6625 1125 64.9 MiB 0.05 0.00 3.96908 3.44163 -116.475 -3.44163 3.44163 0.25 0.000347162 0.000317562 0.0214865 0.0197233 -1 -1 -1 -1 36 2578 39 6.95648e+06 361892 648988. 2245.63 1.22 0.118359 0.104523 26050 158493 -1 2261 28 1817 2808 264581 56589 3.83567 3.83567 -128.927 -3.83567 0 0 828058. 2865.25 0.03 0.06 0.08 -1 -1 0.03 0.0211173 0.0187645 78 85 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_086.v common 2.57 vpr 64.28 MiB -1 -1 0.10 17672 1 0.02 -1 -1 30124 -1 -1 12 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65820 32 32 243 205 1 140 76 17 17 289 -1 unnamed_device 25.2 MiB 0.62 1666 819 5676 1328 4145 203 64.3 MiB 0.04 0.00 3.96613 3.48283 -113.364 -3.48283 3.48283 0.25 0.000466901 0.000444113 0.0149633 0.0138973 -1 -1 -1 -1 34 1869 21 6.95648e+06 173708 618332. 2139.56 0.57 0.0703562 0.0621034 25762 151098 -1 1695 23 1032 1521 123987 26549 3.10097 3.10097 -115.483 -3.10097 0 0 787024. 2723.27 0.03 0.04 0.08 -1 -1 0.03 0.0146156 0.0130885 55 3 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_087.v common 5.53 vpr 64.86 MiB -1 -1 0.12 18060 1 0.03 -1 -1 30140 -1 -1 27 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66416 32 32 373 302 1 170 91 17 17 289 -1 unnamed_device 25.0 MiB 2.25 2487 909 14983 5086 7268 2629 64.9 MiB 0.07 0.00 5.45342 4.07722 -130.088 -4.07722 4.07722 0.25 0.000344536 0.000314315 0.0289953 0.0265024 -1 -1 -1 -1 48 2299 22 6.95648e+06 390843 865456. 2994.66 1.80 0.164245 0.143738 28354 207349 -1 1991 19 1367 2167 187733 39323 4.06326 4.06326 -132.586 -4.06326 0 0 1.05005e+06 3633.38 0.04 0.05 0.11 -1 -1 0.04 0.0163677 0.0147465 77 65 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_088.v common 2.57 vpr 64.77 MiB -1 -1 0.12 18060 1 0.03 -1 -1 29748 -1 -1 14 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66328 32 32 397 314 1 188 78 17 17 289 -1 unnamed_device 25.5 MiB 0.26 2454 1052 12860 4424 7590 846 64.8 MiB 0.07 0.00 4.96142 3.97692 -145.635 -3.97692 3.97692 0.24 0.000362887 0.000332149 0.0302037 0.0277082 -1 -1 -1 -1 40 2507 27 6.95648e+06 202660 706193. 2443.58 0.88 0.104123 0.0923463 26914 176310 -1 2263 21 2040 3064 258642 54364 3.94116 3.94116 -154.866 -3.94116 0 0 926341. 3205.33 0.03 0.06 0.09 -1 -1 0.03 0.0185875 0.0166838 80 65 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_089.v common 3.21 vpr 63.55 MiB -1 -1 0.12 17676 1 0.03 -1 -1 30216 -1 -1 13 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65076 32 32 269 231 1 163 77 17 17 289 -1 unnamed_device 25.0 MiB 0.84 1853 775 10346 4263 5879 204 63.6 MiB 0.05 0.00 3.82363 3.41043 -106.561 -3.41043 3.41043 0.25 0.000274716 0.000250626 0.0190657 0.017461 -1 -1 -1 -1 40 2161 23 6.95648e+06 188184 706193. 2443.58 0.92 0.0905387 0.0795776 26914 176310 -1 1801 21 1327 1750 165546 38654 3.26227 3.26227 -113.791 -3.26227 0 0 926341. 3205.33 0.03 0.05 0.10 -1 -1 0.03 0.0146235 0.0130764 64 29 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_090.v common 2.68 vpr 64.38 MiB -1 -1 0.11 17672 1 0.02 -1 -1 29944 -1 -1 16 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65928 31 32 245 205 1 144 79 17 17 289 -1 unnamed_device 25.2 MiB 0.15 1533 780 8529 3413 4923 193 64.4 MiB 0.04 0.00 3.74228 3.28943 -106.539 -3.28943 3.28943 0.26 0.000258839 0.000236409 0.0154785 0.0142302 -1 -1 -1 -1 34 1921 28 6.95648e+06 231611 618332. 2139.56 1.20 0.108495 0.0938914 25762 151098 -1 1669 23 1353 2052 154963 33971 3.10392 3.10392 -112.189 -3.10392 0 0 787024. 2723.27 0.03 0.04 0.08 -1 -1 0.03 0.0143899 0.0127996 59 4 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_091.v common 4.12 vpr 65.40 MiB -1 -1 0.12 18060 1 0.03 -1 -1 29760 -1 -1 18 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66972 32 32 348 274 1 203 82 17 17 289 -1 unnamed_device 25.6 MiB 0.76 2467 1004 13432 4674 7054 1704 65.4 MiB 0.07 0.00 5.20718 4.12648 -139.222 -4.12648 4.12648 0.25 0.000332018 0.000303875 0.0273176 0.0250357 -1 -1 -1 -1 44 2510 23 6.95648e+06 260562 787024. 2723.27 1.70 0.141425 0.12424 27778 195446 -1 2086 22 1919 2600 212528 45424 4.00852 4.00852 -143.085 -4.00852 0 0 997811. 3452.63 0.04 0.05 0.11 -1 -1 0.04 0.0181433 0.0162844 82 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_092.v common 3.92 vpr 65.39 MiB -1 -1 0.12 18060 1 0.03 -1 -1 29836 -1 -1 19 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66964 32 32 356 289 1 193 83 17 17 289 -1 unnamed_device 25.3 MiB 0.70 2587 1001 13943 3775 9769 399 65.4 MiB 0.07 0.00 5.38354 4.77262 -147.362 -4.77262 4.77262 0.25 0.00034617 0.000316777 0.0291289 0.0266296 -1 -1 -1 -1 46 2365 25 6.95648e+06 275038 828058. 2865.25 1.74 0.164581 0.144566 28066 200906 -1 2008 23 1426 2177 149929 33848 4.62936 4.62936 -148.354 -4.62936 0 0 1.01997e+06 3529.29 0.04 0.05 0.11 -1 -1 0.04 0.0184672 0.0165355 82 56 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_093.v common 2.94 vpr 65.11 MiB -1 -1 0.18 18060 1 0.03 -1 -1 29804 -1 -1 29 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66668 32 32 349 260 1 195 93 17 17 289 -1 unnamed_device 25.6 MiB 0.14 2197 1019 15213 5463 7727 2023 65.1 MiB 0.09 0.00 5.73982 4.68117 -141.736 -4.68117 4.68117 0.34 0.000368249 0.000317849 0.0353615 0.0325265 -1 -1 -1 -1 44 2766 38 6.95648e+06 419795 787024. 2723.27 1.13 0.119924 0.107142 27778 195446 -1 2279 21 1815 3185 288567 62270 4.55991 4.55991 -145.102 -4.55991 0 0 997811. 3452.63 0.04 0.07 0.11 -1 -1 0.04 0.0206305 0.0183858 90 3 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_094.v common 2.73 vpr 64.57 MiB -1 -1 0.13 18056 1 0.03 -1 -1 29912 -1 -1 27 30 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66116 30 32 316 264 1 156 89 17 17 289 -1 unnamed_device 25.6 MiB 0.22 1994 761 12563 2870 9117 576 64.6 MiB 0.06 0.00 3.94408 3.31423 -98.4865 -3.31423 3.31423 0.39 0.000306285 0.000278227 0.0224075 0.0205549 -1 -1 -1 -1 36 2264 42 6.95648e+06 390843 648988. 2245.63 0.99 0.131193 0.116194 26050 158493 -1 1901 21 1431 2403 188292 43569 3.19992 3.19992 -108.587 -3.19992 0 0 828058. 2865.25 0.03 0.05 0.09 -1 -1 0.03 0.0162737 0.0145473 71 52 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_095.v common 2.55 vpr 64.66 MiB -1 -1 0.11 17672 1 0.02 -1 -1 30556 -1 -1 19 27 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66208 27 32 255 219 1 128 78 17 17 289 -1 unnamed_device 25.4 MiB 0.16 1405 640 9872 2965 6271 636 64.7 MiB 0.04 0.00 3.54465 2.9243 -92.5518 -2.9243 2.9243 0.25 0.000264446 0.000241443 0.0170022 0.0155638 -1 -1 -1 -1 32 1668 25 6.95648e+06 275038 586450. 2029.24 1.07 0.0945713 0.0820646 25474 144626 -1 1378 22 1095 1565 118686 26784 2.92552 2.92552 -98.9985 -2.92552 0 0 744469. 2576.02 0.03 0.03 0.08 -1 -1 0.03 0.0136876 0.0121712 59 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_096.v common 3.68 vpr 65.58 MiB -1 -1 0.12 18060 1 0.03 -1 -1 29744 -1 -1 18 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 67152 32 32 421 327 1 224 82 17 17 289 -1 unnamed_device 26.0 MiB 0.61 2597 1273 12720 3612 7834 1274 65.6 MiB 0.08 0.00 4.73785 3.78655 -136.554 -3.78655 3.78655 0.24 0.000384672 0.000352581 0.0300313 0.0275734 -1 -1 -1 -1 42 3519 29 6.95648e+06 260562 744469. 2576.02 1.63 0.132697 0.117622 27202 183097 -1 3005 22 2080 3405 314185 64432 3.95532 3.95532 -149.527 -3.95532 0 0 949917. 3286.91 0.03 0.07 0.10 -1 -1 0.03 0.021025 0.0188977 93 65 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_097.v common 5.44 vpr 64.93 MiB -1 -1 0.13 18060 1 0.03 -1 -1 29760 -1 -1 17 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66488 31 32 365 296 1 191 80 17 17 289 -1 unnamed_device 25.6 MiB 2.64 2283 1122 12292 4005 7130 1157 64.9 MiB 0.07 0.00 5.96575 5.12445 -155.529 -5.12445 5.12445 0.25 0.000337024 0.000308455 0.0295189 0.0270785 -1 -1 -1 -1 38 2762 45 6.95648e+06 246087 678818. 2348.85 1.37 0.131579 0.116282 26626 170182 -1 2224 21 1531 2248 178571 38503 4.67096 4.67096 -158.865 -4.67096 0 0 902133. 3121.57 0.03 0.05 0.09 -1 -1 0.03 0.0195671 0.0176194 81 64 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_098.v common 5.12 vpr 64.20 MiB -1 -1 0.12 18060 1 0.03 -1 -1 30128 -1 -1 13 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65736 32 32 331 280 1 171 77 17 17 289 -1 unnamed_device 25.2 MiB 2.35 2263 831 10346 4372 5809 165 64.2 MiB 0.05 0.00 4.65874 3.66435 -131.027 -3.66435 3.66435 0.24 0.000310938 0.000283553 0.0216721 0.0198615 -1 -1 -1 -1 40 2127 20 6.95648e+06 188184 706193. 2443.58 1.44 0.137458 0.120294 26914 176310 -1 1839 21 1307 1913 170049 36740 3.63446 3.63446 -138.29 -3.63446 0 0 926341. 3205.33 0.03 0.05 0.10 -1 -1 0.03 0.0166748 0.0149375 69 65 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_099.v common 3.11 vpr 65.18 MiB -1 -1 0.11 18060 1 0.03 -1 -1 30312 -1 -1 27 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66744 32 32 326 263 1 169 91 17 17 289 -1 unnamed_device 25.6 MiB 0.10 1919 1016 13147 4843 6404 1900 65.2 MiB 0.06 0.00 4.64482 4.16998 -130.262 -4.16998 4.16998 0.24 0.000346533 0.000316496 0.0224885 0.020484 -1 -1 -1 -1 40 2384 25 6.95648e+06 390843 706193. 2443.58 1.56 0.137469 0.119796 26914 176310 -1 2171 22 1287 2054 170952 36008 3.73576 3.73576 -130.81 -3.73576 0 0 926341. 3205.33 0.03 0.05 0.09 -1 -1 0.03 0.0168862 0.0151431 78 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_100.v common 5.22 vpr 64.75 MiB -1 -1 0.22 18060 1 0.03 -1 -1 29868 -1 -1 26 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66308 31 32 373 294 1 188 89 17 17 289 -1 unnamed_device 25.2 MiB 0.30 1978 1064 14147 4993 7358 1796 64.8 MiB 0.07 0.00 4.83868 4.13778 -125.088 -4.13778 4.13778 0.24 0.000347007 0.000317888 0.0269397 0.0247308 -1 -1 -1 -1 32 2893 42 6.95648e+06 376368 586450. 2029.24 3.43 0.174284 0.153096 25474 144626 -1 2450 24 1685 2597 193336 42653 3.90842 3.90842 -134.368 -3.90842 0 0 744469. 2576.02 0.03 0.06 0.09 -1 -1 0.03 0.0209366 0.0188136 86 50 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_101.v common 2.29 vpr 64.83 MiB -1 -1 0.12 18444 1 0.03 -1 -1 29816 -1 -1 26 30 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66384 30 32 325 268 1 165 88 17 17 289 -1 unnamed_device 25.2 MiB 0.30 2005 1028 11788 3531 6603 1654 64.8 MiB 0.05 0.00 3.5368 3.13114 -104.094 -3.13114 3.13114 0.25 0.00031141 0.000284959 0.0207535 0.0190534 -1 -1 -1 -1 38 2346 24 6.95648e+06 376368 678818. 2348.85 0.66 0.0754822 0.0665845 26626 170182 -1 2032 19 1160 1908 135098 29773 3.16517 3.16517 -107.895 -3.16517 0 0 902133. 3121.57 0.03 0.04 0.09 -1 -1 0.03 0.0149197 0.013408 73 51 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_102.v common 7.44 vpr 64.93 MiB -1 -1 0.12 18056 1 0.03 -1 -1 29764 -1 -1 18 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66492 32 32 350 275 1 208 82 17 17 289 -1 unnamed_device 25.6 MiB 0.70 2473 1225 12364 3185 8008 1171 64.9 MiB 0.08 0.00 4.77678 4.16128 -145.153 -4.16128 4.16128 0.26 0.000404071 0.000374789 0.0313753 0.0288088 -1 -1 -1 -1 44 3002 25 6.95648e+06 260562 787024. 2723.27 5.26 0.181151 0.159774 27778 195446 -1 2501 21 1929 2888 254181 52739 4.05232 4.05232 -152.306 -4.05232 0 0 997811. 3452.63 0.04 0.06 0.11 -1 -1 0.04 0.0178059 0.0160364 86 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_103.v common 3.78 vpr 65.50 MiB -1 -1 0.14 18444 1 0.03 -1 -1 29880 -1 -1 29 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 67076 32 32 386 307 1 187 93 17 17 289 -1 unnamed_device 25.7 MiB 0.43 2024 1035 11643 3723 6128 1792 65.5 MiB 0.06 0.00 3.74723 3.51453 -126.992 -3.51453 3.51453 0.26 0.000359398 0.000328095 0.0219604 0.0201218 -1 -1 -1 -1 38 2497 41 6.95648e+06 419795 678818. 2348.85 1.61 0.171102 0.149711 26626 170182 -1 2126 21 1643 2340 175495 37297 3.06657 3.06657 -126.206 -3.06657 0 0 902133. 3121.57 0.04 0.07 0.13 -1 -1 0.04 0.0262995 0.0235558 89 62 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_104.v common 3.91 vpr 64.29 MiB -1 -1 0.12 17676 1 0.02 -1 -1 29856 -1 -1 13 29 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65832 29 32 269 229 1 131 74 17 17 289 -1 unnamed_device 25.2 MiB 1.98 1409 525 11234 4704 6022 508 64.3 MiB 0.06 0.00 4.32326 3.73256 -100.612 -3.73256 3.73256 0.25 0.000454335 0.00043038 0.027869 0.0258546 -1 -1 -1 -1 36 1494 27 6.95648e+06 188184 648988. 2245.63 0.58 0.0907463 0.0799895 26050 158493 -1 1158 19 812 1114 77704 18636 2.78907 2.78907 -96.8024 -2.78907 0 0 828058. 2865.25 0.03 0.03 0.08 -1 -1 0.03 0.0132226 0.0118612 54 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_105.v common 3.50 vpr 65.11 MiB -1 -1 0.12 18060 1 0.03 -1 -1 29916 -1 -1 14 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66668 32 32 310 266 1 169 78 17 17 289 -1 unnamed_device 25.2 MiB 0.56 1977 706 10038 3625 5105 1308 65.1 MiB 0.05 0.00 3.7422 3.1157 -108.673 -3.1157 3.1157 0.33 0.000294774 0.000269053 0.0197681 0.0181074 -1 -1 -1 -1 40 1746 31 6.95648e+06 202660 706193. 2443.58 1.49 0.12737 0.110608 26914 176310 -1 1498 22 1422 1863 141586 36360 3.37177 3.37177 -118.821 -3.37177 0 0 926341. 3205.33 0.03 0.04 0.10 -1 -1 0.03 0.015732 0.0140493 66 58 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_106.v common 3.58 vpr 65.12 MiB -1 -1 0.13 18444 1 0.03 -1 -1 29912 -1 -1 31 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66684 31 32 326 261 1 170 94 17 17 289 -1 unnamed_device 25.2 MiB 0.17 2332 811 13087 3914 6088 3085 65.1 MiB 0.05 0.00 4.97742 3.97428 -119.674 -3.97428 3.97428 0.24 0.000315998 0.000287636 0.0230737 0.0211763 -1 -1 -1 -1 40 2279 46 6.95648e+06 448746 706193. 2443.58 2.01 0.173492 0.152007 26914 176310 -1 1762 28 1677 2723 255514 76442 3.96126 3.96126 -125.346 -3.96126 0 0 926341. 3205.33 0.04 0.08 0.10 -1 -1 0.04 0.0227733 0.0202212 80 33 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_107.v common 2.68 vpr 65.11 MiB -1 -1 0.11 17672 1 0.02 -1 -1 29856 -1 -1 17 29 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66668 29 32 262 224 1 162 78 17 17 289 -1 unnamed_device 25.2 MiB 0.53 1704 832 10204 3476 5170 1558 65.1 MiB 0.04 0.00 4.25002 3.76672 -110.108 -3.76672 3.76672 0.24 0.000262567 0.000240474 0.0178239 0.0163649 -1 -1 -1 -1 34 2241 29 6.95648e+06 246087 618332. 2139.56 0.83 0.0787243 0.0694314 25762 151098 -1 1822 23 1401 1800 155915 34217 3.33297 3.33297 -112.31 -3.33297 0 0 787024. 2723.27 0.03 0.04 0.08 -1 -1 0.03 0.01507 0.0132915 66 31 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_108.v common 4.86 vpr 64.69 MiB -1 -1 0.14 17676 1 0.02 -1 -1 30212 -1 -1 11 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66244 32 32 278 238 1 144 75 17 17 289 -1 unnamed_device 25.6 MiB 0.71 1586 629 9871 3760 4775 1336 64.7 MiB 0.05 0.00 4.25682 3.85356 -110.478 -3.85356 3.85356 0.25 0.000276118 0.000252385 0.0198227 0.0181798 -1 -1 -1 -1 36 2060 29 6.95648e+06 159232 648988. 2245.63 2.80 0.142247 0.123915 26050 158493 -1 1562 24 1364 2227 179795 40766 3.45952 3.45952 -119.804 -3.45952 0 0 828058. 2865.25 0.03 0.05 0.08 -1 -1 0.03 0.015841 0.0140933 56 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_109.v common 3.44 vpr 64.82 MiB -1 -1 0.12 18056 1 0.03 -1 -1 29784 -1 -1 31 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66376 31 32 373 300 1 174 94 17 17 289 -1 unnamed_device 25.5 MiB 0.39 1975 777 12235 3547 6422 2266 64.8 MiB 0.06 0.00 3.92078 3.36072 -113.014 -3.36072 3.36072 0.24 0.000343711 0.000312696 0.0218847 0.0199664 -1 -1 -1 -1 36 2383 29 6.95648e+06 448746 648988. 2245.63 1.69 0.174196 0.152739 26050 158493 -1 1890 23 1823 2630 192141 46427 3.32232 3.32232 -125.254 -3.32232 0 0 828058. 2865.25 0.03 0.05 0.09 -1 -1 0.03 0.0193631 0.0172866 83 64 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_110.v common 4.31 vpr 64.29 MiB -1 -1 0.12 17920 1 0.02 -1 -1 30204 -1 -1 14 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65836 31 32 265 230 1 159 77 17 17 289 -1 unnamed_device 24.6 MiB 1.08 1790 729 11813 4928 6553 332 64.3 MiB 0.05 0.00 3.77783 3.40453 -105.323 -3.40453 3.40453 0.25 0.000308872 0.000277629 0.0214596 0.0196707 -1 -1 -1 -1 40 2146 36 6.95648e+06 202660 706193. 2443.58 1.84 0.134082 0.117173 26914 176310 -1 1739 22 1464 2120 189319 43391 3.29247 3.29247 -120.401 -3.29247 0 0 926341. 3205.33 0.03 0.05 0.09 -1 -1 0.03 0.0143602 0.0128295 61 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_111.v common 3.26 vpr 64.05 MiB -1 -1 0.17 18060 1 0.03 -1 -1 29460 -1 -1 26 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65592 32 32 349 286 1 165 90 17 17 289 -1 unnamed_device 25.4 MiB 0.60 2297 786 16371 5346 8562 2463 64.1 MiB 0.07 0.00 3.67454 3.219 -105.866 -3.219 3.219 0.25 0.000337391 0.000309016 0.0296005 0.0271143 -1 -1 -1 -1 36 2478 41 6.95648e+06 376368 648988. 2245.63 1.24 0.10822 0.0954031 26050 158493 -1 1746 19 1244 2022 141843 33916 3.28147 3.28147 -107.564 -3.28147 0 0 828058. 2865.25 0.03 0.04 0.09 -1 -1 0.03 0.0160826 0.0144954 73 57 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_112.v common 3.73 vpr 64.76 MiB -1 -1 0.14 18060 1 0.03 -1 -1 29768 -1 -1 20 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66316 31 32 396 325 1 176 83 17 17 289 -1 unnamed_device 25.6 MiB 0.93 2367 760 13403 5641 7157 605 64.8 MiB 0.07 0.00 4.16215 3.42825 -117.829 -3.42825 3.42825 0.24 0.000472934 0.000415205 0.0310469 0.0284745 -1 -1 -1 -1 40 2441 42 6.95648e+06 289514 706193. 2443.58 1.28 0.128029 0.113433 26914 176310 -1 1940 25 1789 2570 188127 47601 3.62427 3.62427 -132.869 -3.62427 0 0 926341. 3205.33 0.03 0.06 0.12 -1 -1 0.03 0.0248133 0.0219353 79 91 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_113.v common 2.56 vpr 64.76 MiB -1 -1 0.12 18056 1 0.04 -1 -1 30116 -1 -1 11 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66316 32 32 303 262 1 145 75 17 17 289 -1 unnamed_device 25.6 MiB 0.21 1778 712 10977 4578 6228 171 64.8 MiB 0.05 0.00 3.29253 2.84005 -99.7836 -2.84005 2.84005 0.25 0.00042795 0.000388641 0.0239453 0.021948 -1 -1 -1 -1 36 2050 34 6.95648e+06 159232 648988. 2245.63 0.79 0.0853346 0.0750854 26050 158493 -1 1762 20 1194 1822 154899 35238 3.11192 3.11192 -113.612 -3.11192 0 0 828058. 2865.25 0.05 0.07 0.15 -1 -1 0.05 0.0238669 0.0213025 58 57 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_114.v common 3.40 vpr 64.19 MiB -1 -1 0.13 18296 1 0.03 -1 -1 29756 -1 -1 14 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65728 32 32 290 244 1 172 78 17 17 289 -1 unnamed_device 25.2 MiB 0.73 1995 861 8378 1972 6153 253 64.2 MiB 0.04 0.00 3.97583 3.49463 -115.332 -3.49463 3.49463 0.26 0.000286549 0.000262684 0.0160968 0.0147723 -1 -1 -1 -1 40 2267 25 6.95648e+06 202660 706193. 2443.58 1.28 0.0945591 0.0830124 26914 176310 -1 1967 21 1553 2292 189903 41785 3.35347 3.35347 -120.801 -3.35347 0 0 926341. 3205.33 0.03 0.05 0.09 -1 -1 0.03 0.0147377 0.0131938 68 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_115.v common 4.63 vpr 64.66 MiB -1 -1 0.12 18060 1 0.03 -1 -1 29772 -1 -1 17 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66216 32 32 318 257 1 190 81 17 17 289 -1 unnamed_device 25.6 MiB 0.63 1985 868 6206 1328 4710 168 64.7 MiB 0.03 0.00 4.72618 4.25388 -127.376 -4.25388 4.25388 0.24 0.000319888 0.000293074 0.0132111 0.0121845 -1 -1 -1 -1 36 2808 32 6.95648e+06 246087 648988. 2245.63 2.57 0.158635 0.139331 26050 158493 -1 2074 22 1723 2285 180456 42709 4.25992 4.25992 -139.303 -4.25992 0 0 828058. 2865.25 0.03 0.05 0.09 -1 -1 0.03 0.0165456 0.0148185 76 30 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_116.v common 4.11 vpr 64.66 MiB -1 -1 0.12 18060 1 0.03 -1 -1 29780 -1 -1 25 29 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66212 29 32 324 268 1 162 86 17 17 289 -1 unnamed_device 25.0 MiB 0.51 1715 960 12371 3218 7643 1510 64.7 MiB 0.06 0.00 4.12939 3.75349 -109.494 -3.75349 3.75349 0.25 0.000312325 0.000285891 0.0222995 0.0204763 -1 -1 -1 -1 36 2399 29 6.95648e+06 361892 648988. 2245.63 2.08 0.162881 0.143154 26050 158493 -1 2124 24 1309 2223 188987 40183 3.40282 3.40282 -112.56 -3.40282 0 0 828058. 2865.25 0.03 0.05 0.10 -1 -1 0.03 0.0178762 0.0159922 73 55 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_117.v common 10.74 vpr 64.86 MiB -1 -1 0.12 18296 1 0.03 -1 -1 29960 -1 -1 16 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66412 32 32 393 312 1 205 80 17 17 289 -1 unnamed_device 25.6 MiB 0.82 2498 877 13324 5609 7307 408 64.9 MiB 0.07 0.00 5.49221 4.58061 -145.903 -4.58061 4.58061 0.25 0.000374154 0.000342411 0.0337134 0.0310037 -1 -1 -1 -1 42 3205 39 6.95648e+06 231611 744469. 2576.02 8.24 0.240569 0.211499 27202 183097 -1 2393 26 2399 3408 288616 65006 4.30292 4.30292 -159.239 -4.30292 0 0 949917. 3286.91 0.05 0.10 0.14 -1 -1 0.05 0.0309125 0.0275603 86 65 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_118.v common 2.34 vpr 64.54 MiB -1 -1 0.12 17676 1 0.02 -1 -1 29936 -1 -1 14 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66084 31 32 229 197 1 137 77 17 17 289 -1 unnamed_device 24.9 MiB 0.37 1573 789 7738 2349 3877 1512 64.5 MiB 0.03 0.00 3.62318 3.27643 -101.711 -3.27643 3.27643 0.24 0.000248976 0.000227423 0.0132757 0.0121928 -1 -1 -1 -1 34 1944 27 6.95648e+06 202660 618332. 2139.56 0.69 0.0826342 0.0725114 25762 151098 -1 1657 22 990 1577 151209 32013 3.17312 3.17312 -112.749 -3.17312 0 0 787024. 2723.27 0.03 0.04 0.08 -1 -1 0.03 0.0133466 0.0118792 54 4 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_119.v common 6.20 vpr 65.46 MiB -1 -1 0.13 18056 1 0.03 -1 -1 29756 -1 -1 28 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 67036 32 32 412 334 1 182 92 17 17 289 -1 unnamed_device 25.5 MiB 0.34 2584 779 15410 4873 7828 2709 65.5 MiB 0.07 0.00 4.99926 3.90964 -132.617 -3.90964 3.90964 0.35 0.000367291 0.000335681 0.0295207 0.0270144 -1 -1 -1 -1 54 2048 24 6.95648e+06 405319 949917. 3286.91 4.30 0.220353 0.193683 29506 232905 -1 1646 23 1577 2111 155055 38389 4.14962 4.14962 -142.145 -4.14962 0 0 1.17392e+06 4061.99 0.04 0.06 0.14 -1 -1 0.04 0.0246995 0.0221709 84 90 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_120.v common 4.94 vpr 64.66 MiB -1 -1 0.12 18056 1 0.03 -1 -1 30212 -1 -1 11 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66208 32 32 376 318 1 154 75 17 17 289 -1 unnamed_device 25.6 MiB 1.68 1894 675 12083 5157 6591 335 64.7 MiB 0.06 0.00 3.54619 2.94085 -113.533 -2.94085 2.94085 0.25 0.000336191 0.000306852 0.0277439 0.0254059 -1 -1 -1 -1 48 1588 22 6.95648e+06 159232 865456. 2994.66 1.84 0.165957 0.145157 28354 207349 -1 1301 20 1327 1806 124593 28920 3.01532 3.01532 -115.899 -3.01532 0 0 1.05005e+06 3633.38 0.04 0.04 0.11 -1 -1 0.04 0.0165622 0.0148394 62 96 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_121.v common 3.44 vpr 64.68 MiB -1 -1 0.11 18060 1 0.03 -1 -1 30156 -1 -1 26 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66228 32 32 360 293 1 172 90 17 17 289 -1 unnamed_device 25.3 MiB 0.48 1853 1069 14562 4604 8437 1521 64.7 MiB 0.07 0.00 3.91173 3.53583 -120.704 -3.53583 3.53583 0.25 0.000335501 0.000306033 0.0322582 0.0297118 -1 -1 -1 -1 40 2375 24 6.95648e+06 376368 706193. 2443.58 1.49 0.158921 0.139899 26914 176310 -1 2117 23 1326 2047 179309 38171 3.29717 3.29717 -119.13 -3.29717 0 0 926341. 3205.33 0.05 0.08 0.11 -1 -1 0.05 0.0312325 0.0278867 78 60 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_122.v common 3.18 vpr 65.48 MiB -1 -1 0.13 18060 1 0.03 -1 -1 30192 -1 -1 19 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 67056 32 32 396 299 1 227 83 17 17 289 -1 unnamed_device 25.6 MiB 0.86 2452 1278 10883 3044 6597 1242 65.5 MiB 0.07 0.00 6.40588 5.67799 -169.514 -5.67799 5.67799 0.26 0.000375871 0.000344229 0.0265442 0.0244031 -1 -1 -1 -1 42 3157 23 6.95648e+06 275038 744469. 2576.02 0.83 0.0987754 0.0878873 27202 183097 -1 2714 35 2694 3788 394527 125732 4.9392 4.9392 -169.567 -4.9392 0 0 949917. 3286.91 0.03 0.11 0.10 -1 -1 0.03 0.028617 0.0255556 95 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_123.v common 4.02 vpr 64.68 MiB -1 -1 0.11 17676 1 0.03 -1 -1 29564 -1 -1 13 30 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66228 30 32 224 207 1 132 75 17 17 289 -1 unnamed_device 25.6 MiB 0.54 1627 598 12241 5372 6458 411 64.7 MiB 0.05 0.00 2.90706 2.40586 -87.9482 -2.40586 2.40586 0.25 0.000233649 0.000212956 0.0201236 0.0184129 -1 -1 -1 -1 40 1508 30 6.95648e+06 188184 706193. 2443.58 2.06 0.157661 0.137737 26914 176310 -1 1331 20 901 1144 111930 30811 2.88623 2.88623 -98.6954 -2.88623 0 0 926341. 3205.33 0.03 0.04 0.11 -1 -1 0.03 0.0123386 0.0110566 51 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_124.v common 4.72 vpr 64.19 MiB -1 -1 0.19 17676 1 0.03 -1 -1 30184 -1 -1 12 30 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65728 30 32 286 239 1 137 74 17 17 289 -1 unnamed_device 25.1 MiB 0.91 1634 584 10304 2805 7001 498 64.2 MiB 0.04 0.00 3.45258 3.27614 -105.411 -3.27614 3.27614 0.25 0.000284959 0.000261096 0.0205025 0.0187956 -1 -1 -1 -1 34 1944 38 6.95648e+06 173708 618332. 2139.56 2.32 0.143174 0.124606 25762 151098 -1 1413 22 1179 1705 141397 34783 3.09482 3.09482 -117.715 -3.09482 0 0 787024. 2723.27 0.03 0.04 0.08 -1 -1 0.03 0.0150785 0.0134656 56 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_125.v common 3.29 vpr 65.05 MiB -1 -1 0.11 18064 1 0.02 -1 -1 29768 -1 -1 19 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66616 32 32 296 247 1 152 83 17 17 289 -1 unnamed_device 25.2 MiB 0.11 1728 922 8723 2565 5365 793 65.1 MiB 0.04 0.00 3.55445 2.9873 -113.256 -2.9873 2.9873 0.25 0.000301223 0.00027349 0.0160763 0.0147241 -1 -1 -1 -1 40 2197 27 6.95648e+06 275038 706193. 2443.58 1.75 0.156743 0.136892 26914 176310 -1 2042 23 1349 2303 218886 48209 3.19827 3.19827 -121.7 -3.19827 0 0 926341. 3205.33 0.03 0.05 0.10 -1 -1 0.03 0.0160692 0.0143372 65 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_126.v common 2.84 vpr 64.26 MiB -1 -1 0.12 18060 1 0.02 -1 -1 29828 -1 -1 18 25 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65800 25 32 216 194 1 119 75 17 17 289 -1 unnamed_device 25.2 MiB 0.09 1353 690 8449 3120 3872 1457 64.3 MiB 0.03 0.00 3.58218 3.24133 -80.823 -3.24133 3.24133 0.25 0.000224742 0.000205297 0.0131913 0.0120881 -1 -1 -1 -1 32 1648 24 6.95648e+06 260562 586450. 2029.24 1.34 0.123269 0.106366 25474 144626 -1 1400 20 849 1332 99865 22135 2.72602 2.72602 -85.395 -2.72602 0 0 744469. 2576.02 0.03 0.03 0.08 -1 -1 0.03 0.0111245 0.00989695 51 29 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_127.v common 6.84 vpr 64.71 MiB -1 -1 0.13 18060 1 0.03 -1 -1 29796 -1 -1 14 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66268 32 32 376 307 1 179 78 17 17 289 -1 unnamed_device 26.0 MiB 0.46 1982 1168 8876 2502 5267 1107 64.7 MiB 0.05 0.00 4.59945 3.81054 -129.805 -3.81054 3.81054 0.25 0.000344787 0.000315324 0.0205257 0.0187772 -1 -1 -1 -1 40 2820 23 6.95648e+06 202660 706193. 2443.58 4.95 0.191278 0.167763 26914 176310 -1 2463 25 1559 2688 247418 60274 4.07062 4.07062 -139.096 -4.07062 0 0 926341. 3205.33 0.03 0.07 0.10 -1 -1 0.03 0.0204429 0.0182595 75 72 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_128.v common 3.87 vpr 65.58 MiB -1 -1 0.20 18440 1 0.03 -1 -1 29772 -1 -1 29 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 67156 31 32 409 331 1 183 92 17 17 289 -1 unnamed_device 25.6 MiB 0.39 1880 934 14582 5336 7343 1903 65.6 MiB 0.07 0.00 3.75413 3.54189 -123.861 -3.54189 3.54189 0.25 0.000370518 0.000338041 0.0281666 0.0258067 -1 -1 -1 -1 40 2135 23 6.95648e+06 419795 706193. 2443.58 1.67 0.181804 0.159938 26914 176310 -1 1941 23 1958 2686 194478 42954 3.22012 3.22012 -126.025 -3.22012 0 0 926341. 3205.33 0.05 0.09 0.17 -1 -1 0.05 0.0361223 0.0324491 88 90 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_001.v common 3.61 vpr 65.28 MiB -1 -1 0.11 18060 1 0.03 -1 -1 30180 -1 -1 18 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66844 32 32 354 285 1 206 82 17 17 289 -1 unnamed_device 25.2 MiB 0.57 2477 1104 5956 1234 4454 268 65.3 MiB 0.04 0.00 5.9831 5.0213 -150.404 -5.0213 5.0213 0.25 0.000339429 0.000311214 0.0135732 0.0124946 -1 -1 -1 -1 40 2746 30 6.99608e+06 264882 706193. 2443.58 1.64 0.140449 0.122546 26914 176310 -1 2503 21 1812 2826 219665 47612 4.45375 4.45375 -154.395 -4.45375 0 0 926341. 3205.33 0.03 0.05 0.10 -1 -1 0.03 0.0178176 0.0160479 89 50 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_002.v common 7.00 vpr 64.60 MiB -1 -1 0.13 17916 1 0.03 -1 -1 29756 -1 -1 23 30 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66152 30 32 363 293 1 224 85 17 17 289 -1 unnamed_device 25.6 MiB 0.31 2539 1213 13663 4903 6549 2211 64.6 MiB 0.08 0.00 5.97457 4.74455 -148.167 -4.74455 4.74455 0.25 0.000819983 0.00075946 0.0339081 0.0313222 -1 -1 -1 -1 38 2904 29 6.99608e+06 338461 678818. 2348.85 5.25 0.188274 0.165386 26626 170182 -1 2475 23 2204 3166 262316 53855 4.3292 4.3292 -149.244 -4.3292 0 0 902133. 3121.57 0.03 0.07 0.10 -1 -1 0.03 0.0216333 0.0194628 99 63 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_003.v common 6.20 vpr 64.43 MiB -1 -1 0.17 18056 1 0.03 -1 -1 29800 -1 -1 18 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65976 32 32 299 247 1 182 82 17 17 289 -1 unnamed_device 25.2 MiB 0.28 2357 1078 12186 3608 6974 1604 64.4 MiB 0.07 0.00 4.53839 3.58799 -116.676 -3.58799 3.58799 0.25 0.000295115 0.00027033 0.0302567 0.0279761 -1 -1 -1 -1 36 2482 30 6.99608e+06 264882 648988. 2245.63 4.46 0.190584 0.167465 26050 158493 -1 2238 23 1374 1912 157043 33421 4.08876 4.08876 -130.004 -4.08876 0 0 828058. 2865.25 0.03 0.04 0.09 -1 -1 0.03 0.0161449 0.0144234 75 29 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_004.v common 2.49 vpr 63.83 MiB -1 -1 0.12 18056 1 0.03 -1 -1 29748 -1 -1 19 29 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65364 29 32 308 248 1 182 80 17 17 289 -1 unnamed_device 24.9 MiB 0.33 2573 764 13496 3536 9305 655 63.8 MiB 0.09 0.00 5.42531 4.05748 -115.939 -4.05748 4.05748 0.24 0.000828626 0.000781172 0.0376447 0.0347493 -1 -1 -1 -1 36 2604 27 6.99608e+06 279598 648988. 2245.63 0.77 0.0932788 0.0829728 26050 158493 -1 1796 20 1431 2220 152925 38511 3.99626 3.99626 -126.688 -3.99626 0 0 828058. 2865.25 0.03 0.04 0.08 -1 -1 0.03 0.015111 0.0135488 79 31 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_005.v common 3.59 vpr 64.74 MiB -1 -1 0.12 18060 1 0.03 -1 -1 29848 -1 -1 16 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66296 32 32 336 268 1 193 80 17 17 289 -1 unnamed_device 25.2 MiB 0.28 2057 952 12464 3721 7118 1625 64.7 MiB 0.06 0.00 5.56057 4.88167 -146.243 -4.88167 4.88167 0.25 0.000331052 0.00030369 0.0256676 0.0235046 -1 -1 -1 -1 44 2790 26 6.99608e+06 235451 787024. 2723.27 1.89 0.151492 0.133144 27778 195446 -1 2240 23 1634 2747 222001 48807 4.40571 4.40571 -143.589 -4.40571 0 0 997811. 3452.63 0.04 0.06 0.11 -1 -1 0.04 0.0197017 0.0177011 86 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_006.v common 2.89 vpr 65.35 MiB -1 -1 0.12 18440 1 0.03 -1 -1 29780 -1 -1 24 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66916 32 32 366 295 1 222 88 17 17 289 -1 unnamed_device 25.6 MiB 0.24 2506 1118 13933 5613 7680 640 65.3 MiB 0.07 0.00 4.26916 3.42564 -123.507 -3.42564 3.42564 0.25 0.000345196 0.00031104 0.0287072 0.0263298 -1 -1 -1 -1 38 3421 45 6.99608e+06 353176 678818. 2348.85 1.26 0.112321 0.0993323 26626 170182 -1 2462 24 1784 3007 215704 50106 3.76796 3.76796 -132.934 -3.76796 0 0 902133. 3121.57 0.03 0.06 0.09 -1 -1 0.03 0.0195075 0.0174687 99 58 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_007.v common 2.41 vpr 64.68 MiB -1 -1 0.12 17676 1 0.03 -1 -1 30136 -1 -1 18 27 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66228 27 32 259 221 1 152 77 17 17 289 -1 unnamed_device 25.2 MiB 0.25 1709 563 9857 3638 4045 2174 64.7 MiB 0.05 0.00 4.67622 3.83492 -100.928 -3.83492 3.83492 0.26 0.000310689 0.000287664 0.022248 0.0206329 -1 -1 -1 -1 38 1948 27 6.99608e+06 264882 678818. 2348.85 0.78 0.0780478 0.0687188 26626 170182 -1 1392 30 1579 2262 176346 42562 3.41652 3.41652 -110.525 -3.41652 0 0 902133. 3121.57 0.03 0.06 0.09 -1 -1 0.03 0.0218746 0.0192852 65 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_008.v common 2.40 vpr 64.66 MiB -1 -1 0.11 17676 1 0.02 -1 -1 29804 -1 -1 27 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66216 31 32 271 219 1 157 90 17 17 289 -1 unnamed_device 24.9 MiB 0.11 1776 919 11547 2651 7976 920 64.7 MiB 0.05 0.00 3.1255 2.7565 -95.0074 -2.7565 2.7565 0.26 0.000293209 0.000264748 0.0180705 0.0165422 -1 -1 -1 -1 36 2309 50 6.99608e+06 397324 648988. 2245.63 0.94 0.103789 0.0914604 26050 158493 -1 1978 22 1218 2212 171223 38751 2.65381 2.65381 -102.167 -2.65381 0 0 828058. 2865.25 0.03 0.05 0.08 -1 -1 0.03 0.0148703 0.0132452 69 4 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_009.v common 3.28 vpr 65.09 MiB -1 -1 0.15 18064 1 0.03 -1 -1 29792 -1 -1 18 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66652 31 32 317 271 1 204 81 17 17 289 -1 unnamed_device 25.3 MiB 0.23 2338 1082 14256 5263 7162 1831 65.1 MiB 0.07 0.00 4.24759 3.13884 -116.913 -3.13884 3.13884 0.29 0.000304151 0.000278446 0.0274291 0.0251884 -1 -1 -1 -1 40 2502 31 6.99608e+06 264882 706193. 2443.58 1.59 0.13523 0.118366 26914 176310 -1 2233 22 1689 2280 192202 40085 3.05882 3.05882 -122.616 -3.05882 0 0 926341. 3205.33 0.03 0.05 0.09 -1 -1 0.03 0.0162855 0.014578 83 64 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_010.v common 4.75 vpr 64.41 MiB -1 -1 0.14 17676 1 0.03 -1 -1 29648 -1 -1 15 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65960 32 32 298 248 1 181 79 17 17 289 -1 unnamed_device 25.3 MiB 0.24 1862 1015 12247 3678 6923 1646 64.4 MiB 0.07 0.00 3.99837 3.64037 -128.737 -3.64037 3.64037 0.25 0.000447112 0.000420921 0.0321216 0.0299558 -1 -1 -1 -1 34 2533 32 6.99608e+06 220735 618332. 2139.56 3.11 0.172253 0.152194 25762 151098 -1 2146 19 1516 1997 164767 35720 3.09382 3.09382 -128.206 -3.09382 0 0 787024. 2723.27 0.03 0.04 0.08 -1 -1 0.03 0.0141017 0.0126303 72 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_011.v common 3.34 vpr 64.45 MiB -1 -1 0.16 18060 1 0.03 -1 -1 29772 -1 -1 17 30 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65992 30 32 303 262 1 186 79 17 17 289 -1 unnamed_device 25.2 MiB 0.27 2266 960 13599 4745 6819 2035 64.4 MiB 0.09 0.00 4.98263 3.86818 -125.247 -3.86818 3.86818 0.28 0.000424381 0.00038739 0.0373622 0.0341447 -1 -1 -1 -1 36 2348 40 6.99608e+06 250167 648988. 2245.63 1.51 0.148585 0.130262 26050 158493 -1 2064 21 1422 1950 168607 36652 3.59731 3.59731 -129.651 -3.59731 0 0 828058. 2865.25 0.03 0.05 0.09 -1 -1 0.03 0.0172651 0.0154663 79 63 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_012.v common 2.79 vpr 64.71 MiB -1 -1 0.11 18060 1 0.02 -1 -1 29692 -1 -1 14 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66260 32 32 276 237 1 165 78 17 17 289 -1 unnamed_device 24.9 MiB 0.24 1950 725 8212 1860 5677 675 64.7 MiB 0.05 0.00 4.10243 3.37048 -107.801 -3.37048 3.37048 0.25 0.000669283 0.000624933 0.0224593 0.0208535 -1 -1 -1 -1 38 2443 48 6.99608e+06 206020 678818. 2348.85 1.17 0.109588 0.0965962 26626 170182 -1 1781 21 1241 1639 121264 31618 3.06712 3.06712 -115.463 -3.06712 0 0 902133. 3121.57 0.03 0.04 0.10 -1 -1 0.03 0.0151789 0.0135417 65 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_013.v common 3.29 vpr 64.48 MiB -1 -1 0.11 18060 1 0.03 -1 -1 29624 -1 -1 18 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66032 32 32 344 272 1 201 82 17 17 289 -1 unnamed_device 25.2 MiB 0.27 2682 954 13076 5089 6303 1684 64.5 MiB 0.07 0.00 4.83632 3.86972 -128.357 -3.86972 3.86972 0.25 0.000326098 0.000297786 0.0290014 0.0266927 -1 -1 -1 -1 42 2795 25 6.99608e+06 264882 744469. 2576.02 1.57 0.143204 0.125742 27202 183097 -1 2199 24 1772 2664 231395 52184 3.34801 3.34801 -126.15 -3.34801 0 0 949917. 3286.91 0.03 0.06 0.10 -1 -1 0.03 0.0187747 0.0168077 85 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_014.v common 3.13 vpr 65.34 MiB -1 -1 0.20 18060 1 0.03 -1 -1 29688 -1 -1 21 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66908 32 32 363 295 1 228 85 17 17 289 -1 unnamed_device 25.2 MiB 0.32 2692 1244 14407 4661 7812 1934 65.3 MiB 0.08 0.00 5.90964 4.79277 -149.984 -4.79277 4.79277 0.27 0.000337196 0.000308944 0.0320247 0.0294721 -1 -1 -1 -1 40 2811 20 6.99608e+06 309029 706193. 2443.58 1.17 0.123832 0.110017 26914 176310 -1 2538 20 1946 2619 212273 44432 4.38451 4.38451 -153.65 -4.38451 0 0 926341. 3205.33 0.04 0.05 0.14 -1 -1 0.04 0.017113 0.0153806 96 61 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_015.v common 2.96 vpr 64.60 MiB -1 -1 0.11 18296 1 0.03 -1 -1 30276 -1 -1 17 29 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66152 29 32 248 215 1 150 78 17 17 289 -1 unnamed_device 24.9 MiB 0.31 1740 893 9706 2711 5534 1461 64.6 MiB 0.05 0.00 3.47743 2.91415 -94.4077 -2.91415 2.91415 0.25 0.000254157 0.000232628 0.020588 0.018958 -1 -1 -1 -1 32 2036 22 6.99608e+06 250167 586450. 2029.24 1.29 0.106588 0.0929905 25474 144626 -1 1646 20 1019 1427 101641 22220 2.71507 2.71507 -98.7671 -2.71507 0 0 744469. 2576.02 0.03 0.03 0.08 -1 -1 0.03 0.0128596 0.0114275 62 27 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_016.v common 2.63 vpr 65.34 MiB -1 -1 0.12 18060 1 0.03 -1 -1 29784 -1 -1 19 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66912 32 32 370 297 1 219 83 17 17 289 -1 unnamed_device 25.7 MiB 0.35 2362 1073 15563 6532 7835 1196 65.3 MiB 0.08 0.00 4.16944 3.57294 -125.244 -3.57294 3.57294 0.24 0.000347667 0.000317742 0.0318598 0.0291397 -1 -1 -1 -1 38 2963 48 6.99608e+06 279598 678818. 2348.85 0.89 0.110101 0.0973561 26626 170182 -1 2204 21 1887 2913 199419 44516 3.57851 3.57851 -131.037 -3.57851 0 0 902133. 3121.57 0.03 0.05 0.09 -1 -1 0.03 0.0176817 0.0158624 98 58 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_017.v common 3.04 vpr 64.55 MiB -1 -1 0.12 18060 1 0.03 -1 -1 29840 -1 -1 17 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66096 32 32 338 269 1 198 81 17 17 289 -1 unnamed_device 25.2 MiB 0.28 2635 1084 14431 4177 8907 1347 64.5 MiB 0.08 0.00 4.64181 3.75386 -123.111 -3.75386 3.75386 0.25 0.000409682 0.000377196 0.036391 0.033598 -1 -1 -1 -1 36 2769 26 6.99608e+06 250167 648988. 2245.63 1.27 0.155204 0.138893 26050 158493 -1 2414 20 1701 2429 219821 56511 3.11862 3.11862 -126.555 -3.11862 0 0 828058. 2865.25 0.03 0.06 0.09 -1 -1 0.03 0.0208099 0.0188496 83 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_018.v common 3.89 vpr 65.05 MiB -1 -1 0.12 18060 1 0.03 -1 -1 29584 -1 -1 17 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66612 32 32 323 276 1 210 81 17 17 289 -1 unnamed_device 25.2 MiB 0.26 2734 1198 13031 4384 6941 1706 65.1 MiB 0.06 0.00 4.46501 3.1116 -120.136 -3.1116 3.1116 0.27 0.000301401 0.000276115 0.0248043 0.0226518 -1 -1 -1 -1 34 2850 47 6.99608e+06 250167 618332. 2139.56 2.24 0.158245 0.138253 25762 151098 -1 2471 21 1733 2316 195072 42876 3.22062 3.22062 -126.364 -3.22062 0 0 787024. 2723.27 0.03 0.05 0.08 -1 -1 0.03 0.0162061 0.0145209 84 65 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_019.v common 2.76 vpr 64.13 MiB -1 -1 0.13 18060 1 0.02 -1 -1 29784 -1 -1 14 30 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65668 30 32 222 206 1 135 76 17 17 289 -1 unnamed_device 24.9 MiB 0.21 1543 727 10476 3465 5449 1562 64.1 MiB 0.04 0.00 2.68936 2.31346 -87.3083 -2.31346 2.31346 0.25 0.000244077 0.000223557 0.0172966 0.0158483 -1 -1 -1 -1 32 1548 26 6.99608e+06 206020 586450. 2029.24 1.21 0.103854 0.089959 25474 144626 -1 1415 22 733 828 76674 17191 2.18948 2.18948 -92.4069 -2.18948 0 0 744469. 2576.02 0.03 0.03 0.08 -1 -1 0.03 0.0121979 0.0108198 52 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_020.v common 3.85 vpr 63.91 MiB -1 -1 0.12 17712 1 0.03 -1 -1 29792 -1 -1 15 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65448 31 32 291 243 1 172 78 17 17 289 -1 unnamed_device 24.5 MiB 0.72 2133 838 8046 1881 5711 454 63.9 MiB 0.04 0.00 5.43629 4.06642 -132.88 -4.06642 4.06642 0.35 0.000286595 0.000262175 0.0155859 0.0143043 -1 -1 -1 -1 34 2585 50 6.99608e+06 220735 618332. 2139.56 1.53 0.13142 0.114418 25762 151098 -1 1987 22 1400 2056 153586 36992 3.64846 3.64846 -134.265 -3.64846 0 0 787024. 2723.27 0.04 0.07 0.13 -1 -1 0.04 0.0259421 0.0231603 70 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_021.v common 3.79 vpr 64.61 MiB -1 -1 0.12 18060 1 0.03 -1 -1 30348 -1 -1 28 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66156 32 32 342 271 1 200 92 17 17 289 -1 unnamed_device 25.2 MiB 0.31 2545 898 17687 6355 8833 2499 64.6 MiB 0.08 0.00 5.23013 4.09659 -137.139 -4.09659 4.09659 0.24 0.000327188 0.000299437 0.0312595 0.0286912 -1 -1 -1 -1 38 2615 31 6.99608e+06 412039 678818. 2348.85 2.03 0.169548 0.152529 26626 170182 -1 1982 23 1854 2804 201893 47345 4.6472 4.6472 -149.149 -4.6472 0 0 902133. 3121.57 0.03 0.05 0.09 -1 -1 0.03 0.0179156 0.0160457 92 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_022.v common 3.69 vpr 64.76 MiB -1 -1 0.13 18056 1 0.03 -1 -1 30104 -1 -1 20 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66312 32 32 372 300 1 225 84 17 17 289 -1 unnamed_device 25.2 MiB 0.37 2481 1280 13260 3957 7480 1823 64.8 MiB 0.08 0.00 5.12435 4.27615 -135.126 -4.27615 4.27615 0.26 0.000351019 0.000321597 0.0324092 0.0299401 -1 -1 -1 -1 44 3006 22 6.99608e+06 294314 787024. 2723.27 1.86 0.161059 0.14195 27778 195446 -1 2489 20 1768 2665 213136 44814 4.30622 4.30622 -143.652 -4.30622 0 0 997811. 3452.63 0.04 0.05 0.10 -1 -1 0.04 0.0175618 0.0158387 97 62 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_023.v common 2.37 vpr 64.02 MiB -1 -1 0.11 17676 1 0.02 -1 -1 30140 -1 -1 17 26 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65556 26 32 190 182 1 123 75 17 17 289 -1 unnamed_device 24.9 MiB 0.19 1496 591 9871 3440 4773 1658 64.0 MiB 0.03 0.00 3.5328 2.5304 -72.9745 -2.5304 2.5304 0.27 0.000201051 0.000183539 0.0137083 0.0125318 -1 -1 -1 -1 30 1434 20 6.99608e+06 250167 556674. 1926.21 0.88 0.0661549 0.0573686 25186 138497 -1 1178 19 742 883 70756 15921 2.30998 2.30998 -75.3621 -2.30998 0 0 706193. 2443.58 0.03 0.03 0.08 -1 -1 0.03 0.0122099 0.0107687 51 30 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_024.v common 6.67 vpr 64.61 MiB -1 -1 0.21 17672 1 0.03 -1 -1 30252 -1 -1 17 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66156 32 32 285 227 1 160 81 17 17 289 -1 unnamed_device 25.2 MiB 0.35 1881 1025 10231 3161 5849 1221 64.6 MiB 0.07 0.00 5.10855 4.37465 -123.584 -4.37465 4.37465 0.46 0.000291795 0.000266598 0.0320495 0.0296815 -1 -1 -1 -1 34 2652 24 6.99608e+06 250167 618332. 2139.56 4.51 0.160997 0.141917 25762 151098 -1 2217 22 1494 2515 241172 49180 3.78976 3.78976 -130.242 -3.78976 0 0 787024. 2723.27 0.03 0.05 0.08 -1 -1 0.03 0.0154296 0.0137911 66 3 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_025.v common 1.95 vpr 64.21 MiB -1 -1 0.10 17676 1 0.02 -1 -1 29736 -1 -1 10 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65752 32 32 173 169 1 111 74 17 17 289 -1 unnamed_device 24.9 MiB 0.06 1439 560 9374 3843 5323 208 64.2 MiB 0.07 0.00 2.54695 2.03911 -69.5392 -2.03911 2.03911 0.28 0.000517782 0.00047721 0.0311304 0.0286357 -1 -1 -1 -1 32 1253 27 6.99608e+06 147157 586450. 2029.24 0.57 0.0745683 0.0659302 25474 144626 -1 1084 17 554 676 57342 13979 1.94502 1.94502 -76.2104 -1.94502 0 0 744469. 2576.02 0.03 0.02 0.08 -1 -1 0.03 0.00875001 0.00782223 43 3 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_026.v common 3.04 vpr 64.42 MiB -1 -1 0.11 18060 1 0.03 -1 -1 30180 -1 -1 15 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65968 32 32 300 245 1 176 79 17 17 289 -1 unnamed_device 24.9 MiB 0.75 2120 991 10050 3166 5397 1487 64.4 MiB 0.05 0.00 5.61451 4.50471 -128.436 -4.50471 4.50471 0.24 0.000301009 0.000274742 0.0212028 0.0195085 -1 -1 -1 -1 34 2653 41 6.99608e+06 220735 618332. 2139.56 0.94 0.100568 0.0883959 25762 151098 -1 2097 19 1258 1913 140387 31529 3.94702 3.94702 -130.561 -3.94702 0 0 787024. 2723.27 0.03 0.04 0.08 -1 -1 0.03 0.0143834 0.0129277 73 24 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_027.v common 3.06 vpr 64.92 MiB -1 -1 0.10 17672 1 0.03 -1 -1 29956 -1 -1 27 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66476 32 32 297 233 1 170 91 17 17 289 -1 unnamed_device 25.2 MiB 0.10 1823 770 8047 1794 5817 436 64.9 MiB 0.04 0.00 3.17834 2.84195 -96.8757 -2.84195 2.84195 0.25 0.000307522 0.000280239 0.0139893 0.0127846 -1 -1 -1 -1 38 2286 24 6.99608e+06 397324 678818. 2348.85 1.45 0.120098 0.104798 26626 170182 -1 1846 20 1304 2290 140400 35421 2.96851 2.96851 -105.541 -2.96851 0 0 902133. 3121.57 0.05 0.07 0.16 -1 -1 0.05 0.0249902 0.0224145 77 3 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_028.v common 7.89 vpr 65.12 MiB -1 -1 0.12 18060 1 0.03 -1 -1 29768 -1 -1 20 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66688 32 32 338 277 1 204 84 17 17 289 -1 unnamed_device 25.2 MiB 0.46 2724 1022 8136 1841 6065 230 65.1 MiB 0.05 0.00 5.37647 4.14137 -127.473 -4.14137 4.14137 0.36 0.000375091 0.000347255 0.0168054 0.0153915 -1 -1 -1 -1 38 3057 31 6.99608e+06 294314 678818. 2348.85 5.89 0.19333 0.169565 26626 170182 -1 2256 20 1754 2596 181852 41367 3.87782 3.87782 -133.503 -3.87782 0 0 902133. 3121.57 0.03 0.05 0.09 -1 -1 0.03 0.0166011 0.0149371 88 50 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_029.v common 2.51 vpr 64.73 MiB -1 -1 0.11 17676 1 0.02 -1 -1 29804 -1 -1 14 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66288 32 32 284 241 1 168 78 17 17 289 -1 unnamed_device 24.9 MiB 0.51 1906 924 9872 3709 5164 999 64.7 MiB 0.05 0.00 3.74453 3.11176 -114.352 -3.11176 3.11176 0.25 0.000287639 0.000263831 0.0210304 0.0193592 -1 -1 -1 -1 34 2359 22 6.99608e+06 206020 618332. 2139.56 0.67 0.0852771 0.0749924 25762 151098 -1 2040 23 1396 2031 159719 34924 3.14212 3.14212 -122.708 -3.14212 0 0 787024. 2723.27 0.03 0.04 0.08 -1 -1 0.03 0.0155618 0.0138549 68 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_030.v common 3.33 vpr 63.88 MiB -1 -1 0.18 17676 1 0.02 -1 -1 29840 -1 -1 16 30 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65416 30 32 262 227 1 160 78 17 17 289 -1 unnamed_device 24.9 MiB 0.18 1816 788 8212 1940 5916 356 63.9 MiB 0.04 0.00 4.36766 3.76823 -111.393 -3.76823 3.76823 0.24 0.000268796 0.000246457 0.014825 0.0136157 -1 -1 -1 -1 36 2251 27 6.99608e+06 235451 648988. 2245.63 1.49 0.114612 0.0991656 26050 158493 -1 1776 64 1632 2908 490429 252067 3.39226 3.39226 -111.31 -3.39226 0 0 828058. 2865.25 0.03 0.20 0.15 -1 -1 0.03 0.0388827 0.0341788 65 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_031.v common 2.37 vpr 64.65 MiB -1 -1 0.12 17472 1 0.02 -1 -1 29824 -1 -1 17 28 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66204 28 32 260 223 1 152 77 17 17 289 -1 unnamed_device 24.9 MiB 0.19 1683 804 11650 4924 6170 556 64.7 MiB 0.05 0.00 4.26016 3.78259 -116.363 -3.78259 3.78259 0.25 0.000265538 0.000243257 0.0203419 0.0186211 -1 -1 -1 -1 40 1766 19 6.99608e+06 250167 706193. 2443.58 0.64 0.0678464 0.0597412 26914 176310 -1 1619 17 889 1497 109998 24855 3.37506 3.37506 -112.039 -3.37506 0 0 926341. 3205.33 0.05 0.05 0.17 -1 -1 0.05 0.0182635 0.0163129 69 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_032.v common 2.30 vpr 64.55 MiB -1 -1 0.13 17680 1 0.03 -1 -1 29808 -1 -1 13 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66096 32 32 253 210 1 149 77 17 17 289 -1 unnamed_device 24.9 MiB 0.10 1562 788 6108 1413 4387 308 64.5 MiB 0.03 0.00 3.55103 3.30043 -111.23 -3.30043 3.30043 0.25 0.00031688 0.00027615 0.0131315 0.0120434 -1 -1 -1 -1 36 2159 28 6.99608e+06 191304 648988. 2245.63 0.80 0.0795214 0.0697774 26050 158493 -1 1866 20 1176 1858 150356 33149 3.08997 3.08997 -117.255 -3.08997 0 0 828058. 2865.25 0.03 0.04 0.08 -1 -1 0.03 0.0133256 0.0119122 59 3 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_033.v common 2.91 vpr 64.66 MiB -1 -1 0.11 17676 1 0.03 -1 -1 30288 -1 -1 15 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66212 31 32 271 231 1 164 78 17 17 289 -1 unnamed_device 24.9 MiB 0.21 1729 914 6552 1539 4793 220 64.7 MiB 0.03 0.00 3.64733 3.26948 -110.36 -3.26948 3.26948 0.24 0.000274842 0.000251498 0.0124484 0.0114395 -1 -1 -1 -1 38 2086 22 6.99608e+06 220735 678818. 2348.85 1.41 0.113843 0.0989225 26626 170182 -1 1766 19 1123 1539 113480 24974 2.95762 2.95762 -107.253 -2.95762 0 0 902133. 3121.57 0.03 0.03 0.09 -1 -1 0.03 0.0130744 0.0117173 65 30 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_034.v common 3.02 vpr 65.02 MiB -1 -1 0.23 18060 1 0.03 -1 -1 30260 -1 -1 18 29 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66584 29 32 291 250 1 177 79 17 17 289 -1 unnamed_device 25.1 MiB 0.30 1970 870 12923 5432 7041 450 65.0 MiB 0.06 0.00 3.19185 3.0305 -101.634 -3.0305 3.0305 0.25 0.0002811 0.000256228 0.026476 0.024338 -1 -1 -1 -1 34 2394 43 6.99608e+06 264882 618332. 2139.56 1.28 0.123062 0.107742 25762 151098 -1 1866 20 1335 1783 151180 34619 2.90282 2.90282 -102.948 -2.90282 0 0 787024. 2723.27 0.03 0.04 0.08 -1 -1 0.03 0.0142251 0.0127067 75 54 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_035.v common 5.13 vpr 65.27 MiB -1 -1 0.11 18056 1 0.03 -1 -1 30252 -1 -1 21 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66840 32 32 367 282 1 214 85 17 17 289 -1 unnamed_device 25.2 MiB 0.22 2522 1172 14035 4232 7971 1832 65.3 MiB 0.17 0.00 4.99868 4.08568 -124.995 -4.08568 4.08568 0.27 0.000960124 0.000884277 0.076292 0.0708771 -1 -1 -1 -1 36 3145 22 6.99608e+06 309029 648988. 2245.63 3.32 0.224409 0.200545 26050 158493 -1 2479 23 1718 2753 202121 45212 3.89121 3.89121 -131.794 -3.89121 0 0 828058. 2865.25 0.03 0.06 0.14 -1 -1 0.03 0.020053 0.0180574 91 29 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_036.v common 2.64 vpr 65.45 MiB -1 -1 0.12 18056 1 0.03 -1 -1 30308 -1 -1 21 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 67016 32 32 391 311 1 244 85 17 17 289 -1 unnamed_device 25.6 MiB 0.27 3114 1259 14779 4738 7682 2359 65.4 MiB 0.18 0.00 5.22142 3.95648 -143.346 -3.95648 3.95648 0.25 0.000988432 0.000921433 0.0827453 0.0770468 -1 -1 -1 -1 38 3454 34 6.99608e+06 309029 678818. 2348.85 0.82 0.15522 0.140296 26626 170182 -1 2633 24 2431 3409 267181 56072 3.57966 3.57966 -146.352 -3.57966 0 0 902133. 3121.57 0.03 0.06 0.09 -1 -1 0.03 0.0199938 0.017896 103 65 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_037.v common 3.43 vpr 64.29 MiB -1 -1 0.12 18444 1 0.02 -1 -1 29780 -1 -1 14 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65832 31 32 279 237 1 161 77 17 17 289 -1 unnamed_device 24.9 MiB 0.30 1951 789 11976 3042 8492 442 64.3 MiB 0.06 0.00 4.50867 3.52417 -108.752 -3.52417 3.52417 0.26 0.000669405 0.0006251 0.0285923 0.0264143 -1 -1 -1 -1 36 2241 46 6.99608e+06 206020 648988. 2245.63 1.65 0.131689 0.116324 26050 158493 -1 1842 19 1371 2033 165078 39629 3.27322 3.27322 -114.522 -3.27322 0 0 828058. 2865.25 0.03 0.04 0.08 -1 -1 0.03 0.0134904 0.0120612 67 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_038.v common 2.81 vpr 65.36 MiB -1 -1 0.13 18060 1 0.03 -1 -1 29968 -1 -1 22 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66932 31 32 370 297 1 227 85 17 17 289 -1 unnamed_device 25.6 MiB 0.31 2471 1139 11059 3848 5463 1748 65.4 MiB 0.06 0.00 3.93715 3.60485 -125.992 -3.60485 3.60485 0.24 0.000340222 0.000310302 0.0228227 0.0209047 -1 -1 -1 -1 38 3226 39 6.99608e+06 323745 678818. 2348.85 1.11 0.101109 0.0890899 26626 170182 -1 2488 20 1747 2530 216446 46223 3.50736 3.50736 -133.253 -3.50736 0 0 902133. 3121.57 0.03 0.05 0.09 -1 -1 0.03 0.0172056 0.0154889 98 61 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_039.v common 7.93 vpr 65.27 MiB -1 -1 0.13 18060 1 0.03 -1 -1 30176 -1 -1 22 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66836 31 32 377 302 1 235 85 17 17 289 -1 unnamed_device 25.6 MiB 0.26 3086 1318 10687 2982 7130 575 65.3 MiB 0.06 0.00 6.44118 5.00244 -160.349 -5.00244 5.00244 0.25 0.000364276 0.000335521 0.022151 0.0203222 -1 -1 -1 -1 38 3194 28 6.99608e+06 323745 678818. 2348.85 6.29 0.176922 0.15499 26626 170182 -1 2740 19 2162 3082 228411 49616 4.82274 4.82274 -169.003 -4.82274 0 0 902133. 3121.57 0.03 0.05 0.09 -1 -1 0.03 0.0170405 0.0153752 101 64 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_040.v common 3.46 vpr 65.41 MiB -1 -1 0.13 18048 1 0.03 -1 -1 29768 -1 -1 21 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66980 31 32 383 305 1 232 84 17 17 289 -1 unnamed_device 25.6 MiB 0.68 2998 1211 13809 5832 7618 359 65.4 MiB 0.09 0.00 6.73307 4.94768 -163.914 -4.94768 4.94768 0.26 0.000351527 0.000321331 0.040439 0.0373557 -1 -1 -1 -1 38 3344 24 6.99608e+06 309029 678818. 2348.85 1.31 0.133483 0.119387 26626 170182 -1 2611 24 2258 3370 271018 68504 4.84 4.84 -173.04 -4.84 0 0 902133. 3121.57 0.03 0.07 0.09 -1 -1 0.03 0.0207315 0.0186332 101 64 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_041.v common 2.96 vpr 64.58 MiB -1 -1 0.13 18444 1 0.03 -1 -1 29740 -1 -1 19 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66132 31 32 352 285 1 214 82 17 17 289 -1 unnamed_device 25.2 MiB 0.29 2321 1209 11118 3541 5840 1737 64.6 MiB 0.06 0.00 4.10443 3.47793 -120.035 -3.47793 3.47793 0.25 0.000339383 0.000311035 0.0228619 0.0209898 -1 -1 -1 -1 38 3104 43 6.99608e+06 279598 678818. 2348.85 1.16 0.105384 0.0934951 26626 170182 -1 2395 22 1987 2942 229567 48017 3.36022 3.36022 -127.979 -3.36022 0 0 902133. 3121.57 0.03 0.06 0.09 -1 -1 0.03 0.0181155 0.0162911 90 55 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_042.v common 2.91 vpr 64.39 MiB -1 -1 0.12 18060 1 0.03 -1 -1 29748 -1 -1 18 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65932 32 32 291 242 1 173 82 17 17 289 -1 unnamed_device 25.2 MiB 0.26 2257 1074 10584 2543 6589 1452 64.4 MiB 0.05 0.00 4.8427 4.02108 -120.371 -4.02108 4.02108 0.24 0.000295137 0.000271181 0.0192343 0.0176373 -1 -1 -1 -1 34 2686 27 6.99608e+06 264882 618332. 2139.56 1.31 0.0984721 0.0865377 25762 151098 -1 2408 21 1352 2027 180812 38694 3.83326 3.83326 -129.933 -3.83326 0 0 787024. 2723.27 0.03 0.05 0.08 -1 -1 0.03 0.0148508 0.0132692 73 27 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_043.v common 8.73 vpr 65.75 MiB -1 -1 0.13 18060 1 0.04 -1 -1 29816 -1 -1 26 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 67328 32 32 457 356 1 282 90 17 17 289 -1 unnamed_device 26.4 MiB 0.34 3052 1509 12753 3455 8062 1236 65.8 MiB 0.08 0.00 6.26717 5.14656 -172.851 -5.14656 5.14656 0.24 0.000438438 0.000399665 0.0312348 0.0287359 -1 -1 -1 -1 40 3984 25 6.99608e+06 382608 706193. 2443.58 6.88 0.245438 0.215822 26914 176310 -1 3415 22 2474 3639 272449 59278 5.07634 5.07634 -175.218 -5.07634 0 0 926341. 3205.33 0.03 0.07 0.10 -1 -1 0.03 0.0225554 0.0203049 127 87 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_044.v common 2.27 vpr 64.58 MiB -1 -1 0.14 17672 1 0.03 -1 -1 29648 -1 -1 14 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66132 31 32 261 225 1 158 77 17 17 289 -1 unnamed_device 24.8 MiB 0.30 1593 899 7412 1777 4948 687 64.6 MiB 0.04 0.00 3.6621 3.0623 -104.163 -3.0623 3.0623 0.25 0.000597636 0.000555705 0.0176173 0.0163332 -1 -1 -1 -1 32 2111 32 6.99608e+06 206020 586450. 2029.24 0.60 0.0699195 0.0614205 25474 144626 -1 1852 20 1077 1450 120781 26826 3.31142 3.31142 -117.221 -3.31142 0 0 744469. 2576.02 0.03 0.04 0.08 -1 -1 0.03 0.0140206 0.0125371 65 28 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_045.v common 2.66 vpr 65.18 MiB -1 -1 0.12 18060 1 0.03 -1 -1 30228 -1 -1 18 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66748 31 32 337 267 1 199 81 17 17 289 -1 unnamed_device 25.2 MiB 0.27 2145 1115 11106 4094 5276 1736 65.2 MiB 0.06 0.00 4.77304 4.27184 -135.826 -4.27184 4.27184 0.25 0.000324833 0.000296411 0.0225737 0.0206979 -1 -1 -1 -1 44 2697 25 6.99608e+06 264882 787024. 2723.27 1.00 0.101064 0.0892623 27778 195446 -1 2120 21 1262 1981 149067 31664 4.02291 4.02291 -134.519 -4.02291 0 0 997811. 3452.63 0.04 0.04 0.11 -1 -1 0.04 0.0168417 0.0151147 82 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_046.v common 3.33 vpr 65.23 MiB -1 -1 0.12 18440 1 0.04 -1 -1 30020 -1 -1 20 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66800 32 32 349 284 1 213 84 17 17 289 -1 unnamed_device 25.2 MiB 0.34 2736 1076 15273 5235 7717 2321 65.2 MiB 0.08 0.00 4.55139 3.66953 -119.489 -3.66953 3.66953 0.24 0.000334283 0.000306338 0.0300208 0.0275113 -1 -1 -1 -1 42 2891 20 6.99608e+06 294314 744469. 2576.02 1.52 0.137871 0.120656 27202 183097 -1 2348 19 1511 2377 177851 40110 3.63266 3.63266 -126.058 -3.63266 0 0 949917. 3286.91 0.03 0.05 0.10 -1 -1 0.03 0.0163287 0.0147117 90 53 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_047.v common 7.22 vpr 64.62 MiB -1 -1 0.11 17672 1 0.03 -1 -1 30168 -1 -1 19 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66176 32 32 291 230 1 160 83 17 17 289 -1 unnamed_device 24.9 MiB 0.20 1772 1011 10343 3054 6149 1140 64.6 MiB 0.09 0.00 4.52137 4.01417 -123.961 -4.01417 4.01417 0.29 0.000533086 0.000484878 0.0332193 0.0304525 -1 -1 -1 -1 36 2627 27 6.99608e+06 279598 648988. 2245.63 5.58 0.170154 0.149886 26050 158493 -1 2246 27 1497 2733 298227 86162 3.91606 3.91606 -131.254 -3.91606 0 0 828058. 2865.25 0.03 0.08 0.08 -1 -1 0.03 0.0183437 0.0162826 70 3 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_048.v common 3.80 vpr 65.15 MiB -1 -1 0.12 18444 1 0.03 -1 -1 29736 -1 -1 19 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66716 32 32 353 287 1 210 83 17 17 289 -1 unnamed_device 25.8 MiB 0.48 2562 1041 14123 5669 6794 1660 65.2 MiB 0.09 0.00 4.62756 3.95722 -121.021 -3.95722 3.95722 0.25 0.000523358 0.000494676 0.0370832 0.0342115 -1 -1 -1 -1 38 3059 28 6.99608e+06 279598 678818. 2348.85 1.73 0.173229 0.152378 26626 170182 -1 2276 22 1550 2190 162466 35607 3.46336 3.46336 -123.742 -3.46336 0 0 902133. 3121.57 0.05 0.05 0.14 -1 -1 0.05 0.0177621 0.0159143 91 55 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_049.v common 4.27 vpr 65.19 MiB -1 -1 0.13 18060 1 0.03 -1 -1 30164 -1 -1 21 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66756 32 32 361 291 1 214 85 17 17 289 -1 unnamed_device 25.2 MiB 0.29 2404 1228 14407 4938 7065 2404 65.2 MiB 0.08 0.00 4.47599 3.61653 -127.814 -3.61653 3.61653 0.26 0.000342994 0.000313604 0.0323871 0.0296708 -1 -1 -1 -1 34 3482 45 6.99608e+06 309029 618332. 2139.56 2.58 0.169262 0.149247 25762 151098 -1 2670 20 1670 2442 197737 43022 3.59376 3.59376 -134.576 -3.59376 0 0 787024. 2723.27 0.03 0.05 0.08 -1 -1 0.03 0.0174682 0.0157616 94 55 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_050.v common 2.79 vpr 65.41 MiB -1 -1 0.13 18060 1 0.03 -1 -1 29852 -1 -1 22 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66984 32 32 382 305 1 237 86 17 17 289 -1 unnamed_device 26.0 MiB 0.28 2390 1306 9725 3245 4874 1606 65.4 MiB 0.06 0.00 4.47137 3.65053 -130.846 -3.65053 3.65053 0.25 0.000352114 0.00032115 0.0220394 0.0202648 -1 -1 -1 -1 40 3093 27 6.99608e+06 323745 706193. 2443.58 1.04 0.110123 0.09724 26914 176310 -1 2643 22 2052 2804 233702 50043 3.29947 3.29947 -131.275 -3.29947 0 0 926341. 3205.33 0.03 0.07 0.11 -1 -1 0.03 0.0235983 0.0212753 101 62 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_051.v common 6.58 vpr 64.65 MiB -1 -1 0.12 17748 1 0.03 -1 -1 29776 -1 -1 16 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66200 32 32 306 248 1 175 80 17 17 289 -1 unnamed_device 25.2 MiB 0.41 2053 1074 11776 3968 6127 1681 64.6 MiB 0.07 0.00 5.26523 4.40603 -128.032 -4.40603 4.40603 0.26 0.000728279 0.000680288 0.0316996 0.0293502 -1 -1 -1 -1 34 2691 25 6.99608e+06 235451 618332. 2139.56 4.79 0.197275 0.172981 25762 151098 -1 2202 23 1453 2321 173808 37601 4.15667 4.15667 -136.845 -4.15667 0 0 787024. 2723.27 0.03 0.05 0.09 -1 -1 0.03 0.0195148 0.0174502 74 24 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_052.v common 3.39 vpr 64.48 MiB -1 -1 0.17 17676 1 0.03 -1 -1 29596 -1 -1 17 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66028 32 32 319 257 1 191 81 17 17 289 -1 unnamed_device 25.2 MiB 0.28 2287 910 14606 5914 7002 1690 64.5 MiB 0.07 0.00 4.83128 4.09737 -124.66 -4.09737 4.09737 0.24 0.000310375 0.000283813 0.0282189 0.0258265 -1 -1 -1 -1 40 2417 38 6.99608e+06 250167 706193. 2443.58 1.69 0.153958 0.134164 26914 176310 -1 2039 22 1754 2409 172828 40103 4.13556 4.13556 -134.855 -4.13556 0 0 926341. 3205.33 0.03 0.05 0.10 -1 -1 0.03 0.0170663 0.0152923 79 29 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_053.v common 4.20 vpr 65.36 MiB -1 -1 0.22 18680 1 0.03 -1 -1 29812 -1 -1 20 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66928 31 32 373 299 1 222 83 17 17 289 -1 unnamed_device 25.3 MiB 0.29 3060 1061 14663 6195 7837 631 65.4 MiB 0.07 0.00 5.29948 4.04648 -128.43 -4.04648 4.04648 0.25 0.000346543 0.000316492 0.0300002 0.0274375 -1 -1 -1 -1 44 3255 35 6.99608e+06 294314 787024. 2723.27 2.28 0.202541 0.177628 27778 195446 -1 2207 24 1922 2925 205658 47391 4.38296 4.38296 -146.891 -4.38296 0 0 997811. 3452.63 0.04 0.05 0.12 -1 -1 0.04 0.0192397 0.0172114 96 62 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_054.v common 3.78 vpr 65.43 MiB -1 -1 0.12 18060 1 0.03 -1 -1 29784 -1 -1 20 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 67000 32 32 387 315 1 239 84 17 17 289 -1 unnamed_device 25.6 MiB 0.36 2489 1239 10515 4270 6030 215 65.4 MiB 0.08 0.00 4.49482 3.93712 -132.475 -3.93712 3.93712 0.26 0.00042534 0.0003946 0.0319843 0.0296844 -1 -1 -1 -1 42 3657 38 6.99608e+06 294314 744469. 2576.02 1.97 0.19167 0.168728 27202 183097 -1 2768 23 2154 3218 251393 54624 3.81701 3.81701 -136.091 -3.81701 0 0 949917. 3286.91 0.03 0.06 0.10 -1 -1 0.03 0.0194698 0.0174518 102 77 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_055.v common 2.78 vpr 64.02 MiB -1 -1 0.16 17916 1 0.03 -1 -1 29788 -1 -1 13 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65560 32 32 251 219 1 151 77 17 17 289 -1 unnamed_device 24.9 MiB 0.21 1737 727 8879 3608 5056 215 64.0 MiB 0.04 0.00 3.88198 3.25548 -102.196 -3.25548 3.25548 0.28 0.00026341 0.0002409 0.0158008 0.0144687 -1 -1 -1 -1 38 1830 24 6.99608e+06 191304 678818. 2348.85 1.16 0.0983347 0.0862121 26626 170182 -1 1501 21 989 1400 93207 22725 2.96192 2.96192 -100.295 -2.96192 0 0 902133. 3121.57 0.03 0.03 0.09 -1 -1 0.03 0.013285 0.0118673 59 23 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_056.v common 7.37 vpr 65.13 MiB -1 -1 0.18 18056 1 0.03 -1 -1 30212 -1 -1 17 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66696 32 32 341 285 1 216 81 17 17 289 -1 unnamed_device 25.2 MiB 0.30 2337 1049 10756 3701 4965 2090 65.1 MiB 0.06 0.00 4.38205 3.60289 -133.031 -3.60289 3.60289 0.25 0.000415296 0.000387779 0.0239569 0.0220371 -1 -1 -1 -1 40 2703 23 6.99608e+06 250167 706193. 2443.58 5.55 0.167443 0.147046 26914 176310 -1 2352 23 2080 2820 262366 57085 3.88501 3.88501 -148.748 -3.88501 0 0 926341. 3205.33 0.03 0.06 0.10 -1 -1 0.03 0.0176703 0.015799 89 65 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_057.v common 4.03 vpr 64.22 MiB -1 -1 0.17 18056 1 0.03 -1 -1 29984 -1 -1 18 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65764 32 32 387 293 1 225 82 17 17 289 -1 unnamed_device 25.2 MiB 0.28 2656 1174 14144 6001 7737 406 64.2 MiB 0.08 0.00 5.84018 4.78152 -149.199 -4.78152 4.78152 0.32 0.00038237 0.00035059 0.0376424 0.0348163 -1 -1 -1 -1 50 2834 24 6.99608e+06 264882 902133. 3121.57 2.10 0.205741 0.181907 28642 213929 -1 2303 22 2041 3172 224362 48220 4.42076 4.42076 -146.875 -4.42076 0 0 1.08113e+06 3740.92 0.04 0.05 0.12 -1 -1 0.04 0.0197493 0.0177838 96 31 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_058.v common 2.62 vpr 65.04 MiB -1 -1 0.11 18056 1 0.03 -1 -1 30412 -1 -1 18 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66596 32 32 340 270 1 205 82 17 17 289 -1 unnamed_device 25.3 MiB 0.24 2003 1157 10406 3036 5903 1467 65.0 MiB 0.05 0.00 4.01546 3.80886 -131.153 -3.80886 3.80886 0.25 0.000332988 0.00030492 0.0213291 0.0195744 -1 -1 -1 -1 36 2842 26 6.99608e+06 264882 648988. 2245.63 0.83 0.0904082 0.079963 26050 158493 -1 2400 20 1865 2578 211228 44537 3.22692 3.22692 -130.367 -3.22692 0 0 828058. 2865.25 0.05 0.08 0.15 -1 -1 0.05 0.0276081 0.0248415 83 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_059.v common 2.73 vpr 64.88 MiB -1 -1 0.19 17676 1 0.03 -1 -1 29812 -1 -1 24 30 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66440 30 32 278 235 1 166 86 17 17 289 -1 unnamed_device 25.6 MiB 0.17 1819 953 11237 3335 6152 1750 64.9 MiB 0.05 0.00 4.46953 3.72455 -123.086 -3.72455 3.72455 0.34 0.000295449 0.000271121 0.0207062 0.0190016 -1 -1 -1 -1 32 2493 41 6.99608e+06 353176 586450. 2029.24 0.99 0.0810683 0.0713788 25474 144626 -1 1945 20 1129 1868 155903 34266 3.66766 3.66766 -130.635 -3.66766 0 0 744469. 2576.02 0.03 0.05 0.08 -1 -1 0.03 0.0169198 0.0148726 75 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_060.v common 13.97 vpr 65.62 MiB -1 -1 0.13 18060 1 0.03 -1 -1 29780 -1 -1 22 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 67192 32 32 431 332 1 263 86 17 17 289 -1 unnamed_device 25.6 MiB 0.36 3530 1523 10859 3269 7015 575 65.6 MiB 0.07 0.00 8.11443 6.30909 -191.484 -6.30909 6.30909 0.25 0.000409098 0.000372795 0.0269271 0.024715 -1 -1 -1 -1 40 3812 24 6.99608e+06 323745 706193. 2443.58 12.07 0.275135 0.243556 26914 176310 -1 3230 22 2400 3619 307902 64475 5.46454 5.46454 -183.101 -5.46454 0 0 926341. 3205.33 0.03 0.07 0.10 -1 -1 0.03 0.0224372 0.0202166 113 65 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_061.v common 2.82 vpr 64.55 MiB -1 -1 0.12 18056 1 0.03 -1 -1 30360 -1 -1 17 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66096 32 32 336 268 1 199 81 17 17 289 -1 unnamed_device 25.6 MiB 0.33 2220 1042 7256 1709 5288 259 64.5 MiB 0.10 0.00 5.22335 4.47706 -136.26 -4.47706 4.47706 0.26 0.000897643 0.000833199 0.040152 0.0374168 -1 -1 -1 -1 36 2668 31 6.99608e+06 250167 648988. 2245.63 1.01 0.123457 0.110111 26050 158493 -1 2169 22 1855 2587 213043 45510 4.09836 4.09836 -141.679 -4.09836 0 0 828058. 2865.25 0.03 0.05 0.09 -1 -1 0.03 0.0173523 0.015543 82 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_062.v common 3.31 vpr 64.49 MiB -1 -1 0.11 17676 1 0.02 -1 -1 30328 -1 -1 16 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66036 32 32 231 199 1 136 80 17 17 289 -1 unnamed_device 25.0 MiB 0.14 1667 644 6788 1443 5150 195 64.5 MiB 0.04 0.00 3.3651 2.966 -94.919 -2.966 2.966 0.25 0.000257042 0.000236046 0.0117376 0.0108063 -1 -1 -1 -1 36 1886 27 6.99608e+06 235451 648988. 2245.63 1.77 0.127294 0.111299 26050 158493 -1 1559 19 950 1545 119567 29462 2.94467 2.94467 -105.198 -2.94467 0 0 828058. 2865.25 0.05 0.07 0.09 -1 -1 0.05 0.0278513 0.024845 54 3 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_063.v common 4.46 vpr 65.26 MiB -1 -1 0.14 18056 1 0.03 -1 -1 30232 -1 -1 20 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66828 32 32 349 273 1 205 84 17 17 289 -1 unnamed_device 25.6 MiB 0.23 2149 1082 11430 4676 6413 341 65.3 MiB 0.06 0.00 5.75835 4.90682 -134.383 -4.90682 4.90682 0.25 0.000333152 0.000304183 0.0230581 0.0211123 -1 -1 -1 -1 50 2420 28 6.99608e+06 294314 902133. 3121.57 2.75 0.210124 0.185284 28642 213929 -1 2106 23 1498 2570 197970 44240 4.41151 4.41151 -133.222 -4.41151 0 0 1.08113e+06 3740.92 0.04 0.06 0.12 -1 -1 0.04 0.0201727 0.0180905 86 29 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_064.v common 2.35 vpr 64.20 MiB -1 -1 0.11 17676 1 0.02 -1 -1 29800 -1 -1 16 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65740 32 32 247 207 1 142 80 17 17 289 -1 unnamed_device 24.9 MiB 0.14 1516 866 8852 2265 5550 1037 64.2 MiB 0.07 0.00 3.3589 2.9481 -106.495 -2.9481 2.9481 0.29 0.000477265 0.000433152 0.0294708 0.0271445 -1 -1 -1 -1 32 1986 23 6.99608e+06 235451 586450. 2029.24 0.76 0.0926109 0.0816633 25474 144626 -1 1818 21 1207 1848 144119 31724 2.97567 2.97567 -114.332 -2.97567 0 0 744469. 2576.02 0.04 0.04 0.14 -1 -1 0.04 0.0132219 0.0117761 58 3 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_065.v common 4.51 vpr 64.35 MiB -1 -1 0.12 17676 1 0.02 -1 -1 29852 -1 -1 17 30 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65892 30 32 278 235 1 168 79 17 17 289 -1 unnamed_device 24.9 MiB 0.27 1881 846 11740 4899 6478 363 64.3 MiB 0.06 0.00 3.88477 3.61627 -115.385 -3.61627 3.61627 0.38 0.000277943 0.000253538 0.0253803 0.0232971 -1 -1 -1 -1 34 2626 42 6.99608e+06 250167 618332. 2139.56 2.59 0.149488 0.131234 25762 151098 -1 1930 22 1548 2150 173949 38779 3.36322 3.36322 -120.284 -3.36322 0 0 787024. 2723.27 0.03 0.05 0.08 -1 -1 0.03 0.0148292 0.0132602 69 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_066.v common 8.09 vpr 65.30 MiB -1 -1 0.13 17916 1 0.03 -1 -1 29796 -1 -1 21 29 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66872 29 32 355 287 1 212 82 17 17 289 -1 unnamed_device 25.2 MiB 0.35 2487 1076 7024 1631 5053 340 65.3 MiB 0.04 0.00 4.65503 4.06423 -126.233 -4.06423 4.06423 0.24 0.0003279 0.00030095 0.0150345 0.0137987 -1 -1 -1 -1 40 2852 44 6.99608e+06 309029 706193. 2443.58 6.39 0.19367 0.169529 26914 176310 -1 2416 21 1657 2448 196716 42818 3.649 3.649 -124.232 -3.649 0 0 926341. 3205.33 0.03 0.05 0.09 -1 -1 0.03 0.0171414 0.0153764 94 62 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_067.v common 5.18 vpr 65.18 MiB -1 -1 0.12 18440 1 0.03 -1 -1 29760 -1 -1 19 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66744 32 32 358 289 1 214 83 17 17 289 -1 unnamed_device 25.2 MiB 0.33 2512 1102 12323 3030 8331 962 65.2 MiB 0.06 0.00 5.76244 4.57197 -150.669 -4.57197 4.57197 0.25 0.000340918 0.00031236 0.0265798 0.0243785 -1 -1 -1 -1 40 2617 23 6.99608e+06 279598 706193. 2443.58 3.43 0.182268 0.159744 26914 176310 -1 2263 20 1664 2404 159920 36281 4.4118 4.4118 -149.852 -4.4118 0 0 926341. 3205.33 0.03 0.05 0.10 -1 -1 0.03 0.0170972 0.0153704 93 54 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_068.v common 6.18 vpr 65.29 MiB -1 -1 0.11 18060 1 0.03 -1 -1 30264 -1 -1 18 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66856 32 32 353 285 1 210 82 17 17 289 -1 unnamed_device 25.2 MiB 0.35 2477 1259 12542 3693 7235 1614 65.3 MiB 0.07 0.00 5.61514 4.67867 -148.606 -4.67867 4.67867 0.26 0.000330558 0.000302788 0.0284666 0.0261654 -1 -1 -1 -1 36 3280 30 6.99608e+06 264882 648988. 2245.63 4.40 0.190601 0.1677 26050 158493 -1 2804 20 1753 2535 251826 52553 4.52301 4.52301 -153.738 -4.52301 0 0 828058. 2865.25 0.03 0.06 0.09 -1 -1 0.03 0.0175652 0.0158305 90 51 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_069.v common 2.87 vpr 64.66 MiB -1 -1 0.11 17676 1 0.03 -1 -1 29796 -1 -1 13 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66212 32 32 276 237 1 160 77 17 17 289 -1 unnamed_device 25.2 MiB 0.39 2019 874 7412 2163 4944 305 64.7 MiB 0.04 0.00 4.43837 3.56127 -113.067 -3.56127 3.56127 0.25 0.000283865 0.000260375 0.0142326 0.0130747 -1 -1 -1 -1 38 2164 36 6.99608e+06 191304 678818. 2348.85 1.10 0.109947 0.0967195 26626 170182 -1 1847 21 1125 1512 114209 25335 3.29786 3.29786 -114.972 -3.29786 0 0 902133. 3121.57 0.03 0.04 0.09 -1 -1 0.03 0.016037 0.0142694 65 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_070.v common 2.83 vpr 64.50 MiB -1 -1 0.15 17676 1 0.03 -1 -1 29640 -1 -1 17 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66052 31 32 319 272 1 200 80 17 17 289 -1 unnamed_device 25.2 MiB 0.29 2059 1143 8680 2684 4726 1270 64.5 MiB 0.06 0.00 3.74443 3.36163 -119.008 -3.36163 3.36163 0.28 0.000348439 0.000322031 0.0245664 0.02271 -1 -1 -1 -1 36 2725 29 6.99608e+06 250167 648988. 2245.63 1.02 0.131981 0.116646 26050 158493 -1 2415 23 1788 2474 198378 43599 3.45072 3.45072 -132.987 -3.45072 0 0 828058. 2865.25 0.03 0.05 0.09 -1 -1 0.03 0.0175891 0.0157376 83 64 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_071.v common 3.31 vpr 64.93 MiB -1 -1 0.18 18060 1 0.04 -1 -1 30516 -1 -1 22 30 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66492 30 32 329 273 1 202 84 17 17 289 -1 unnamed_device 25.2 MiB 0.37 2292 985 10698 3333 5234 2131 64.9 MiB 0.05 0.00 3.96185 3.1635 -104.256 -3.1635 3.1635 0.25 0.000310397 0.000283766 0.0202326 0.0185443 -1 -1 -1 -1 38 2681 23 6.99608e+06 323745 678818. 2348.85 1.43 0.133462 0.116748 26626 170182 -1 2079 21 1525 2176 145997 33843 3.15117 3.15117 -108.403 -3.15117 0 0 902133. 3121.57 0.03 0.04 0.09 -1 -1 0.03 0.0163276 0.0146456 88 57 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_072.v common 2.62 vpr 64.30 MiB -1 -1 0.11 18060 1 0.02 -1 -1 29820 -1 -1 20 28 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65848 28 32 277 229 1 167 80 17 17 289 -1 unnamed_device 24.6 MiB 0.18 2171 750 13324 5641 6785 898 64.3 MiB 0.06 0.00 4.60235 3.68935 -102.007 -3.68935 3.68935 0.26 0.000280311 0.000256331 0.0262871 0.0241405 -1 -1 -1 -1 38 2095 46 6.99608e+06 294314 678818. 2348.85 1.06 0.0999501 0.0881336 26626 170182 -1 1637 20 1275 2053 133456 31957 3.86712 3.86712 -107.152 -3.86712 0 0 902133. 3121.57 0.03 0.04 0.09 -1 -1 0.03 0.0139935 0.0125284 70 27 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_073.v common 4.06 vpr 64.07 MiB -1 -1 0.16 18056 1 0.03 -1 -1 29780 -1 -1 18 30 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65612 30 32 317 269 1 200 80 17 17 289 -1 unnamed_device 25.2 MiB 0.27 2064 1130 10400 3752 5071 1577 64.1 MiB 0.08 0.00 4.54182 3.92332 -130.777 -3.92332 3.92332 0.44 0.000299101 0.00027329 0.0360045 0.0331235 -1 -1 -1 -1 44 2351 40 6.99608e+06 264882 787024. 2723.27 1.79 0.167755 0.146837 27778 195446 -1 2079 50 2714 3757 509029 223795 3.54531 3.54531 -130.146 -3.54531 0 0 997811. 3452.63 0.04 0.17 0.11 -1 -1 0.04 0.0301622 0.0264103 84 63 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_074.v common 3.55 vpr 64.54 MiB -1 -1 0.20 17672 1 0.03 -1 -1 30204 -1 -1 18 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66088 32 32 335 282 1 216 82 17 17 289 -1 unnamed_device 25.2 MiB 0.38 2365 1114 12542 4673 5784 2085 64.5 MiB 0.08 0.00 3.99224 3.50894 -127.534 -3.50894 3.50894 0.25 0.000315106 0.000287859 0.034242 0.0315552 -1 -1 -1 -1 42 2677 24 6.99608e+06 264882 744469. 2576.02 1.61 0.152336 0.134508 27202 183097 -1 2084 22 1659 2257 159018 34861 3.14317 3.14317 -124.044 -3.14317 0 0 949917. 3286.91 0.03 0.05 0.10 -1 -1 0.03 0.0187501 0.0166729 87 65 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_075.v common 8.45 vpr 65.02 MiB -1 -1 0.13 17672 1 0.03 -1 -1 29552 -1 -1 28 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66584 31 32 293 230 1 168 91 17 17 289 -1 unnamed_device 25.2 MiB 0.09 2000 982 10903 2684 7356 863 65.0 MiB 0.05 0.00 4.71072 4.12848 -125.314 -4.12848 4.12848 0.24 0.000299526 0.000273857 0.0177575 0.0162742 -1 -1 -1 -1 40 2473 20 6.99608e+06 412039 706193. 2443.58 6.98 0.188456 0.165444 26914 176310 -1 2209 24 1486 2666 236458 56195 4.03642 4.03642 -129.321 -4.03642 0 0 926341. 3205.33 0.03 0.06 0.10 -1 -1 0.03 0.0170776 0.0152593 77 4 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_076.v common 3.08 vpr 64.80 MiB -1 -1 0.15 17916 1 0.03 -1 -1 29968 -1 -1 19 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66356 32 32 350 275 1 206 83 17 17 289 -1 unnamed_device 25.2 MiB 0.26 2490 1189 13403 4211 7234 1958 64.8 MiB 0.08 0.00 4.89302 4.14724 -142.136 -4.14724 4.14724 0.26 0.00033104 0.000302573 0.034491 0.0318021 -1 -1 -1 -1 36 3453 42 6.99608e+06 279598 648988. 2245.63 1.35 0.125825 0.111916 26050 158493 -1 2897 21 1884 2802 281160 57735 4.19956 4.19956 -157.838 -4.19956 0 0 828058. 2865.25 0.03 0.06 0.11 -1 -1 0.03 0.0184156 0.0165322 87 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_077.v common 4.17 vpr 64.71 MiB -1 -1 0.21 18060 1 0.04 -1 -1 29772 -1 -1 21 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66260 32 32 385 308 1 237 85 17 17 289 -1 unnamed_device 25.8 MiB 0.44 2652 1256 15151 5422 7831 1898 64.7 MiB 0.08 0.00 5.94478 5.006 -165.631 -5.006 5.006 0.25 0.000358141 0.000328231 0.0313961 0.0287286 -1 -1 -1 -1 40 3284 27 6.99608e+06 309029 706193. 2443.58 1.99 0.176264 0.156042 26914 176310 -1 2763 21 2194 3069 284504 58389 4.65534 4.65534 -165.239 -4.65534 0 0 926341. 3205.33 0.03 0.06 0.10 -1 -1 0.03 0.020252 0.0182285 103 65 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_078.v common 3.00 vpr 65.43 MiB -1 -1 0.14 18296 1 0.03 -1 -1 29856 -1 -1 22 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 67000 32 32 387 309 1 244 86 17 17 289 -1 unnamed_device 25.6 MiB 0.38 3090 1280 16529 5531 8719 2279 65.4 MiB 0.09 0.00 4.97976 4.22796 -143.885 -4.22796 4.22796 0.26 0.000359741 0.000330081 0.0345095 0.0317078 -1 -1 -1 -1 38 3429 46 6.99608e+06 323745 678818. 2348.85 1.11 0.118587 0.105226 26626 170182 -1 2650 21 2083 3065 220833 47744 4.0125 4.0125 -147.917 -4.0125 0 0 902133. 3121.57 0.03 0.06 0.10 -1 -1 0.03 0.0220048 0.0195822 102 65 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_079.v common 4.55 vpr 64.08 MiB -1 -1 0.11 17672 1 0.03 -1 -1 29876 -1 -1 17 30 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65620 30 32 272 232 1 169 79 17 17 289 -1 unnamed_device 24.9 MiB 0.22 1873 976 10388 2655 6704 1029 64.1 MiB 0.05 0.00 4.35146 3.77996 -115.544 -3.77996 3.77996 0.25 0.000298857 0.000275244 0.019425 0.0178398 -1 -1 -1 -1 32 2668 46 6.99608e+06 250167 586450. 2029.24 2.81 0.171253 0.150186 25474 144626 -1 2156 23 1627 2295 190396 40496 3.16982 3.16982 -119.919 -3.16982 0 0 744469. 2576.02 0.04 0.08 0.14 -1 -1 0.04 0.0250296 0.0223372 68 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_080.v common 7.57 vpr 65.39 MiB -1 -1 0.12 18056 1 0.03 -1 -1 29808 -1 -1 21 30 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66964 30 32 375 299 1 231 83 17 17 289 -1 unnamed_device 25.6 MiB 0.35 2543 1226 12863 4164 7357 1342 65.4 MiB 0.07 0.00 6.19097 4.8136 -157.664 -4.8136 4.8136 0.25 0.000343255 0.000314156 0.0271782 0.0248716 -1 -1 -1 -1 38 3234 41 6.99608e+06 309029 678818. 2348.85 5.75 0.208307 0.182755 26626 170182 -1 2608 23 2337 3366 264876 55857 4.57834 4.57834 -160.67 -4.57834 0 0 902133. 3121.57 0.03 0.06 0.11 -1 -1 0.03 0.0198221 0.0178488 101 63 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_081.v common 10.75 vpr 65.09 MiB -1 -1 0.21 18060 1 0.03 -1 -1 29580 -1 -1 18 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66656 32 32 340 270 1 197 82 17 17 289 -1 unnamed_device 25.2 MiB 0.26 2353 1072 9338 2392 6620 326 65.1 MiB 0.05 0.00 5.08705 4.46071 -137.725 -4.46071 4.46071 0.25 0.000326806 0.000298657 0.0201311 0.018525 -1 -1 -1 -1 36 3037 36 6.99608e+06 264882 648988. 2245.63 8.96 0.198441 0.174241 26050 158493 -1 2579 20 1968 3193 317298 64436 4.05906 4.05906 -142.951 -4.05906 0 0 828058. 2865.25 0.03 0.06 0.08 -1 -1 0.03 0.0165587 0.014862 83 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_082.v common 5.09 vpr 65.23 MiB -1 -1 0.14 18444 1 0.03 -1 -1 29780 -1 -1 19 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66800 31 32 340 275 1 195 82 17 17 289 -1 unnamed_device 25.2 MiB 0.52 2485 1077 6846 1660 4720 466 65.2 MiB 0.04 0.00 5.99233 5.0824 -146.792 -5.0824 5.0824 0.25 0.000332049 0.000305039 0.0153348 0.0141025 -1 -1 -1 -1 36 2949 36 6.99608e+06 279598 648988. 2245.63 2.99 0.163543 0.14333 26050 158493 -1 2436 25 1611 2368 219315 58630 4.22141 4.22141 -143.659 -4.22141 0 0 828058. 2865.25 0.05 0.10 0.14 -1 -1 0.05 0.0345574 0.0311452 87 47 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_083.v common 4.20 vpr 64.68 MiB -1 -1 0.14 18296 1 0.03 -1 -1 30180 -1 -1 23 30 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66236 30 32 377 310 1 234 85 17 17 289 -1 unnamed_device 25.2 MiB 0.40 2527 1287 11803 3693 6222 1888 64.7 MiB 0.07 0.00 4.79242 3.97958 -130.547 -3.97958 3.97958 0.28 0.000341223 0.000312216 0.0298593 0.0275985 -1 -1 -1 -1 46 2907 27 6.99608e+06 338461 828058. 2865.25 2.30 0.188811 0.166861 28066 200906 -1 2352 20 1694 2546 209301 42710 3.4157 3.4157 -127.942 -3.4157 0 0 1.01997e+06 3529.29 0.04 0.05 0.11 -1 -1 0.04 0.0172781 0.0155465 105 83 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_084.v common 4.16 vpr 65.34 MiB -1 -1 0.12 17912 1 0.03 -1 -1 29776 -1 -1 19 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66908 32 32 365 294 1 223 83 17 17 289 -1 unnamed_device 25.2 MiB 0.32 2642 1080 13043 4299 6062 2682 65.3 MiB 0.10 0.00 5.91884 4.65647 -145.605 -4.65647 4.65647 0.28 0.000616403 0.000561375 0.039827 0.0366499 -1 -1 -1 -1 58 2339 29 6.99608e+06 279598 997811. 3452.63 2.26 0.197471 0.173865 30370 251734 -1 1947 23 1549 2349 189783 40720 4.15385 4.15385 -138.843 -4.15385 0 0 1.25153e+06 4330.55 0.04 0.05 0.14 -1 -1 0.04 0.0191202 0.0171213 94 57 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_085.v common 3.96 vpr 65.42 MiB -1 -1 0.12 18060 1 0.03 -1 -1 29244 -1 -1 23 29 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66988 29 32 378 310 1 232 84 17 17 289 -1 unnamed_device 25.6 MiB 0.31 2249 1133 10332 4059 5536 737 65.4 MiB 0.06 0.00 4.37595 3.76735 -122.856 -3.76735 3.76735 0.25 0.000806941 0.000751406 0.0263063 0.0242243 -1 -1 -1 -1 40 2918 21 6.99608e+06 338461 706193. 2443.58 2.22 0.200676 0.177945 26914 176310 -1 2367 22 1494 2036 156146 35777 4.04156 4.04156 -134.374 -4.04156 0 0 926341. 3205.33 0.03 0.06 0.10 -1 -1 0.03 0.0229383 0.0205342 106 85 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_086.v common 3.20 vpr 64.49 MiB -1 -1 0.16 17676 1 0.03 -1 -1 30300 -1 -1 13 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66040 32 32 243 205 1 140 77 17 17 289 -1 unnamed_device 24.9 MiB 0.54 1620 885 6108 1414 4233 461 64.5 MiB 0.04 0.00 3.92693 3.42573 -113.797 -3.42573 3.42573 0.27 0.000262716 0.000240101 0.0155632 0.014418 -1 -1 -1 -1 32 2105 20 6.99608e+06 191304 586450. 2029.24 1.23 0.121706 0.106417 25474 144626 -1 1872 20 1044 1623 134418 28714 3.15892 3.15892 -116.975 -3.15892 0 0 744469. 2576.02 0.03 0.04 0.08 -1 -1 0.03 0.0145525 0.0129752 56 3 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_087.v common 3.10 vpr 65.38 MiB -1 -1 0.13 17916 1 0.04 -1 -1 30272 -1 -1 21 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66952 32 32 373 302 1 234 85 17 17 289 -1 unnamed_device 25.3 MiB 0.25 2757 1184 15523 6072 7602 1849 65.4 MiB 0.08 0.00 6.55248 4.951 -158.167 -4.951 4.951 0.25 0.000359023 0.000329679 0.0314315 0.0288277 -1 -1 -1 -1 38 3214 39 6.99608e+06 309029 678818. 2348.85 1.29 0.120257 0.106819 26626 170182 -1 2557 23 2159 3151 273144 56610 4.50624 4.50624 -154.678 -4.50624 0 0 902133. 3121.57 0.05 0.10 0.11 -1 -1 0.05 0.0328808 0.0296767 98 65 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_088.v common 4.56 vpr 64.09 MiB -1 -1 0.15 18056 1 0.03 -1 -1 29748 -1 -1 21 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65632 32 32 397 314 1 249 85 17 17 289 -1 unnamed_device 24.5 MiB 0.37 2726 1321 14965 5056 8532 1377 64.1 MiB 0.08 0.00 5.25319 4.65797 -164.783 -4.65797 4.65797 0.25 0.000368298 0.000331202 0.0316858 0.0290061 -1 -1 -1 -1 40 3636 25 6.99608e+06 309029 706193. 2443.58 2.70 0.227798 0.201867 26914 176310 -1 2903 21 2508 3573 301907 62282 4.82971 4.82971 -176.472 -4.82971 0 0 926341. 3205.33 0.03 0.06 0.10 -1 -1 0.03 0.0188725 0.0170092 105 65 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_089.v common 2.76 vpr 64.69 MiB -1 -1 0.11 18060 1 0.02 -1 -1 29784 -1 -1 13 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66240 32 32 269 231 1 163 77 17 17 289 -1 unnamed_device 25.5 MiB 0.26 1853 737 10346 4283 5770 293 64.7 MiB 0.05 0.00 3.61613 3.25618 -100.635 -3.25618 3.25618 0.26 0.000294064 0.00026383 0.0250246 0.0231762 -1 -1 -1 -1 40 1864 45 6.99608e+06 191304 706193. 2443.58 1.05 0.104956 0.0924776 26914 176310 -1 1561 25 1244 1653 120205 30029 3.41867 3.41867 -112.985 -3.41867 0 0 926341. 3205.33 0.05 0.04 0.17 -1 -1 0.05 0.0158374 0.0140831 66 29 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_090.v common 2.08 vpr 64.09 MiB -1 -1 0.12 17672 1 0.03 -1 -1 30324 -1 -1 16 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65632 31 32 245 205 1 144 79 17 17 289 -1 unnamed_device 24.9 MiB 0.11 1536 858 8360 2256 5168 936 64.1 MiB 0.04 0.00 3.61893 3.28943 -106.361 -3.28943 3.28943 0.35 0.000256667 0.000234795 0.014228 0.0130658 -1 -1 -1 -1 32 2072 26 6.99608e+06 235451 586450. 2029.24 0.56 0.0580191 0.0509893 25474 144626 -1 1856 19 1171 1959 154991 34293 3.14792 3.14792 -114.535 -3.14792 0 0 744469. 2576.02 0.03 0.04 0.08 -1 -1 0.03 0.0130327 0.0116131 59 4 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_091.v common 3.42 vpr 65.25 MiB -1 -1 0.13 18444 1 0.03 -1 -1 29996 -1 -1 18 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66820 32 32 348 274 1 209 82 17 17 289 -1 unnamed_device 25.2 MiB 0.26 2619 1051 8270 2110 5627 533 65.3 MiB 0.05 0.00 4.98867 4.02312 -135.346 -4.02312 4.02312 0.24 0.000356126 0.000327305 0.0175964 0.0161306 -1 -1 -1 -1 40 2752 48 6.99608e+06 264882 706193. 2443.58 1.62 0.131444 0.115935 26914 176310 -1 2412 21 1981 2778 221710 49503 4.01046 4.01046 -144.849 -4.01046 0 0 926341. 3205.33 0.05 0.09 0.16 -1 -1 0.05 0.0312576 0.0282401 85 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_092.v common 3.75 vpr 65.31 MiB -1 -1 0.12 17696 1 0.03 -1 -1 30196 -1 -1 21 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66876 32 32 356 289 1 215 85 17 17 289 -1 unnamed_device 25.2 MiB 0.28 2661 1142 10687 2890 6795 1002 65.3 MiB 0.06 0.00 5.42227 4.69222 -141.619 -4.69222 4.69222 0.24 0.000331438 0.000303919 0.0213103 0.0195584 -1 -1 -1 -1 36 3081 25 6.99608e+06 309029 648988. 2245.63 1.92 0.196571 0.172762 26050 158493 -1 2497 20 1667 2322 178458 40445 4.59211 4.59211 -151.626 -4.59211 0 0 828058. 2865.25 0.03 0.09 0.12 -1 -1 0.03 0.032519 0.0294266 93 56 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_093.v common 4.75 vpr 64.54 MiB -1 -1 0.13 17916 1 0.03 -1 -1 29808 -1 -1 29 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66092 32 32 349 260 1 195 93 17 17 289 -1 unnamed_device 25.3 MiB 0.13 2109 1015 8913 2758 4385 1770 64.5 MiB 0.04 0.00 5.39397 4.48151 -135.956 -4.48151 4.48151 0.25 0.000344854 0.000313183 0.0166858 0.0152261 -1 -1 -1 -1 46 2960 42 6.99608e+06 426755 828058. 2865.25 3.17 0.188439 0.16599 28066 200906 -1 2212 21 1697 3063 248423 56450 4.31935 4.31935 -140.411 -4.31935 0 0 1.01997e+06 3529.29 0.04 0.06 0.11 -1 -1 0.04 0.0181888 0.0163971 90 3 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_094.v common 2.90 vpr 65.11 MiB -1 -1 0.17 18060 1 0.03 -1 -1 29988 -1 -1 21 30 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66672 30 32 316 264 1 191 83 17 17 289 -1 unnamed_device 25.6 MiB 0.38 2606 1009 7823 1822 5457 544 65.1 MiB 0.04 0.00 4.76312 3.58427 -106.995 -3.58427 3.58427 0.25 0.000308712 0.000283316 0.015233 0.0140358 -1 -1 -1 -1 36 2586 30 6.99608e+06 309029 648988. 2245.63 1.08 0.106457 0.0937082 26050 158493 -1 2283 24 1925 2911 230611 48960 3.34252 3.34252 -113.894 -3.34252 0 0 828058. 2865.25 0.03 0.06 0.11 -1 -1 0.03 0.0217187 0.0192677 86 52 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_095.v common 3.04 vpr 64.51 MiB -1 -1 0.11 17916 1 0.03 -1 -1 30168 -1 -1 17 27 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66056 27 32 255 219 1 145 76 17 17 289 -1 unnamed_device 24.9 MiB 0.21 1732 742 10956 3486 6732 738 64.5 MiB 0.04 0.00 4.92129 3.75245 -110.833 -3.75245 3.75245 0.24 0.000254695 0.00023279 0.0189859 0.0174081 -1 -1 -1 -1 30 1917 29 6.99608e+06 250167 556674. 1926.21 1.56 0.0982599 0.0857575 25186 138497 -1 1600 18 968 1431 102703 23011 3.61546 3.61546 -115.129 -3.61546 0 0 706193. 2443.58 0.03 0.03 0.07 -1 -1 0.03 0.0121467 0.0108756 67 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_096.v common 10.72 vpr 65.53 MiB -1 -1 0.13 18444 1 0.03 -1 -1 29736 -1 -1 23 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 67100 32 32 421 327 1 263 87 17 17 289 -1 unnamed_device 25.6 MiB 0.32 3139 1454 14487 3900 9094 1493 65.5 MiB 0.13 0.00 5.82494 4.22974 -144.161 -4.22974 4.22974 0.30 0.00039563 0.000362842 0.0564457 0.052421 -1 -1 -1 -1 42 3877 49 6.99608e+06 338461 744469. 2576.02 8.82 0.261665 0.23186 27202 183097 -1 3220 21 2143 3398 291996 60989 4.20031 4.20031 -152.043 -4.20031 0 0 949917. 3286.91 0.04 0.06 0.10 -1 -1 0.04 0.0201234 0.0181126 110 65 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_097.v common 3.24 vpr 64.75 MiB -1 -1 0.15 18060 1 0.03 -1 -1 29756 -1 -1 21 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66300 31 32 365 296 1 229 84 17 17 289 -1 unnamed_device 25.2 MiB 0.28 2811 1262 12894 3886 6900 2108 64.7 MiB 0.07 0.00 6.59169 5.46783 -160.186 -5.46783 5.46783 0.25 0.000339653 0.000311033 0.0258576 0.0236764 -1 -1 -1 -1 40 2874 28 6.99608e+06 309029 706193. 2443.58 1.49 0.140763 0.124371 26914 176310 -1 2401 22 2013 2891 213884 45949 4.54281 4.54281 -157.549 -4.54281 0 0 926341. 3205.33 0.03 0.05 0.09 -1 -1 0.03 0.018057 0.0162127 97 64 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_098.v common 3.44 vpr 65.15 MiB -1 -1 0.15 18444 1 0.02 -1 -1 29880 -1 -1 18 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66712 32 32 331 280 1 215 82 17 17 289 -1 unnamed_device 25.2 MiB 0.29 2580 1220 8448 2298 5647 503 65.1 MiB 0.05 0.00 4.4353 3.55199 -133.806 -3.55199 3.55199 0.26 0.000319361 0.000292362 0.0213717 0.0197884 -1 -1 -1 -1 36 2753 24 6.99608e+06 264882 648988. 2245.63 1.68 0.158365 0.138772 26050 158493 -1 2346 21 1724 2226 174140 38058 3.49956 3.49956 -137.622 -3.49956 0 0 828058. 2865.25 0.03 0.05 0.08 -1 -1 0.03 0.0165778 0.0149044 86 65 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_099.v common 3.91 vpr 64.49 MiB -1 -1 0.12 17916 1 0.03 -1 -1 30300 -1 -1 17 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66040 32 32 326 263 1 198 81 17 17 289 -1 unnamed_device 25.2 MiB 0.24 2007 915 11806 4558 6015 1233 64.5 MiB 0.06 0.00 4.69498 4.19833 -126.153 -4.19833 4.19833 0.35 0.000331511 0.000303973 0.027978 0.0258442 -1 -1 -1 -1 44 2540 49 6.99608e+06 250167 787024. 2723.27 2.16 0.194089 0.170363 27778 195446 -1 1804 19 1192 1636 115903 27473 3.77352 3.77352 -123.719 -3.77352 0 0 997811. 3452.63 0.04 0.04 0.11 -1 -1 0.04 0.0177594 0.0161027 80 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_100.v common 2.91 vpr 65.25 MiB -1 -1 0.12 18060 1 0.03 -1 -1 29868 -1 -1 21 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66816 31 32 373 294 1 216 84 17 17 289 -1 unnamed_device 25.8 MiB 0.36 2762 1151 14907 5290 7728 1889 65.2 MiB 0.09 0.00 5.40098 4.12378 -127.257 -4.12378 4.12378 0.24 0.000371977 0.000340791 0.0370602 0.0340631 -1 -1 -1 -1 40 2607 25 6.99608e+06 309029 706193. 2443.58 1.10 0.12845 0.114036 26914 176310 -1 2325 22 1845 2733 198743 43453 3.81082 3.81082 -130.703 -3.81082 0 0 926341. 3205.33 0.03 0.05 0.10 -1 -1 0.03 0.019102 0.0171685 97 50 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_101.v common 3.97 vpr 65.03 MiB -1 -1 0.14 18060 1 0.03 -1 -1 29816 -1 -1 20 30 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66592 30 32 325 268 1 197 82 17 17 289 -1 unnamed_device 25.2 MiB 0.33 2275 931 9694 3916 5291 487 65.0 MiB 0.05 0.00 4.37729 3.52894 -109.796 -3.52894 3.52894 0.24 0.000319843 0.00028404 0.0189408 0.017331 -1 -1 -1 -1 46 2439 26 6.99608e+06 294314 828058. 2865.25 2.25 0.144389 0.126734 28066 200906 -1 1870 19 1331 2123 160757 36535 3.48697 3.48697 -114.338 -3.48697 0 0 1.01997e+06 3529.29 0.04 0.04 0.11 -1 -1 0.04 0.0153406 0.0138183 85 51 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_102.v common 3.77 vpr 65.11 MiB -1 -1 0.16 18056 1 0.03 -1 -1 29792 -1 -1 18 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66672 32 32 350 275 1 209 82 17 17 289 -1 unnamed_device 25.6 MiB 0.29 2452 1191 11118 2720 7663 735 65.1 MiB 0.06 0.00 4.76098 4.21963 -145.335 -4.21963 4.21963 0.25 0.000357095 0.000307568 0.0240345 0.0221081 -1 -1 -1 -1 42 3059 30 6.99608e+06 264882 744469. 2576.02 1.99 0.183276 0.160905 27202 183097 -1 2646 22 2111 3171 339117 78140 4.30592 4.30592 -150.736 -4.30592 0 0 949917. 3286.91 0.03 0.07 0.10 -1 -1 0.03 0.0180706 0.0162177 87 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_103.v common 3.22 vpr 65.43 MiB -1 -1 0.12 18056 1 0.03 -1 -1 29804 -1 -1 21 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 67000 32 32 386 307 1 240 85 17 17 289 -1 unnamed_device 25.5 MiB 0.28 2544 1330 10687 2581 6972 1134 65.4 MiB 0.06 0.00 4.10857 3.66363 -131.207 -3.66363 3.66363 0.24 0.000358631 0.000328675 0.0233891 0.0214854 -1 -1 -1 -1 40 2913 20 6.99608e+06 309029 706193. 2443.58 1.54 0.146169 0.128078 26914 176310 -1 2609 26 2198 3089 256591 54227 3.46877 3.46877 -133.609 -3.46877 0 0 926341. 3205.33 0.03 0.07 0.09 -1 -1 0.03 0.0247133 0.0222095 102 62 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_104.v common 3.89 vpr 64.69 MiB -1 -1 0.11 17672 1 0.02 -1 -1 29992 -1 -1 18 29 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66240 29 32 269 229 1 166 79 17 17 289 -1 unnamed_device 24.9 MiB 0.22 1756 750 8867 3422 4589 856 64.7 MiB 0.04 0.00 4.44376 3.81986 -111.589 -3.81986 3.81986 0.25 0.000268678 0.000245483 0.0157691 0.0144682 -1 -1 -1 -1 32 2228 31 6.99608e+06 264882 586450. 2029.24 2.28 0.125635 0.109629 25474 144626 -1 1667 22 1606 2144 164445 35623 3.43772 3.43772 -115.848 -3.43772 0 0 744469. 2576.02 0.03 0.04 0.12 -1 -1 0.03 0.0143813 0.012807 68 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_105.v common 4.92 vpr 65.08 MiB -1 -1 0.12 17916 1 0.02 -1 -1 29928 -1 -1 15 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66640 32 32 310 266 1 186 79 17 17 289 -1 unnamed_device 25.6 MiB 0.25 2114 1072 10388 2745 6664 979 65.1 MiB 0.05 0.00 4.23779 3.56989 -126.273 -3.56989 3.56989 0.25 0.000302879 0.000276572 0.0200515 0.018352 -1 -1 -1 -1 40 2251 27 6.99608e+06 220735 706193. 2443.58 3.29 0.150356 0.131318 26914 176310 -1 2129 19 1386 1859 153495 33604 3.78796 3.78796 -134.796 -3.78796 0 0 926341. 3205.33 0.03 0.07 0.10 -1 -1 0.03 0.0256499 0.0230263 78 58 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_106.v common 3.40 vpr 64.12 MiB -1 -1 0.12 18060 1 0.03 -1 -1 30268 -1 -1 20 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65664 31 32 326 261 1 197 83 17 17 289 -1 unnamed_device 25.2 MiB 0.22 2462 1162 13763 5234 6995 1534 64.1 MiB 0.07 0.00 5.08188 4.09932 -130.497 -4.09932 4.09932 0.24 0.000314789 0.000287897 0.02625 0.0240865 -1 -1 -1 -1 46 2358 22 6.99608e+06 294314 828058. 2865.25 1.74 0.147828 0.129695 28066 200906 -1 2124 17 1370 2011 124268 27371 3.74866 3.74866 -129.695 -3.74866 0 0 1.01997e+06 3529.29 0.04 0.04 0.11 -1 -1 0.04 0.0146133 0.0132243 82 33 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_107.v common 4.76 vpr 64.61 MiB -1 -1 0.12 17676 1 0.02 -1 -1 30212 -1 -1 17 29 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66160 29 32 262 224 1 162 78 17 17 289 -1 unnamed_device 24.9 MiB 0.25 1704 837 10204 3081 5451 1672 64.6 MiB 0.05 0.00 4.00332 3.52002 -104.505 -3.52002 3.52002 0.24 0.000266925 0.000244771 0.0181439 0.016651 -1 -1 -1 -1 34 2235 27 6.99608e+06 250167 618332. 2139.56 3.12 0.149414 0.130029 25762 151098 -1 1839 33 1724 2185 236919 81430 3.10977 3.10977 -108.554 -3.10977 0 0 787024. 2723.27 0.03 0.10 0.08 -1 -1 0.03 0.029701 0.0266071 67 31 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_108.v common 5.46 vpr 63.99 MiB -1 -1 0.13 17676 1 0.02 -1 -1 30164 -1 -1 15 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65524 32 32 278 238 1 178 79 17 17 289 -1 unnamed_device 24.9 MiB 0.27 2344 802 11233 4665 6317 251 64.0 MiB 0.05 0.00 4.87466 3.81986 -117.727 -3.81986 3.81986 0.25 0.000293201 0.000268469 0.0227949 0.020989 -1 -1 -1 -1 36 2662 38 6.99608e+06 220735 648988. 2245.63 3.82 0.16388 0.143411 26050 158493 -1 1945 22 1737 2335 205163 46980 3.35647 3.35647 -125.635 -3.35647 0 0 828058. 2865.25 0.03 0.05 0.08 -1 -1 0.03 0.0146639 0.0130972 70 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_109.v common 3.50 vpr 64.76 MiB -1 -1 0.13 18056 1 0.03 -1 -1 29776 -1 -1 22 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66316 31 32 373 300 1 230 85 17 17 289 -1 unnamed_device 25.2 MiB 0.35 2524 1290 13291 4296 7426 1569 64.8 MiB 0.07 0.00 5.14528 3.96644 -137.42 -3.96644 3.96644 0.25 0.000387044 0.000354926 0.0287595 0.0262542 -1 -1 -1 -1 44 2878 34 6.99608e+06 323745 787024. 2723.27 1.73 0.151986 0.133028 27778 195446 -1 2429 20 1825 2644 204826 43184 3.64925 3.64925 -135.828 -3.64925 0 0 997811. 3452.63 0.04 0.05 0.11 -1 -1 0.04 0.0179987 0.0161854 100 64 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_110.v common 2.92 vpr 64.68 MiB -1 -1 0.11 17672 1 0.03 -1 -1 29828 -1 -1 15 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66236 31 32 265 230 1 170 78 17 17 289 -1 unnamed_device 25.2 MiB 0.22 1901 926 8378 2454 4499 1425 64.7 MiB 0.05 0.00 3.62338 3.26538 -103.352 -3.26538 3.26538 0.26 0.000272319 0.000249627 0.0194942 0.0180456 -1 -1 -1 -1 38 2049 20 6.99608e+06 220735 678818. 2348.85 1.28 0.102417 0.0892263 26626 170182 -1 1809 21 1209 1714 135631 28455 2.80117 2.80117 -107.376 -2.80117 0 0 902133. 3121.57 0.03 0.04 0.17 -1 -1 0.03 0.0141216 0.0125816 67 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_111.v common 2.51 vpr 65.15 MiB -1 -1 0.12 17916 1 0.03 -1 -1 29804 -1 -1 18 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66712 32 32 349 286 1 207 82 17 17 289 -1 unnamed_device 25.6 MiB 0.27 2683 1135 10584 3164 6747 673 65.1 MiB 0.06 0.00 4.36937 3.54449 -120.669 -3.54449 3.54449 0.25 0.000338843 0.000311513 0.0217633 0.0199616 -1 -1 -1 -1 38 2762 21 6.99608e+06 264882 678818. 2348.85 0.89 0.0998171 0.0884553 26626 170182 -1 2311 19 1299 1882 133571 29409 3.16766 3.16766 -121.59 -3.16766 0 0 902133. 3121.57 0.03 0.04 0.09 -1 -1 0.03 0.0163812 0.0147286 89 57 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_112.v common 3.05 vpr 65.50 MiB -1 -1 0.12 18060 1 0.03 -1 -1 29576 -1 -1 25 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 67072 31 32 396 325 1 257 88 17 17 289 -1 unnamed_device 26.0 MiB 0.29 2720 1315 14128 4475 8272 1381 65.5 MiB 0.08 0.00 6.02652 4.44482 -155.897 -4.44482 4.44482 0.26 0.000742385 0.000711038 0.0330194 0.0304111 -1 -1 -1 -1 36 3582 39 6.99608e+06 367892 648988. 2245.63 1.27 0.133571 0.118438 26050 158493 -1 2929 30 2912 4166 446962 115122 4.4407 4.4407 -163.878 -4.4407 0 0 828058. 2865.25 0.03 0.10 0.08 -1 -1 0.03 0.0236603 0.0210998 111 91 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_113.v common 2.45 vpr 65.07 MiB -1 -1 0.11 18052 1 0.02 -1 -1 29604 -1 -1 16 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66636 32 32 303 262 1 189 80 17 17 289 -1 unnamed_device 25.0 MiB 0.32 1997 1013 12808 5361 7263 184 65.1 MiB 0.06 0.00 4.02834 3.18879 -114.113 -3.18879 3.18879 0.24 0.00029145 0.000266248 0.0237704 0.0217697 -1 -1 -1 -1 40 2271 23 6.99608e+06 235451 706193. 2443.58 0.77 0.0897322 0.0787789 26914 176310 -1 1978 19 1566 2160 160897 35900 2.92196 2.92196 -113.469 -2.92196 0 0 926341. 3205.33 0.03 0.05 0.10 -1 -1 0.03 0.0177855 0.0158654 80 57 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_114.v common 2.89 vpr 64.03 MiB -1 -1 0.11 18060 1 0.02 -1 -1 29764 -1 -1 15 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65568 32 32 290 244 1 174 79 17 17 289 -1 unnamed_device 25.2 MiB 0.25 2070 991 12078 3761 7335 982 64.0 MiB 0.07 0.00 3.92883 3.42763 -115.198 -3.42763 3.42763 0.25 0.000352015 0.00032687 0.0293293 0.0270993 -1 -1 -1 -1 44 2260 49 6.99608e+06 220735 787024. 2723.27 1.27 0.11646 0.102895 27778 195446 -1 1939 20 1462 2114 176026 37248 3.13262 3.13262 -118.27 -3.13262 0 0 997811. 3452.63 0.04 0.04 0.11 -1 -1 0.04 0.0141357 0.0126608 70 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_115.v common 3.03 vpr 64.48 MiB -1 -1 0.14 17976 1 0.03 -1 -1 29776 -1 -1 17 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66032 32 32 318 257 1 190 81 17 17 289 -1 unnamed_device 25.2 MiB 0.28 2008 1061 12156 3939 6984 1233 64.5 MiB 0.06 0.00 4.55868 4.12158 -127.831 -4.12158 4.12158 0.34 0.000319482 0.00029223 0.0286941 0.0265897 -1 -1 -1 -1 36 2636 26 6.99608e+06 250167 648988. 2245.63 1.09 0.120052 0.106785 26050 158493 -1 2264 21 1654 2305 182456 39548 3.99926 3.99926 -138.156 -3.99926 0 0 828058. 2865.25 0.05 0.08 0.14 -1 -1 0.05 0.0252004 0.0226623 79 30 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_116.v common 3.84 vpr 64.70 MiB -1 -1 0.21 18060 1 0.04 -1 -1 30232 -1 -1 19 29 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66252 29 32 324 268 1 193 80 17 17 289 -1 unnamed_device 25.2 MiB 0.28 2038 850 7992 3080 4019 893 64.7 MiB 0.04 0.00 4.14059 3.42459 -102.439 -3.42459 3.42459 0.24 0.000309691 0.000283343 0.0167648 0.0154227 -1 -1 -1 -1 38 2478 27 6.99608e+06 279598 678818. 2348.85 1.97 0.15036 0.131366 26626 170182 -1 1937 19 1363 2005 132397 30881 3.27106 3.27106 -107.497 -3.27106 0 0 902133. 3121.57 0.03 0.04 0.15 -1 -1 0.03 0.0152913 0.0137551 85 55 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_117.v common 4.11 vpr 65.06 MiB -1 -1 0.12 18060 1 0.03 -1 -1 29792 -1 -1 19 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66624 32 32 393 312 1 234 83 17 17 289 -1 unnamed_device 25.6 MiB 0.31 2763 1341 14303 4864 7770 1669 65.1 MiB 0.08 0.00 6.04713 5.29533 -174.708 -5.29533 5.29533 0.25 0.000363933 0.000332944 0.0312788 0.0287185 -1 -1 -1 -1 48 3515 28 6.99608e+06 279598 865456. 2994.66 2.34 0.196802 0.172935 28354 207349 -1 2907 22 1926 2921 248278 49536 4.46704 4.46704 -168.361 -4.46704 0 0 1.05005e+06 3633.38 0.04 0.07 0.11 -1 -1 0.04 0.0224785 0.02012 102 65 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_118.v common 3.22 vpr 64.43 MiB -1 -1 0.12 17676 1 0.02 -1 -1 29936 -1 -1 15 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65980 31 32 229 197 1 138 78 17 17 289 -1 unnamed_device 24.9 MiB 0.38 1665 866 10038 3879 5332 827 64.4 MiB 0.04 0.00 3.45398 3.07808 -95.6005 -3.07808 3.07808 0.25 0.00025341 0.000231039 0.0176736 0.0161604 -1 -1 -1 -1 34 1957 19 6.99608e+06 220735 618332. 2139.56 1.45 0.11107 0.0962653 25762 151098 -1 1727 19 948 1543 115724 25796 2.76232 2.76232 -99.9411 -2.76232 0 0 787024. 2723.27 0.03 0.03 0.08 -1 -1 0.03 0.0119476 0.0106754 55 4 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_119.v common 3.17 vpr 65.16 MiB -1 -1 0.12 18056 1 0.03 -1 -1 30156 -1 -1 23 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66724 32 32 412 334 1 258 87 17 17 289 -1 unnamed_device 25.6 MiB 0.30 3136 1376 11799 3682 6020 2097 65.2 MiB 0.06 0.00 6.25193 4.95808 -168.612 -4.95808 4.95808 0.35 0.000374179 0.000341467 0.0250565 0.0229553 -1 -1 -1 -1 36 3619 37 6.99608e+06 338461 648988. 2245.63 1.34 0.128163 0.113155 26050 158493 -1 2910 20 2239 2839 225407 51024 5.3834 5.3834 -185.015 -5.3834 0 0 828058. 2865.25 0.03 0.06 0.08 -1 -1 0.03 0.0193173 0.017444 114 90 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_120.v common 8.25 vpr 65.29 MiB -1 -1 0.12 18060 1 0.03 -1 -1 30212 -1 -1 21 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66852 32 32 376 318 1 253 85 17 17 289 -1 unnamed_device 25.6 MiB 0.30 2503 1284 12919 4933 5948 2038 65.3 MiB 0.07 0.00 5.63182 4.45298 -163.199 -4.45298 4.45298 0.25 0.000344204 0.000305634 0.0255725 0.0233133 -1 -1 -1 -1 36 3534 41 6.99608e+06 309029 648988. 2245.63 6.45 0.227881 0.19988 26050 158493 -1 2786 22 2693 3443 310767 66326 4.37485 4.37485 -164.891 -4.37485 0 0 828058. 2865.25 0.03 0.07 0.17 -1 -1 0.03 0.0187806 0.0168388 105 96 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_121.v common 3.52 vpr 65.28 MiB -1 -1 0.13 18060 1 0.03 -1 -1 30160 -1 -1 20 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66848 32 32 360 293 1 219 84 17 17 289 -1 unnamed_device 25.2 MiB 0.25 2367 1051 11247 3952 5722 1573 65.3 MiB 0.05 0.00 4.26889 3.47593 -117.199 -3.47593 3.47593 0.26 0.000336143 0.000306239 0.022991 0.021056 -1 -1 -1 -1 44 2721 42 6.99608e+06 294314 787024. 2723.27 1.71 0.152173 0.133648 27778 195446 -1 1977 21 1581 2145 160989 36030 3.25147 3.25147 -116.771 -3.25147 0 0 997811. 3452.63 0.05 0.07 0.16 -1 -1 0.05 0.0257259 0.0230873 93 60 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_122.v common 9.91 vpr 65.45 MiB -1 -1 0.13 17840 1 0.03 -1 -1 29812 -1 -1 21 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 67020 32 32 396 299 1 231 85 17 17 289 -1 unnamed_device 26.0 MiB 0.30 2469 1280 14965 4476 8929 1560 65.4 MiB 0.08 0.00 6.28253 5.57594 -163.801 -5.57594 5.57594 0.25 0.000370225 0.000338122 0.0321979 0.0295165 -1 -1 -1 -1 38 3513 25 6.99608e+06 309029 678818. 2348.85 8.19 0.201075 0.176852 26626 170182 -1 2951 22 2194 3313 270278 56814 5.12565 5.12565 -169.601 -5.12565 0 0 902133. 3121.57 0.03 0.06 0.09 -1 -1 0.03 0.0204029 0.0183752 99 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_123.v common 2.18 vpr 64.52 MiB -1 -1 0.10 17676 1 0.02 -1 -1 29792 -1 -1 13 30 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66064 30 32 224 207 1 134 75 17 17 289 -1 unnamed_device 24.9 MiB 0.24 1623 599 8449 2065 6066 318 64.5 MiB 0.04 0.00 2.83666 2.33546 -84.6639 -2.33546 2.33546 0.25 0.000555342 0.00051864 0.0194883 0.0180519 -1 -1 -1 -1 34 1695 48 6.99608e+06 191304 618332. 2139.56 0.65 0.0682305 0.0598421 25762 151098 -1 1398 20 868 1102 100646 25554 2.33678 2.33678 -94.189 -2.33678 0 0 787024. 2723.27 0.03 0.03 0.08 -1 -1 0.03 0.0115737 0.0102789 52 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_124.v common 2.81 vpr 64.67 MiB -1 -1 0.13 17676 1 0.02 -1 -1 29812 -1 -1 15 30 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66220 30 32 286 239 1 159 77 17 17 289 -1 unnamed_device 24.9 MiB 0.91 1725 902 8879 3004 4356 1519 64.7 MiB 0.04 0.00 4.10447 3.92803 -130.612 -3.92803 3.92803 0.24 0.000281139 0.000257365 0.0174054 0.0159733 -1 -1 -1 -1 34 2176 27 6.99608e+06 220735 618332. 2139.56 0.56 0.068423 0.0600819 25762 151098 -1 1899 22 1246 1955 169232 36091 3.59731 3.59731 -136.68 -3.59731 0 0 787024. 2723.27 0.03 0.04 0.08 -1 -1 0.03 0.0152632 0.0136748 70 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_125.v common 3.35 vpr 64.34 MiB -1 -1 0.11 17676 1 0.02 -1 -1 29168 -1 -1 15 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65880 32 32 296 247 1 182 79 17 17 289 -1 unnamed_device 25.2 MiB 0.20 1971 882 13261 5570 7431 260 64.3 MiB 0.09 0.00 4.19149 3.78235 -133.321 -3.78235 3.78235 0.29 0.000445199 0.000403688 0.0373451 0.0341953 -1 -1 -1 -1 38 2651 49 6.99608e+06 220735 678818. 2348.85 1.75 0.126489 0.111927 26626 170182 -1 2020 20 1450 2457 219315 48983 3.62081 3.62081 -134.809 -3.62081 0 0 902133. 3121.57 0.03 0.05 0.09 -1 -1 0.03 0.0146507 0.0131502 74 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_126.v common 2.16 vpr 64.50 MiB -1 -1 0.14 18056 1 0.02 -1 -1 29884 -1 -1 19 25 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66052 25 32 216 194 1 134 76 17 17 289 -1 unnamed_device 25.0 MiB 0.25 1590 696 11596 3751 6795 1050 64.5 MiB 0.04 0.00 4.10053 3.35753 -84.3952 -3.35753 3.35753 0.25 0.000220573 0.000201876 0.0175116 0.016058 -1 -1 -1 -1 36 1574 20 6.99608e+06 279598 648988. 2245.63 0.51 0.054351 0.0477519 26050 158493 -1 1398 21 929 1335 101544 22940 3.09097 3.09097 -90.8946 -3.09097 0 0 828058. 2865.25 0.04 0.04 0.08 -1 -1 0.04 0.0146461 0.0129751 57 29 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_127.v common 2.88 vpr 65.38 MiB -1 -1 0.13 17528 1 0.04 -1 -1 30176 -1 -1 19 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66952 32 32 376 307 1 230 83 17 17 289 -1 unnamed_device 25.6 MiB 0.45 2657 1316 7463 1720 5150 593 65.4 MiB 0.05 0.00 4.40039 3.97548 -133.176 -3.97548 3.97548 0.25 0.000350248 0.000315913 0.016928 0.0155579 -1 -1 -1 -1 38 3462 44 6.99608e+06 279598 678818. 2348.85 1.00 0.108019 0.0954574 26626 170182 -1 2797 24 2179 3377 250295 53465 4.20392 4.20392 -145.444 -4.20392 0 0 902133. 3121.57 0.03 0.06 0.09 -1 -1 0.03 0.0211822 0.0189813 99 72 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_128.v common 4.42 vpr 65.54 MiB -1 -1 0.13 18060 1 0.03 -1 -1 29820 -1 -1 23 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 67112 31 32 409 331 1 257 86 17 17 289 -1 unnamed_device 25.6 MiB 0.29 3057 1328 14639 4861 7943 1835 65.5 MiB 0.08 0.00 5.90204 4.55497 -151.39 -4.55497 4.55497 0.25 0.00036635 0.000334698 0.0308268 0.0282486 -1 -1 -1 -1 42 3264 47 6.99608e+06 338461 744469. 2576.02 2.69 0.236746 0.209256 27202 183097 -1 2636 21 2145 2960 233871 50459 3.92175 3.92175 -144.746 -3.92175 0 0 949917. 3286.91 0.03 0.06 0.10 -1 -1 0.03 0.0203923 0.0184184 114 90 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_001.v common 4.41 vpr 64.49 MiB -1 -1 0.19 18436 14 0.23 -1 -1 32268 -1 -1 20 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66036 32 32 277 309 1 196 84 17 17 289 -1 unnamed_device 24.9 MiB 0.78 3031 1205 13626 4599 7190 1837 64.5 MiB 0.16 0.00 11.4241 8.56631 -174.636 -8.56631 8.56631 0.24 0.00119097 0.00110789 0.0820653 0.0761529 -1 -1 -1 -1 40 2941 23 6.79088e+06 269440 706193. 2443.58 1.87 0.27365 0.243248 26254 175826 -1 2711 18 1428 4274 219784 51179 7.12477 7.12477 -158.977 -7.12477 0 0 926341. 3205.33 0.03 0.06 0.09 -1 -1 0.03 0.0219342 0.0199651 135 183 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_002.v common 3.93 vpr 64.29 MiB -1 -1 0.18 18440 14 0.33 -1 -1 32040 -1 -1 21 30 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65832 30 32 272 304 1 199 83 17 17 289 -1 unnamed_device 25.1 MiB 0.45 2323 1121 7283 1658 4725 900 64.3 MiB 0.06 0.00 9.21432 7.55348 -154.172 -7.55348 7.55348 0.25 0.000649361 0.00061241 0.0264904 0.0245894 -1 -1 -1 -1 38 2991 20 6.79088e+06 282912 678818. 2348.85 1.69 0.220787 0.195563 25966 169698 -1 2398 20 1400 3922 178800 44179 6.62003 6.62003 -146.847 -6.62003 0 0 902133. 3121.57 0.03 0.05 0.09 -1 -1 0.03 0.0235963 0.0214056 130 184 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_003.v common 3.30 vpr 64.28 MiB -1 -1 0.15 18052 11 0.20 -1 -1 32452 -1 -1 19 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65824 32 32 280 312 1 194 83 17 17 289 -1 unnamed_device 24.9 MiB 0.67 2611 1308 5483 1021 4219 243 64.3 MiB 0.05 0.00 9.0712 6.64585 -143.643 -6.64585 6.64585 0.27 0.000440044 0.000403629 0.0264756 0.0247267 -1 -1 -1 -1 32 4014 47 6.79088e+06 255968 586450. 2029.24 0.98 0.126559 0.113318 24814 144142 -1 2998 23 1611 5320 356143 96112 6.11518 6.11518 -146.285 -6.11518 0 0 744469. 2576.02 0.03 0.10 0.08 -1 -1 0.03 0.0310327 0.0279645 132 186 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_004.v common 5.13 vpr 64.30 MiB -1 -1 0.16 18284 12 0.37 -1 -1 32692 -1 -1 25 29 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65844 29 32 275 307 1 194 86 17 17 289 -1 unnamed_device 25.2 MiB 0.49 2342 1180 5189 1017 3857 315 64.3 MiB 0.04 0.00 9.35225 7.37182 -142.972 -7.37182 7.37182 0.26 0.00044831 0.00041197 0.0190445 0.0176998 -1 -1 -1 -1 32 3270 50 6.79088e+06 336800 586450. 2029.24 2.83 0.273476 0.241544 24814 144142 -1 2476 22 1379 3781 200348 47482 6.53383 6.53383 -138.939 -6.53383 0 0 744469. 2576.02 0.03 0.07 0.09 -1 -1 0.03 0.0330859 0.0298846 141 190 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_005.v common 6.99 vpr 63.98 MiB -1 -1 0.18 18436 13 0.24 -1 -1 32424 -1 -1 23 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65512 32 32 302 334 1 227 87 17 17 289 -1 unnamed_device 25.2 MiB 0.34 2826 1422 5847 1175 4382 290 64.0 MiB 0.05 0.00 10.4933 7.73127 -164.781 -7.73127 7.73127 0.24 0.000482411 0.000442208 0.0217472 0.0201042 -1 -1 -1 -1 36 3783 23 6.79088e+06 309856 648988. 2245.63 5.01 0.257872 0.227573 25390 158009 -1 3208 19 1670 4461 243005 57993 6.89412 6.89412 -162.383 -6.89412 0 0 828058. 2865.25 0.03 0.06 0.08 -1 -1 0.03 0.0245951 0.0223687 155 208 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_006.v common 3.67 vpr 64.34 MiB -1 -1 0.19 18436 13 0.23 -1 -1 32428 -1 -1 22 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65880 32 32 292 324 1 217 86 17 17 289 -1 unnamed_device 25.2 MiB 0.66 3136 1331 12560 3423 7370 1767 64.3 MiB 0.07 0.00 9.76013 7.28237 -154.711 -7.28237 7.28237 0.24 0.00046408 0.000424198 0.0337388 0.0309128 -1 -1 -1 -1 32 4210 42 6.79088e+06 296384 586450. 2029.24 1.27 0.132124 0.118043 24814 144142 -1 3323 21 1903 5560 319427 73380 6.75647 6.75647 -158.319 -6.75647 0 0 744469. 2576.02 0.03 0.08 0.08 -1 -1 0.03 0.0269225 0.024456 141 198 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_007.v common 2.75 vpr 64.39 MiB -1 -1 0.15 18052 12 0.17 -1 -1 32268 -1 -1 25 27 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65936 27 32 229 261 1 165 84 17 17 289 -1 unnamed_device 24.9 MiB 0.19 1861 902 5757 1286 4119 352 64.4 MiB 0.03 0.00 8.53024 6.95672 -126.14 -6.95672 6.95672 0.25 0.000354372 0.000324783 0.013746 0.0126635 -1 -1 -1 -1 28 2519 27 6.79088e+06 336800 531479. 1839.03 1.09 0.120253 0.106175 23950 126010 -1 2066 18 1046 2497 128398 31899 5.82898 5.82898 -118.677 -5.82898 0 0 648988. 2245.63 0.02 0.04 0.07 -1 -1 0.02 0.0178246 0.0161843 109 150 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_008.v common 6.07 vpr 63.68 MiB -1 -1 0.16 17908 12 0.17 -1 -1 32412 -1 -1 19 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65212 31 32 229 261 1 181 82 17 17 289 -1 unnamed_device 24.1 MiB 0.28 2040 1181 5956 1284 4146 526 63.7 MiB 0.04 0.00 6.73834 6.21924 -138.39 -6.21924 6.21924 0.24 0.000362618 0.00032571 0.0141613 0.0129176 -1 -1 -1 -1 30 3719 48 6.79088e+06 255968 556674. 1926.21 4.29 0.201748 0.178617 24526 138013 -1 2630 18 1198 3419 188591 45425 5.43491 5.43491 -136.039 -5.43491 0 0 706193. 2443.58 0.03 0.05 0.08 -1 -1 0.03 0.0184844 0.0167371 110 138 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_009.v common 3.21 vpr 64.70 MiB -1 -1 0.15 17668 12 0.19 -1 -1 32372 -1 -1 20 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66256 31 32 235 267 1 189 83 17 17 289 -1 unnamed_device 24.9 MiB 0.25 2543 1227 8543 2270 5212 1061 64.7 MiB 0.05 0.00 8.6557 7.27148 -152.778 -7.27148 7.27148 0.24 0.000361802 0.000331237 0.0195722 0.0179241 -1 -1 -1 -1 40 2618 15 6.79088e+06 269440 706193. 2443.58 1.38 0.119766 0.105239 26254 175826 -1 2483 16 1033 2770 145853 34562 6.49468 6.49468 -148.795 -6.49468 0 0 926341. 3205.33 0.03 0.04 0.10 -1 -1 0.03 0.0170104 0.0154989 110 144 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_010.v common 2.55 vpr 64.77 MiB -1 -1 0.15 17668 13 0.17 -1 -1 32296 -1 -1 17 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66324 32 32 250 282 1 179 81 17 17 289 -1 unnamed_device 24.9 MiB 0.40 2565 1165 6206 1220 4462 524 64.8 MiB 0.04 0.00 10.5547 7.36881 -166.317 -7.36881 7.36881 0.24 0.000391536 0.000359231 0.016511 0.0152106 -1 -1 -1 -1 28 3160 27 6.79088e+06 229024 531479. 1839.03 0.64 0.0799198 0.0709347 23950 126010 -1 2659 17 1153 2882 165722 40410 6.36594 6.36594 -163.044 -6.36594 0 0 648988. 2245.63 0.03 0.06 0.07 -1 -1 0.03 0.0254959 0.022977 110 156 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_011.v common 3.94 vpr 64.14 MiB -1 -1 0.15 18060 12 0.16 -1 -1 32264 -1 -1 19 30 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65684 30 32 216 248 1 163 81 17 17 289 -1 unnamed_device 24.5 MiB 0.58 2068 857 10756 4429 6016 311 64.1 MiB 0.05 0.00 8.56921 6.97458 -139.004 -6.97458 6.97458 0.24 0.000343467 0.000307099 0.0234334 0.0214136 -1 -1 -1 -1 38 2181 21 6.79088e+06 255968 678818. 2348.85 1.84 0.135883 0.119614 25966 169698 -1 1757 15 890 2413 117726 29155 5.82898 5.82898 -125.97 -5.82898 0 0 902133. 3121.57 0.03 0.04 0.09 -1 -1 0.03 0.0154421 0.0141457 101 128 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_012.v common 3.54 vpr 64.31 MiB -1 -1 0.26 18056 12 0.13 -1 -1 32112 -1 -1 18 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65852 32 32 236 268 1 168 82 17 17 289 -1 unnamed_device 24.5 MiB 0.35 2572 1214 8982 2331 5744 907 64.3 MiB 0.05 0.00 8.22306 6.49083 -156.629 -6.49083 6.49083 0.24 0.000363246 0.000331103 0.0206227 0.0189085 -1 -1 -1 -1 36 2644 29 6.79088e+06 242496 648988. 2245.63 1.41 0.132842 0.116763 25390 158009 -1 2417 16 966 2757 155170 36040 6.09296 6.09296 -155.583 -6.09296 0 0 828058. 2865.25 0.05 0.07 0.15 -1 -1 0.05 0.0296218 0.0271121 104 142 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_013.v common 4.32 vpr 64.31 MiB -1 -1 0.17 18440 13 0.25 -1 -1 32384 -1 -1 20 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65852 32 32 283 315 1 215 84 17 17 289 -1 unnamed_device 24.9 MiB 0.47 2835 1334 6489 1499 4360 630 64.3 MiB 0.04 0.00 11.6534 8.17439 -174.342 -8.17439 8.17439 0.25 0.000438675 0.000401184 0.0187568 0.0172093 -1 -1 -1 -1 32 3619 35 6.79088e+06 269440 586450. 2029.24 2.19 0.200192 0.177548 24814 144142 -1 3033 18 1340 3636 199882 46955 7.21431 7.21431 -168.629 -7.21431 0 0 744469. 2576.02 0.03 0.06 0.08 -1 -1 0.03 0.0230824 0.0210502 133 189 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_014.v common 5.12 vpr 65.04 MiB -1 -1 0.18 18440 14 0.28 -1 -1 32424 -1 -1 22 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66600 32 32 303 335 1 227 86 17 17 289 -1 unnamed_device 25.2 MiB 0.69 3489 1455 10292 2847 6856 589 65.0 MiB 0.07 0.00 11.4534 8.74059 -185.972 -8.74059 8.74059 0.25 0.000488456 0.000447227 0.0303164 0.0277935 -1 -1 -1 -1 40 3374 27 6.79088e+06 296384 706193. 2443.58 2.50 0.277905 0.246685 26254 175826 -1 3075 32 1530 4441 421130 190943 7.41807 7.41807 -171.541 -7.41807 0 0 926341. 3205.33 0.03 0.17 0.10 -1 -1 0.03 0.0436618 0.0390518 156 209 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_015.v common 3.18 vpr 64.39 MiB -1 -1 0.25 18056 11 0.15 -1 -1 32288 -1 -1 23 29 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65940 29 32 225 257 1 169 84 17 17 289 -1 unnamed_device 24.7 MiB 0.34 2298 1064 6855 1570 4646 639 64.4 MiB 0.04 0.00 8.40469 6.70263 -132.295 -6.70263 6.70263 0.25 0.000348348 0.000318449 0.0154087 0.0141195 -1 -1 -1 -1 30 2425 21 6.79088e+06 309856 556674. 1926.21 1.15 0.119115 0.105149 24526 138013 -1 2231 17 985 2602 130423 31578 5.86469 5.86469 -127.664 -5.86469 0 0 706193. 2443.58 0.03 0.04 0.07 -1 -1 0.03 0.0175344 0.0160361 108 140 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_016.v common 5.96 vpr 65.10 MiB -1 -1 0.19 18436 12 0.24 -1 -1 32692 -1 -1 27 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66660 32 32 301 333 1 219 91 17 17 289 -1 unnamed_device 25.2 MiB 0.74 2958 1459 10087 2738 6560 789 65.1 MiB 0.06 0.00 9.40585 7.27585 -159.598 -7.27585 7.27585 0.24 0.000475027 0.000434934 0.0268074 0.0244932 -1 -1 -1 -1 32 4260 32 6.79088e+06 363744 586450. 2029.24 3.49 0.246475 0.218856 24814 144142 -1 3465 23 1720 5638 455130 145122 6.73753 6.73753 -163.315 -6.73753 0 0 744469. 2576.02 0.03 0.12 0.08 -1 -1 0.03 0.0287396 0.026003 152 207 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_017.v common 3.79 vpr 64.29 MiB -1 -1 0.17 18440 14 0.22 -1 -1 32384 -1 -1 22 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65836 32 32 277 309 1 212 86 17 17 289 -1 unnamed_device 24.9 MiB 0.60 2850 1312 6890 1429 5359 102 64.3 MiB 0.05 0.00 10.5304 7.97872 -168.371 -7.97872 7.97872 0.25 0.000606839 0.000536353 0.0197275 0.018177 -1 -1 -1 -1 36 3500 42 6.79088e+06 296384 648988. 2245.63 1.53 0.148978 0.131812 25390 158009 -1 2790 18 1406 4143 221995 51462 7.21088 7.21088 -159.551 -7.21088 0 0 828058. 2865.25 0.03 0.06 0.09 -1 -1 0.03 0.0218356 0.0197917 131 183 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_018.v common 3.27 vpr 64.32 MiB -1 -1 0.15 18052 12 0.14 -1 -1 31972 -1 -1 18 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65860 32 32 227 259 1 171 82 17 17 289 -1 unnamed_device 24.5 MiB 0.54 2494 1086 7736 1808 5543 385 64.3 MiB 0.04 0.00 8.77612 6.78318 -155.712 -6.78318 6.78318 0.25 0.000354223 0.000323322 0.018174 0.0166131 -1 -1 -1 -1 30 2715 18 6.79088e+06 242496 556674. 1926.21 1.25 0.12632 0.111156 24526 138013 -1 2226 14 889 2523 130718 31522 5.88818 5.88818 -146.658 -5.88818 0 0 706193. 2443.58 0.03 0.04 0.07 -1 -1 0.03 0.0162673 0.0148851 108 133 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_019.v common 2.55 vpr 64.02 MiB -1 -1 0.14 17908 10 0.10 -1 -1 32064 -1 -1 13 30 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65556 30 32 175 207 1 131 75 17 17 289 -1 unnamed_device 24.9 MiB 0.22 1668 806 10503 2849 6815 839 64.0 MiB 0.05 0.00 6.26916 4.98721 -124.709 -4.98721 4.98721 0.26 0.000478461 0.000454715 0.023872 0.02204 -1 -1 -1 -1 32 1826 25 6.79088e+06 175136 586450. 2029.24 0.94 0.0901868 0.0792017 24814 144142 -1 1616 13 591 1361 77271 18739 4.34281 4.34281 -119.196 -4.34281 0 0 744469. 2576.02 0.03 0.03 0.08 -1 -1 0.03 0.0113524 0.0103305 65 87 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_020.v common 3.03 vpr 63.89 MiB -1 -1 0.16 18052 13 0.16 -1 -1 32244 -1 -1 20 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65428 31 32 231 263 1 178 83 17 17 289 -1 unnamed_device 24.5 MiB 0.50 2365 1084 11783 3551 6465 1767 63.9 MiB 0.06 0.00 8.87866 7.49722 -158.804 -7.49722 7.49722 0.25 0.000362742 0.000331666 0.0270047 0.0247456 -1 -1 -1 -1 28 3316 28 6.79088e+06 269440 531479. 1839.03 0.98 0.0892173 0.0800554 23950 126010 -1 2618 16 1153 2704 167677 39802 6.33372 6.33372 -153.752 -6.33372 0 0 648988. 2245.63 0.03 0.05 0.07 -1 -1 0.03 0.0199065 0.0183664 109 140 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_021.v common 3.60 vpr 64.00 MiB -1 -1 0.21 18440 13 0.32 -1 -1 33084 -1 -1 23 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65536 32 32 304 336 1 215 87 17 17 289 -1 unnamed_device 25.2 MiB 0.33 2586 1376 10839 2728 7031 1080 64.0 MiB 0.09 0.00 8.96492 7.91997 -166.691 -7.91997 7.91997 0.25 0.000464279 0.000424653 0.0425461 0.0392674 -1 -1 -1 -1 34 3753 44 6.79088e+06 309856 618332. 2139.56 1.41 0.199259 0.177438 25102 150614 -1 3173 21 1808 5062 277517 63992 7.25767 7.25767 -167.443 -7.25767 0 0 787024. 2723.27 0.03 0.08 0.08 -1 -1 0.03 0.029666 0.0271387 145 210 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_022.v common 5.06 vpr 64.92 MiB -1 -1 0.24 18440 13 0.26 -1 -1 32316 -1 -1 22 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66480 32 32 288 320 1 216 86 17 17 289 -1 unnamed_device 25.0 MiB 0.54 3098 1371 8969 2158 5992 819 64.9 MiB 0.06 0.00 10.2409 8.00961 -172.114 -8.00961 8.00961 0.25 0.000455242 0.000416838 0.0273004 0.025115 -1 -1 -1 -1 48 3044 22 6.79088e+06 296384 865456. 2994.66 2.49 0.280748 0.25145 27694 206865 -1 2693 35 1210 3789 333870 151059 6.84611 6.84611 -157.334 -6.84611 0 0 1.05005e+06 3633.38 0.05 0.14 0.20 -1 -1 0.05 0.0416726 0.0377162 144 194 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_023.v common 2.67 vpr 63.91 MiB -1 -1 0.15 17672 9 0.07 -1 -1 32016 -1 -1 19 26 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65448 26 32 152 184 1 121 77 17 17 289 -1 unnamed_device 24.5 MiB 0.19 1488 617 5782 1436 3916 430 63.9 MiB 0.03 0.00 6.09263 4.97145 -92.9358 -4.97145 4.97145 0.24 0.000244262 0.000223535 0.0101216 0.00930478 -1 -1 -1 -1 26 1806 27 6.79088e+06 255968 503264. 1741.40 1.15 0.100936 0.0879412 23662 119890 -1 1410 16 621 1418 72154 18823 4.40201 4.40201 -92.9496 -4.40201 0 0 618332. 2139.56 0.02 0.03 0.06 -1 -1 0.02 0.01089 0.00983063 70 76 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_024.v common 10.31 vpr 64.41 MiB -1 -1 0.16 18052 13 0.31 -1 -1 32380 -1 -1 24 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65952 32 32 287 319 1 211 88 17 17 289 -1 unnamed_device 24.9 MiB 0.53 2866 1367 5353 1032 4119 202 64.4 MiB 0.04 0.00 10.0962 7.88173 -161.78 -7.88173 7.88173 0.25 0.000449381 0.000411785 0.015309 0.0141099 -1 -1 -1 -1 38 3405 34 6.79088e+06 323328 678818. 2348.85 8.08 0.267815 0.236873 25966 169698 -1 2807 21 1639 4697 237671 55346 7.00707 7.00707 -156.558 -7.00707 0 0 902133. 3121.57 0.03 0.06 0.09 -1 -1 0.03 0.0252728 0.0228831 137 193 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_025.v common 3.06 vpr 63.40 MiB -1 -1 0.11 17668 8 0.07 -1 -1 32008 -1 -1 17 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 64924 32 32 154 186 1 122 81 17 17 289 -1 unnamed_device 24.1 MiB 0.21 1801 751 10056 3801 5079 1176 63.4 MiB 0.04 0.00 5.37538 4.0417 -97.2106 -4.0417 4.0417 0.25 0.000246317 0.000224443 0.0162963 0.0149155 -1 -1 -1 -1 28 2037 20 6.79088e+06 229024 531479. 1839.03 1.53 0.0849702 0.074266 23950 126010 -1 1607 16 643 1316 83382 21230 3.71266 3.71266 -99.3645 -3.71266 0 0 648988. 2245.63 0.02 0.03 0.07 -1 -1 0.02 0.0106624 0.00961875 64 60 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_026.v common 5.45 vpr 64.21 MiB -1 -1 0.30 18056 15 0.21 -1 -1 32388 -1 -1 21 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65752 32 32 254 286 1 199 85 17 17 289 -1 unnamed_device 24.9 MiB 0.57 2483 1240 9943 2138 6866 939 64.2 MiB 0.06 0.00 9.80857 8.30542 -172.111 -8.30542 8.30542 0.24 0.000413589 0.000379237 0.0245435 0.0225401 -1 -1 -1 -1 30 3906 37 6.79088e+06 282912 556674. 1926.21 3.13 0.211236 0.18686 24526 138013 -1 2898 17 1285 3527 205171 47925 7.42577 7.42577 -170.534 -7.42577 0 0 706193. 2443.58 0.03 0.05 0.08 -1 -1 0.03 0.0194069 0.0176652 125 160 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_027.v common 5.76 vpr 64.77 MiB -1 -1 0.24 18436 13 0.26 -1 -1 32408 -1 -1 21 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66320 32 32 260 292 1 195 85 17 17 289 -1 unnamed_device 24.9 MiB 0.59 2809 1235 6223 1362 4311 550 64.8 MiB 0.04 0.00 9.72987 7.14037 -153.834 -7.14037 7.14037 0.25 0.000409309 0.00037536 0.0166027 0.015261 -1 -1 -1 -1 28 3847 37 6.79088e+06 282912 531479. 1839.03 3.35 0.189471 0.167684 23950 126010 -1 3140 18 1510 4391 259846 62056 6.54163 6.54163 -159.303 -6.54163 0 0 648988. 2245.63 0.02 0.07 0.10 -1 -1 0.02 0.0221816 0.0201556 121 166 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_028.v common 3.24 vpr 64.31 MiB -1 -1 0.16 18440 13 0.24 -1 -1 32460 -1 -1 22 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65852 32 32 279 311 1 197 86 17 17 289 -1 unnamed_device 25.3 MiB 0.42 3092 1312 10670 2502 6881 1287 64.3 MiB 0.06 0.00 10.7137 7.55772 -167.165 -7.55772 7.55772 0.25 0.000496424 0.000437606 0.0278823 0.0255608 -1 -1 -1 -1 34 3511 26 6.79088e+06 296384 618332. 2139.56 1.12 0.149524 0.132934 25102 150614 -1 3012 26 1394 4168 319805 117147 6.53742 6.53742 -161.936 -6.53742 0 0 787024. 2723.27 0.03 0.11 0.08 -1 -1 0.03 0.0306397 0.0275996 137 185 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_029.v common 4.78 vpr 64.34 MiB -1 -1 0.21 18048 12 0.14 -1 -1 32216 -1 -1 19 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65884 32 32 238 270 1 179 83 17 17 289 -1 unnamed_device 24.9 MiB 0.53 2215 1077 7463 1926 5127 410 64.3 MiB 0.04 0.00 8.90447 7.16817 -157.085 -7.16817 7.16817 0.24 0.000360981 0.000329659 0.0183015 0.016781 -1 -1 -1 -1 30 2953 38 6.79088e+06 255968 556674. 1926.21 2.72 0.213179 0.189075 24526 138013 -1 2363 15 977 2427 125582 30236 6.04043 6.04043 -146.514 -6.04043 0 0 706193. 2443.58 0.03 0.05 0.07 -1 -1 0.03 0.0233315 0.0211966 106 144 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_030.v common 2.66 vpr 63.57 MiB -1 -1 0.15 18056 11 0.13 -1 -1 32052 -1 -1 21 30 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65092 30 32 213 245 1 164 83 17 17 289 -1 unnamed_device 24.2 MiB 0.54 2157 906 8903 2145 5507 1251 63.6 MiB 0.05 0.00 8.36704 6.05468 -133.402 -6.05468 6.05468 0.26 0.000335989 0.00030755 0.0246192 0.02286 -1 -1 -1 -1 30 2680 33 6.79088e+06 282912 556674. 1926.21 0.66 0.0826156 0.0734008 24526 138013 -1 2099 20 1066 2662 146556 35824 5.18426 5.18426 -128.437 -5.18426 0 0 706193. 2443.58 0.03 0.04 0.07 -1 -1 0.03 0.0169118 0.0152834 98 125 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_031.v common 2.87 vpr 64.38 MiB -1 -1 0.15 18056 11 0.15 -1 -1 32252 -1 -1 22 28 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65924 28 32 227 259 1 169 82 17 17 289 -1 unnamed_device 24.9 MiB 0.19 2381 1026 10050 2724 5924 1402 64.4 MiB 0.05 0.00 8.60731 6.75879 -129.565 -6.75879 6.75879 0.24 0.000355493 0.000325819 0.0222164 0.0203714 -1 -1 -1 -1 32 2423 27 6.79088e+06 296384 586450. 2029.24 1.21 0.137782 0.121045 24814 144142 -1 2131 17 976 2549 133309 32630 5.82893 5.82893 -125.134 -5.82893 0 0 744469. 2576.02 0.03 0.04 0.08 -1 -1 0.03 0.0170262 0.0153374 110 145 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_032.v common 3.22 vpr 64.91 MiB -1 -1 0.14 18052 12 0.23 -1 -1 32352 -1 -1 24 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66472 32 32 274 306 1 205 88 17 17 289 -1 unnamed_device 24.9 MiB 0.47 2875 1212 13153 3436 7680 2037 64.9 MiB 0.07 0.00 9.54873 6.775 -163.89 -6.775 6.775 0.25 0.000426219 0.000390708 0.0317792 0.0291933 -1 -1 -1 -1 38 3105 28 6.79088e+06 323328 678818. 2348.85 1.00 0.14567 0.129269 25966 169698 -1 2513 19 1288 3419 170230 41113 6.11529 6.11529 -157.306 -6.11529 0 0 902133. 3121.57 0.03 0.05 0.13 -1 -1 0.03 0.0220122 0.0199881 127 180 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_033.v common 2.77 vpr 64.30 MiB -1 -1 0.17 18056 12 0.14 -1 -1 32240 -1 -1 21 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65844 31 32 237 269 1 170 84 17 17 289 -1 unnamed_device 24.9 MiB 0.57 2060 1002 6672 1433 5012 227 64.3 MiB 0.04 0.00 7.92332 6.92092 -140.498 -6.92092 6.92092 0.24 0.000365858 0.000335237 0.0155583 0.0142796 -1 -1 -1 -1 34 2714 22 6.79088e+06 282912 618332. 2139.56 0.66 0.0804347 0.070896 25102 150614 -1 2212 17 1038 2779 151082 36854 5.83236 5.83236 -136.839 -5.83236 0 0 787024. 2723.27 0.03 0.04 0.08 -1 -1 0.03 0.0169749 0.0153974 103 146 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_034.v common 4.42 vpr 64.34 MiB -1 -1 0.15 18056 10 0.18 -1 -1 32228 -1 -1 19 29 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65880 29 32 220 252 1 166 80 17 17 289 -1 unnamed_device 24.5 MiB 0.38 2498 1114 12464 4239 6338 1887 64.3 MiB 0.08 0.00 8.45663 5.89864 -127.83 -5.89864 5.89864 0.27 0.000350178 0.000319832 0.0386761 0.0358483 -1 -1 -1 -1 30 2868 39 6.79088e+06 255968 556674. 1926.21 2.44 0.157288 0.139573 24526 138013 -1 2191 15 1009 2745 133799 31948 5.07353 5.07353 -121.877 -5.07353 0 0 706193. 2443.58 0.03 0.05 0.08 -1 -1 0.03 0.0187168 0.0170958 106 135 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_035.v common 4.31 vpr 65.09 MiB -1 -1 0.17 18824 13 0.37 -1 -1 32496 -1 -1 23 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66656 32 32 315 347 1 231 87 17 17 289 -1 unnamed_device 25.6 MiB 0.82 3406 1501 8151 1916 5443 792 65.1 MiB 0.06 0.00 10.5847 8.3634 -174.549 -8.3634 8.3634 0.25 0.000512226 0.000469738 0.0256547 0.0235679 -1 -1 -1 -1 34 4177 45 6.79088e+06 309856 618332. 2139.56 1.60 0.155047 0.138288 25102 150614 -1 3221 19 1668 4722 270668 63068 7.30036 7.30036 -169.537 -7.30036 0 0 787024. 2723.27 0.03 0.07 0.09 -1 -1 0.03 0.0268631 0.0244829 155 221 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_036.v common 6.21 vpr 64.89 MiB -1 -1 0.17 18680 14 0.29 -1 -1 32488 -1 -1 21 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66444 32 32 282 314 1 220 85 17 17 289 -1 unnamed_device 25.2 MiB 0.69 2943 1394 7711 1611 5817 283 64.9 MiB 0.05 0.00 10.4967 7.87598 -171.941 -7.87598 7.87598 0.26 0.000454747 0.000412271 0.021847 0.0200618 -1 -1 -1 -1 32 4122 48 6.79088e+06 282912 586450. 2029.24 3.80 0.264087 0.233687 24814 144142 -1 3384 26 1590 4354 315532 91570 6.90989 6.90989 -166.802 -6.90989 0 0 744469. 2576.02 0.03 0.08 0.08 -1 -1 0.03 0.0278672 0.0250781 141 188 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_037.v common 3.47 vpr 64.29 MiB -1 -1 0.27 18048 12 0.18 -1 -1 31904 -1 -1 22 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65828 31 32 241 273 1 167 85 17 17 289 -1 unnamed_device 24.9 MiB 0.81 2245 1124 11617 2830 7151 1636 64.3 MiB 0.06 0.00 9.13651 7.16673 -154.158 -7.16673 7.16673 0.24 0.000402222 0.000371053 0.0298095 0.027394 -1 -1 -1 -1 32 2540 25 6.79088e+06 296384 586450. 2029.24 0.75 0.104561 0.0929539 24814 144142 -1 2194 38 912 2526 247643 119222 6.40858 6.40858 -147.26 -6.40858 0 0 744469. 2576.02 0.03 0.11 0.08 -1 -1 0.03 0.0307068 0.027383 109 150 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_038.v common 4.79 vpr 64.44 MiB -1 -1 0.21 18440 12 0.24 -1 -1 32412 -1 -1 25 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65984 31 32 307 339 1 224 88 17 17 289 -1 unnamed_device 25.2 MiB 1.02 2945 1333 7108 1597 4418 1093 64.4 MiB 0.06 0.00 9.92626 7.46598 -153.742 -7.46598 7.46598 0.26 0.000482238 0.000434978 0.0278272 0.0257809 -1 -1 -1 -1 44 3306 50 6.79088e+06 336800 787024. 2723.27 2.00 0.23826 0.210092 27118 194962 -1 2867 17 1292 4003 228351 52035 6.84601 6.84601 -149.478 -6.84601 0 0 997811. 3452.63 0.04 0.06 0.11 -1 -1 0.04 0.0229471 0.0209391 149 216 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_039.v common 3.38 vpr 65.07 MiB -1 -1 0.21 18820 14 0.30 -1 -1 33008 -1 -1 24 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66632 31 32 293 325 1 210 87 17 17 289 -1 unnamed_device 25.2 MiB 0.62 2863 1260 7191 1526 5185 480 65.1 MiB 0.05 0.00 10.7622 8.34339 -164.83 -8.34339 8.34339 0.25 0.000461007 0.000422205 0.0206457 0.0189982 -1 -1 -1 -1 32 4175 47 6.79088e+06 323328 586450. 2029.24 0.99 0.128067 0.114334 24814 144142 -1 2958 17 1420 4068 211841 50823 7.27357 7.27357 -157.701 -7.27357 0 0 744469. 2576.02 0.03 0.08 0.08 -1 -1 0.03 0.0330715 0.026157 145 202 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_040.v common 3.88 vpr 64.86 MiB -1 -1 0.18 18824 13 0.23 -1 -1 32404 -1 -1 29 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66420 31 32 276 308 1 215 92 17 17 289 -1 unnamed_device 25.2 MiB 0.64 2522 1348 10856 2834 7113 909 64.9 MiB 0.06 0.00 9.47173 8.62453 -173.004 -8.62453 8.62453 0.29 0.000440966 0.000404379 0.0276626 0.025418 -1 -1 -1 -1 40 2987 28 6.79088e+06 390688 706193. 2443.58 1.54 0.191963 0.16863 26254 175826 -1 2731 15 1325 3511 178012 43029 7.1786 7.1786 -159.768 -7.1786 0 0 926341. 3205.33 0.03 0.05 0.11 -1 -1 0.03 0.0194924 0.0177471 141 185 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_041.v common 8.44 vpr 64.92 MiB -1 -1 0.18 18440 13 0.23 -1 -1 32424 -1 -1 24 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66476 31 32 269 301 1 202 87 17 17 289 -1 unnamed_device 25.2 MiB 0.42 2556 1153 5463 969 4379 115 64.9 MiB 0.04 0.00 9.98527 7.53333 -150.109 -7.53333 7.53333 0.24 0.000423469 0.000387405 0.0151339 0.0139092 -1 -1 -1 -1 38 3092 22 6.79088e+06 323328 678818. 2348.85 6.41 0.234781 0.206989 25966 169698 -1 2670 17 1343 3980 206829 49786 6.58427 6.58427 -142.162 -6.58427 0 0 902133. 3121.57 0.03 0.05 0.09 -1 -1 0.03 0.0206137 0.0188038 132 178 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_042.v common 3.53 vpr 64.59 MiB -1 -1 0.15 18056 12 0.16 -1 -1 32384 -1 -1 19 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66144 32 32 264 296 1 184 83 17 17 289 -1 unnamed_device 24.6 MiB 0.54 2002 1172 9083 2391 5419 1273 64.6 MiB 0.05 0.00 8.49442 7.30279 -160.079 -7.30279 7.30279 0.25 0.000425324 0.000390776 0.0256692 0.0237463 -1 -1 -1 -1 32 3059 44 6.79088e+06 255968 586450. 2029.24 1.35 0.163263 0.143696 24814 144142 -1 2506 18 1001 2650 149679 35783 6.24413 6.24413 -151.681 -6.24413 0 0 744469. 2576.02 0.03 0.04 0.08 -1 -1 0.03 0.0197901 0.0179497 117 170 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_043.v common 4.74 vpr 64.55 MiB -1 -1 0.35 19212 14 0.36 -1 -1 32704 -1 -1 25 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66100 32 32 324 356 1 233 89 17 17 289 -1 unnamed_device 25.2 MiB 0.53 2721 1387 9593 2160 6158 1275 64.6 MiB 0.06 0.00 10.2498 8.60377 -176.638 -8.60377 8.60377 0.36 0.000519234 0.000475246 0.0287265 0.0263298 -1 -1 -1 -1 42 3697 28 6.79088e+06 336800 744469. 2576.02 2.10 0.220451 0.19538 26542 182613 -1 3213 16 1508 4554 251372 60167 7.8443 7.8443 -173.087 -7.8443 0 0 949917. 3286.91 0.03 0.06 0.10 -1 -1 0.03 0.0253925 0.0232663 166 230 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_044.v common 3.17 vpr 64.68 MiB -1 -1 0.16 18052 11 0.17 -1 -1 32184 -1 -1 18 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66236 31 32 249 281 1 182 81 17 17 289 -1 unnamed_device 24.9 MiB 0.36 2383 1234 8831 2136 5283 1412 64.7 MiB 0.06 0.00 9.03977 6.55167 -143.832 -6.55167 6.55167 0.26 0.000390614 0.000357326 0.0306504 0.0284119 -1 -1 -1 -1 34 3424 26 6.79088e+06 242496 618332. 2139.56 1.28 0.149155 0.132617 25102 150614 -1 2799 17 1286 3775 224926 52311 5.53137 5.53137 -138.061 -5.53137 0 0 787024. 2723.27 0.03 0.05 0.08 -1 -1 0.03 0.0185385 0.0168386 116 158 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_045.v common 4.04 vpr 64.32 MiB -1 -1 0.18 18436 13 0.24 -1 -1 32404 -1 -1 20 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65864 31 32 284 316 1 189 83 17 17 289 -1 unnamed_device 25.2 MiB 0.59 2583 1227 7823 1987 5336 500 64.3 MiB 0.06 0.00 10.3304 8.2347 -167.362 -8.2347 8.2347 0.25 0.00107463 0.00100212 0.0242496 0.0222372 -1 -1 -1 -1 38 3089 31 6.79088e+06 269440 678818. 2348.85 1.79 0.182563 0.160756 25966 169698 -1 2457 17 1102 3538 183777 43994 6.928 6.928 -151.92 -6.928 0 0 902133. 3121.57 0.03 0.06 0.09 -1 -1 0.03 0.0229341 0.020939 137 193 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_046.v common 5.85 vpr 64.33 MiB -1 -1 0.20 18440 12 0.23 -1 -1 32476 -1 -1 24 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65876 32 32 303 335 1 211 88 17 17 289 -1 unnamed_device 25.2 MiB 0.72 3276 1368 7303 1652 5036 615 64.3 MiB 0.05 0.00 9.50649 7.04019 -156.99 -7.04019 7.04019 0.28 0.000485597 0.000444829 0.0239096 0.0220685 -1 -1 -1 -1 32 4045 46 6.79088e+06 323328 586450. 2029.24 3.39 0.250211 0.22096 24814 144142 -1 3137 20 1473 4574 259310 60569 6.07958 6.07958 -153.718 -6.07958 0 0 744469. 2576.02 0.03 0.07 0.08 -1 -1 0.03 0.0247197 0.0224238 149 209 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_047.v common 4.57 vpr 64.27 MiB -1 -1 0.19 18432 13 0.33 -1 -1 32428 -1 -1 20 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65812 32 32 272 304 1 193 84 17 17 289 -1 unnamed_device 25.2 MiB 1.10 2365 1209 7587 1894 5178 515 64.3 MiB 0.05 0.00 9.74801 7.69207 -163.114 -7.69207 7.69207 0.26 0.000440032 0.000395698 0.0215181 0.0197213 -1 -1 -1 -1 30 3206 26 6.79088e+06 269440 556674. 1926.21 1.49 0.177988 0.157193 24526 138013 -1 2685 19 1329 3576 180486 43057 6.58083 6.58083 -156.048 -6.58083 0 0 706193. 2443.58 0.03 0.06 0.07 -1 -1 0.03 0.0268247 0.0243982 129 178 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_048.v common 4.15 vpr 64.91 MiB -1 -1 0.17 18436 13 0.29 -1 -1 32272 -1 -1 20 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66464 32 32 271 303 1 208 84 17 17 289 -1 unnamed_device 24.9 MiB 0.36 3179 1230 9417 2549 6214 654 64.9 MiB 0.06 0.00 12.3503 7.56546 -162.927 -7.56546 7.56546 0.24 0.000419777 0.000383264 0.0245488 0.0224769 -1 -1 -1 -1 34 3342 25 6.79088e+06 269440 618332. 2139.56 1.96 0.222507 0.197685 25102 150614 -1 2749 20 1287 3531 194100 46258 6.63461 6.63461 -153.875 -6.63461 0 0 787024. 2723.27 0.03 0.06 0.09 -1 -1 0.03 0.0229001 0.0207611 126 177 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_049.v common 4.41 vpr 64.33 MiB -1 -1 0.29 18440 12 0.22 -1 -1 32072 -1 -1 21 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65876 32 32 288 320 1 213 85 17 17 289 -1 unnamed_device 25.2 MiB 0.73 3237 1350 6781 1616 4569 596 64.3 MiB 0.05 0.00 9.79309 7.26885 -157.003 -7.26885 7.26885 0.29 0.000453889 0.000415087 0.0228808 0.0209913 -1 -1 -1 -1 36 3641 25 6.79088e+06 282912 648988. 2245.63 1.83 0.204078 0.18037 25390 158009 -1 3026 21 1415 4844 275624 62278 6.33013 6.33013 -152.464 -6.33013 0 0 828058. 2865.25 0.03 0.07 0.08 -1 -1 0.03 0.0264261 0.0237997 143 194 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_050.v common 3.94 vpr 65.12 MiB -1 -1 0.18 18824 13 0.26 -1 -1 33052 -1 -1 26 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66680 32 32 306 338 1 225 90 17 17 289 -1 unnamed_device 25.2 MiB 0.43 2993 1412 5718 1172 4154 392 65.1 MiB 0.05 0.00 9.84216 7.93745 -169.253 -7.93745 7.93745 0.26 0.000506572 0.000441632 0.0199996 0.0184984 -1 -1 -1 -1 34 3731 24 6.79088e+06 350272 618332. 2139.56 1.65 0.183595 0.164168 25102 150614 -1 3234 20 1610 4700 250750 58995 6.64794 6.64794 -157.372 -6.64794 0 0 787024. 2723.27 0.03 0.07 0.09 -1 -1 0.03 0.0260849 0.023678 154 212 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_051.v common 4.60 vpr 64.25 MiB -1 -1 0.15 18296 14 0.25 -1 -1 32688 -1 -1 19 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65792 32 32 262 294 1 194 83 17 17 289 -1 unnamed_device 24.9 MiB 0.48 2657 1180 4583 839 3547 197 64.2 MiB 0.03 0.00 10.6221 8.57741 -169.869 -8.57741 8.57741 0.25 0.000429716 0.000393141 0.0139303 0.012808 -1 -1 -1 -1 28 3338 31 6.79088e+06 255968 531479. 1839.03 2.48 0.181889 0.160377 23950 126010 -1 2914 20 1463 4240 240521 57665 7.62947 7.62947 -166.279 -7.62947 0 0 648988. 2245.63 0.02 0.06 0.07 -1 -1 0.02 0.022302 0.0202324 126 168 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_052.v common 3.72 vpr 65.03 MiB -1 -1 0.28 18440 13 0.29 -1 -1 32388 -1 -1 22 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66592 32 32 291 323 1 211 86 17 17 289 -1 unnamed_device 25.6 MiB 0.57 2869 1258 10481 2943 5987 1551 65.0 MiB 0.07 0.00 10.9668 8.37706 -166.957 -8.37706 8.37706 0.26 0.000452579 0.00041402 0.0351629 0.0326495 -1 -1 -1 -1 32 3983 34 6.79088e+06 296384 586450. 2029.24 1.24 0.15596 0.139386 24814 144142 -1 3104 18 1493 4014 248833 58652 7.1394 7.1394 -164.599 -7.1394 0 0 744469. 2576.02 0.03 0.07 0.08 -1 -1 0.03 0.0277841 0.0252849 141 197 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_053.v common 5.22 vpr 63.88 MiB -1 -1 0.22 18436 13 0.32 -1 -1 32356 -1 -1 27 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65408 31 32 302 334 1 219 90 17 17 289 -1 unnamed_device 25.2 MiB 0.71 2984 1375 7929 1755 5579 595 63.9 MiB 0.05 0.00 10.6879 7.80965 -168.49 -7.80965 7.80965 0.26 0.000508235 0.000468038 0.0234246 0.0216387 -1 -1 -1 -1 44 3117 28 6.79088e+06 363744 787024. 2723.27 2.60 0.247217 0.219943 27118 194962 -1 2818 25 1372 3980 318440 129638 6.99593 6.99593 -160.634 -6.99593 0 0 997811. 3452.63 0.04 0.11 0.10 -1 -1 0.04 0.0310593 0.0280909 152 211 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_054.v common 4.83 vpr 65.00 MiB -1 -1 0.31 18824 12 0.27 -1 -1 32268 -1 -1 28 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66556 32 32 308 340 1 222 92 17 17 289 -1 unnamed_device 25.6 MiB 0.41 3144 1337 10649 2743 7103 803 65.0 MiB 0.07 0.00 10.1967 7.58252 -163.027 -7.58252 7.58252 0.25 0.000490837 0.000443114 0.0319269 0.0295168 -1 -1 -1 -1 40 3178 19 6.79088e+06 377216 706193. 2443.58 2.41 0.251239 0.223458 26254 175826 -1 3008 22 1701 4827 258713 61668 6.50587 6.50587 -155.351 -6.50587 0 0 926341. 3205.33 0.05 0.11 0.09 -1 -1 0.05 0.0451514 0.0407572 156 214 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_055.v common 2.48 vpr 63.77 MiB -1 -1 0.22 18052 11 0.11 -1 -1 32232 -1 -1 17 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65304 32 32 216 248 1 163 81 17 17 289 -1 unnamed_device 24.5 MiB 0.16 2444 1016 13381 3505 8370 1506 63.8 MiB 0.06 0.00 8.71077 6.38377 -127.37 -6.38377 6.38377 0.25 0.000324322 0.000295525 0.0272651 0.0249364 -1 -1 -1 -1 30 2471 48 6.79088e+06 229024 556674. 1926.21 0.77 0.111758 0.0991533 24526 138013 -1 2018 16 855 2033 108403 26277 5.53907 5.53907 -126.438 -5.53907 0 0 706193. 2443.58 0.03 0.04 0.07 -1 -1 0.03 0.0151176 0.0137736 96 122 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_056.v common 3.03 vpr 64.83 MiB -1 -1 0.17 18440 13 0.19 -1 -1 31976 -1 -1 20 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66384 32 32 254 286 1 192 84 17 17 289 -1 unnamed_device 25.0 MiB 0.79 2200 1130 7953 1961 5244 748 64.8 MiB 0.06 0.00 9.12952 7.64382 -162.069 -7.64382 7.64382 0.26 0.000404932 0.00037113 0.0266925 0.0246854 -1 -1 -1 -1 32 3343 36 6.79088e+06 269440 586450. 2029.24 0.62 0.103698 0.0924632 24814 144142 -1 2509 20 1303 3343 181626 44818 6.83492 6.83492 -156.203 -6.83492 0 0 744469. 2576.02 0.03 0.05 0.08 -1 -1 0.03 0.0210802 0.0190009 117 160 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_057.v common 4.16 vpr 64.23 MiB -1 -1 0.19 19208 14 0.50 -1 -1 32596 -1 -1 24 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65772 32 32 338 370 1 249 88 17 17 289 -1 unnamed_device 25.6 MiB 0.55 3289 1631 6133 1207 4481 445 64.2 MiB 0.05 0.00 12.1157 8.85191 -183.37 -8.85191 8.85191 0.25 0.00052977 0.00048526 0.0246398 0.0227741 -1 -1 -1 -1 36 4433 25 6.79088e+06 323328 648988. 2245.63 1.60 0.198607 0.176942 25390 158009 -1 3727 23 2320 7287 414178 93236 7.92691 7.92691 -180.612 -7.92691 0 0 828058. 2865.25 0.03 0.09 0.08 -1 -1 0.03 0.0315216 0.0285437 178 244 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_058.v common 4.45 vpr 64.82 MiB -1 -1 0.16 18436 13 0.25 -1 -1 32520 -1 -1 23 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66380 32 32 271 303 1 213 87 17 17 289 -1 unnamed_device 25.2 MiB 0.41 2695 1357 7767 1632 5687 448 64.8 MiB 0.05 0.00 9.55819 7.43065 -172.005 -7.43065 7.43065 0.26 0.000453633 0.000416022 0.0206436 0.0188543 -1 -1 -1 -1 44 3224 37 6.79088e+06 309856 787024. 2723.27 2.25 0.249436 0.219598 27118 194962 -1 2850 17 1234 3473 205079 46010 6.76533 6.76533 -164.687 -6.76533 0 0 997811. 3452.63 0.06 0.09 0.14 -1 -1 0.06 0.0356138 0.032349 139 177 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_059.v common 5.16 vpr 63.62 MiB -1 -1 0.15 18056 11 0.15 -1 -1 32220 -1 -1 19 30 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65144 30 32 224 256 1 165 81 17 17 289 -1 unnamed_device 24.5 MiB 0.28 2111 998 6031 1372 4208 451 63.6 MiB 0.04 0.00 8.95732 6.57733 -140.708 -6.57733 6.57733 0.25 0.000361391 0.000331213 0.0187657 0.0173949 -1 -1 -1 -1 30 2897 39 6.79088e+06 255968 556674. 1926.21 3.36 0.147671 0.130734 24526 138013 -1 2204 19 1182 3397 176175 42450 5.70014 5.70014 -134.673 -5.70014 0 0 706193. 2443.58 0.03 0.05 0.08 -1 -1 0.03 0.0198801 0.0179249 103 136 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_060.v common 5.46 vpr 64.95 MiB -1 -1 0.22 19208 15 0.48 -1 -1 32792 -1 -1 25 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66504 32 32 351 383 1 253 89 17 17 289 -1 unnamed_device 25.2 MiB 0.71 3433 1562 7613 1907 5097 609 64.9 MiB 0.10 0.00 11.6801 9.39421 -191.348 -9.39421 9.39421 0.36 0.00106071 0.000968475 0.046627 0.0426776 -1 -1 -1 -1 42 3751 25 6.79088e+06 336800 744469. 2576.02 2.52 0.366544 0.326961 26542 182613 -1 3337 18 1749 5222 274844 63949 8.01666 8.01666 -177.783 -8.01666 0 0 949917. 3286.91 0.04 0.07 0.10 -1 -1 0.04 0.0297378 0.0272194 185 257 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_061.v common 4.20 vpr 64.39 MiB -1 -1 0.17 18440 13 0.28 -1 -1 32436 -1 -1 20 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65932 32 32 297 329 1 219 84 17 17 289 -1 unnamed_device 25.2 MiB 0.33 2331 1313 3744 580 3016 148 64.4 MiB 0.03 0.00 9.31665 8.10068 -171.378 -8.10068 8.10068 0.25 0.00048237 0.000443634 0.0128747 0.0119037 -1 -1 -1 -1 30 3374 30 6.79088e+06 269440 556674. 1926.21 1.97 0.161087 0.142735 24526 138013 -1 2738 19 1436 3802 177108 45178 7.26121 7.26121 -166.861 -7.26121 0 0 706193. 2443.58 0.03 0.05 0.13 -1 -1 0.03 0.0260456 0.0238074 143 203 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_062.v common 4.84 vpr 64.27 MiB -1 -1 0.14 18056 11 0.17 -1 -1 32236 -1 -1 18 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65816 32 32 231 263 1 167 82 17 17 289 -1 unnamed_device 24.9 MiB 0.44 2270 1023 7736 2019 5297 420 64.3 MiB 0.04 0.00 8.47541 6.67703 -137.267 -6.67703 6.67703 0.25 0.000362463 0.000328679 0.018534 0.0169718 -1 -1 -1 -1 32 2657 23 6.79088e+06 242496 586450. 2029.24 2.81 0.168016 0.148222 24814 144142 -1 2290 22 939 2390 174462 52299 5.65673 5.65673 -133.532 -5.65673 0 0 744469. 2576.02 0.03 0.05 0.09 -1 -1 0.03 0.0191776 0.0172547 102 137 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_063.v common 4.62 vpr 65.11 MiB -1 -1 0.29 18444 12 0.27 -1 -1 32348 -1 -1 20 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66676 32 32 305 337 1 213 84 17 17 289 -1 unnamed_device 25.6 MiB 0.45 2891 1443 5757 1168 4018 571 65.1 MiB 0.04 0.00 9.11861 7.63944 -167.73 -7.63944 7.63944 0.25 0.000465144 0.000424934 0.0193417 0.0177798 -1 -1 -1 -1 34 3932 44 6.79088e+06 269440 618332. 2139.56 2.35 0.227299 0.200836 25102 150614 -1 3251 21 1580 4929 276598 63194 6.67032 6.67032 -159.862 -6.67032 0 0 787024. 2723.27 0.03 0.07 0.08 -1 -1 0.03 0.0265715 0.0240576 150 211 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_064.v common 3.39 vpr 64.76 MiB -1 -1 0.14 18052 12 0.17 -1 -1 32236 -1 -1 21 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66312 32 32 243 275 1 185 85 17 17 289 -1 unnamed_device 24.9 MiB 0.31 2761 1193 9013 2310 6187 516 64.8 MiB 0.06 0.00 9.53525 7.06923 -152.736 -7.06923 7.06923 0.25 0.000831744 0.000771026 0.0259706 0.0239944 -1 -1 -1 -1 32 3476 32 6.79088e+06 282912 586450. 2029.24 1.53 0.163362 0.144355 24814 144142 -1 2663 17 1226 3225 178849 42340 6.24403 6.24403 -150.803 -6.24403 0 0 744469. 2576.02 0.03 0.05 0.08 -1 -1 0.03 0.0181705 0.0165401 116 149 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_065.v common 2.59 vpr 64.29 MiB -1 -1 0.15 18056 12 0.16 -1 -1 32240 -1 -1 19 30 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65836 30 32 228 260 1 164 81 17 17 289 -1 unnamed_device 24.5 MiB 0.38 2420 1052 9006 2359 5756 891 64.3 MiB 0.06 0.00 9.79978 7.51114 -149.061 -7.51114 7.51114 0.26 0.000582199 0.00055125 0.0274052 0.0252224 -1 -1 -1 -1 28 2581 46 6.79088e+06 255968 531479. 1839.03 0.62 0.10047 0.0893174 23950 126010 -1 2268 17 883 2304 127041 31144 6.50931 6.50931 -142.821 -6.50931 0 0 648988. 2245.63 0.02 0.04 0.14 -1 -1 0.02 0.0175122 0.0159131 106 140 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_066.v common 4.27 vpr 65.00 MiB -1 -1 0.18 18440 12 0.24 -1 -1 33000 -1 -1 27 29 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66560 29 32 275 307 1 201 88 17 17 289 -1 unnamed_device 25.2 MiB 0.86 2477 1194 11983 2982 7056 1945 65.0 MiB 0.07 0.00 9.28703 7.29287 -140.54 -7.29287 7.29287 0.25 0.000596237 0.000555455 0.0308238 0.0281961 -1 -1 -1 -1 34 3229 49 6.79088e+06 363744 618332. 2139.56 1.61 0.208 0.183725 25102 150614 -1 2663 18 1246 3691 195920 47061 6.49468 6.49468 -135.021 -6.49468 0 0 787024. 2723.27 0.04 0.08 0.12 -1 -1 0.04 0.031244 0.0281388 141 190 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_067.v common 3.17 vpr 64.52 MiB -1 -1 0.19 18436 13 0.30 -1 -1 32424 -1 -1 25 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66072 32 32 330 362 1 243 89 17 17 289 -1 unnamed_device 25.2 MiB 0.27 2791 1433 6425 1352 4743 330 64.5 MiB 0.05 0.00 10.3234 8.72856 -182.327 -8.72856 8.72856 0.24 0.000795659 0.000728071 0.0232994 0.0214039 -1 -1 -1 -1 38 3464 26 6.79088e+06 336800 678818. 2348.85 1.14 0.157746 0.140616 25966 169698 -1 2843 20 1580 4086 185601 47097 7.50416 7.50416 -166.392 -7.50416 0 0 902133. 3121.57 0.03 0.07 0.09 -1 -1 0.03 0.0309614 0.0279604 164 236 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_068.v common 4.63 vpr 63.84 MiB -1 -1 0.30 18440 12 0.30 -1 -1 32376 -1 -1 23 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65376 32 32 290 322 1 218 87 17 17 289 -1 unnamed_device 24.9 MiB 0.35 2738 1381 6039 1246 4273 520 63.8 MiB 0.04 0.00 10.6331 7.88426 -165.865 -7.88426 7.88426 0.25 0.000465683 0.000427551 0.0179957 0.016611 -1 -1 -1 -1 44 3100 19 6.79088e+06 309856 787024. 2723.27 2.38 0.252406 0.224359 27118 194962 -1 2732 20 1293 3687 194765 45364 7.04976 7.04976 -158.257 -7.04976 0 0 997811. 3452.63 0.04 0.06 0.11 -1 -1 0.04 0.0242765 0.022065 145 196 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_069.v common 3.11 vpr 64.28 MiB -1 -1 0.19 18056 12 0.13 -1 -1 32964 -1 -1 17 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65820 32 32 214 246 1 158 81 17 17 289 -1 unnamed_device 24.5 MiB 0.65 2402 966 11631 3699 5844 2088 64.3 MiB 0.06 0.00 10.2046 7.4716 -147.486 -7.4716 7.4716 0.31 0.000337689 0.000308377 0.0259086 0.0237764 -1 -1 -1 -1 30 2786 28 6.79088e+06 229024 556674. 1926.21 0.63 0.0863746 0.076974 24526 138013 -1 2052 27 873 2476 167777 62750 6.58427 6.58427 -143.078 -6.58427 0 0 706193. 2443.58 0.03 0.07 0.08 -1 -1 0.03 0.027424 0.0243636 94 120 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_070.v common 3.07 vpr 64.72 MiB -1 -1 0.17 18052 12 0.19 -1 -1 32040 -1 -1 22 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66276 31 32 244 276 1 178 85 17 17 289 -1 unnamed_device 25.2 MiB 0.54 2184 1042 4921 903 3842 176 64.7 MiB 0.05 0.00 8.68884 7.00394 -143.566 -7.00394 7.00394 0.35 0.000580339 0.000532143 0.0195529 0.0179552 -1 -1 -1 -1 30 3034 24 6.79088e+06 296384 556674. 1926.21 0.78 0.0893686 0.0802788 24526 138013 -1 2491 21 1275 3564 186778 44710 6.22488 6.22488 -141.943 -6.22488 0 0 706193. 2443.58 0.03 0.05 0.12 -1 -1 0.03 0.0205045 0.0184847 113 153 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_071.v common 3.99 vpr 64.89 MiB -1 -1 0.26 18436 11 0.17 -1 -1 32464 -1 -1 21 30 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66448 30 32 276 308 1 187 83 17 17 289 -1 unnamed_device 24.9 MiB 0.88 2327 1150 11783 3905 5750 2128 64.9 MiB 0.07 0.00 8.87527 6.95498 -139.11 -6.95498 6.95498 0.25 0.000420157 0.000383828 0.0308821 0.0282508 -1 -1 -1 -1 36 2957 25 6.79088e+06 282912 648988. 2245.63 1.42 0.17502 0.154264 25390 158009 -1 2591 18 1136 3349 191755 44399 5.75396 5.75396 -131.866 -5.75396 0 0 828058. 2865.25 0.03 0.05 0.09 -1 -1 0.03 0.0209723 0.0190357 129 188 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_072.v common 2.83 vpr 64.16 MiB -1 -1 0.15 18292 11 0.18 -1 -1 32256 -1 -1 22 28 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65704 28 32 253 285 1 172 82 17 17 289 -1 unnamed_device 24.9 MiB 0.41 2569 974 5778 1226 4251 301 64.2 MiB 0.05 0.00 9.47421 6.55419 -124.806 -6.55419 6.55419 0.25 0.000396379 0.000362887 0.0227797 0.0211258 -1 -1 -1 -1 30 2829 21 6.79088e+06 296384 556674. 1926.21 0.90 0.0960849 0.0857142 24526 138013 -1 2180 16 1052 3156 159340 38063 5.81774 5.81774 -121.9 -5.81774 0 0 706193. 2443.58 0.03 0.04 0.07 -1 -1 0.03 0.0180222 0.0164005 120 171 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_073.v common 4.56 vpr 64.36 MiB -1 -1 0.15 18052 13 0.24 -1 -1 32168 -1 -1 18 30 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65908 30 32 235 267 1 170 80 17 17 289 -1 unnamed_device 25.2 MiB 0.73 2387 982 10056 3040 5967 1049 64.4 MiB 0.08 0.00 9.81312 7.63272 -149.917 -7.63272 7.63272 0.26 0.000365681 0.000334243 0.0425039 0.0393652 -1 -1 -1 -1 28 3041 35 6.79088e+06 242496 531479. 1839.03 2.19 0.170005 0.151582 23950 126010 -1 2375 17 1061 2784 162889 39902 6.66693 6.66693 -147.788 -6.66693 0 0 648988. 2245.63 0.03 0.05 0.07 -1 -1 0.03 0.0189454 0.0172721 108 147 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_074.v common 3.17 vpr 64.23 MiB -1 -1 0.22 18436 12 0.17 -1 -1 31628 -1 -1 20 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65768 32 32 264 296 1 197 84 17 17 289 -1 unnamed_device 24.9 MiB 0.47 2415 1100 7770 2015 4653 1102 64.2 MiB 0.05 0.00 8.61815 6.91588 -153.666 -6.91588 6.91588 0.25 0.000579984 0.000543002 0.0212815 0.0195477 -1 -1 -1 -1 34 3490 32 6.79088e+06 269440 618332. 2139.56 1.09 0.135237 0.119678 25102 150614 -1 2558 21 1284 3364 172397 44534 5.95079 5.95079 -148.444 -5.95079 0 0 787024. 2723.27 0.03 0.05 0.08 -1 -1 0.03 0.0229694 0.020794 123 170 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_075.v common 4.84 vpr 64.97 MiB -1 -1 0.23 18440 13 0.26 -1 -1 32440 -1 -1 25 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66528 31 32 278 310 1 200 88 17 17 289 -1 unnamed_device 24.9 MiB 0.60 2897 1114 11788 3097 6456 2235 65.0 MiB 0.07 0.00 11.7353 8.38278 -163.21 -8.38278 8.38278 0.25 0.000448414 0.000410921 0.031208 0.0287226 -1 -1 -1 -1 32 3812 34 6.79088e+06 336800 586450. 2029.24 2.47 0.211753 0.186949 24814 144142 -1 2673 22 1312 3766 200576 50238 7.37881 7.37881 -158.541 -7.37881 0 0 744469. 2576.02 0.03 0.06 0.08 -1 -1 0.03 0.0245143 0.0221544 139 187 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_076.v common 4.12 vpr 65.02 MiB -1 -1 0.17 18056 14 0.23 -1 -1 32256 -1 -1 22 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66580 32 32 290 322 1 211 86 17 17 289 -1 unnamed_device 25.6 MiB 0.40 2838 1263 6323 1281 4818 224 65.0 MiB 0.05 0.00 9.79877 8.51252 -171.88 -8.51252 8.51252 0.30 0.000558009 0.000518729 0.0243299 0.022691 -1 -1 -1 -1 36 3441 45 6.79088e+06 296384 648988. 2245.63 1.72 0.189446 0.168875 25390 158009 -1 2883 25 1619 4804 303117 88801 7.57564 7.57564 -165.101 -7.57564 0 0 828058. 2865.25 0.03 0.09 0.08 -1 -1 0.03 0.0285655 0.0257961 142 196 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_077.v common 5.32 vpr 64.20 MiB -1 -1 0.18 18824 14 0.21 -1 -1 31756 -1 -1 19 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65740 32 32 269 301 1 198 83 17 17 289 -1 unnamed_device 24.9 MiB 0.76 2866 1248 7823 1994 5588 241 64.2 MiB 0.08 0.00 10.6835 8.05628 -162.217 -8.05628 8.05628 0.44 0.000778824 0.000710335 0.0372945 0.0341344 -1 -1 -1 -1 36 3198 50 6.79088e+06 255968 648988. 2245.63 2.26 0.244666 0.217046 25390 158009 -1 2775 21 1430 4356 266832 59760 7.46142 7.46142 -158.825 -7.46142 0 0 828058. 2865.25 0.05 0.11 0.14 -1 -1 0.05 0.0415661 0.0375795 124 175 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_078.v common 4.92 vpr 64.81 MiB -1 -1 0.17 18820 13 0.29 -1 -1 32464 -1 -1 24 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66364 32 32 296 328 1 220 88 17 17 289 -1 unnamed_device 24.9 MiB 0.79 3301 1354 9838 2791 5943 1104 64.8 MiB 0.11 0.00 11.6561 8.50014 -174.144 -8.50014 8.50014 0.44 0.000953862 0.000846986 0.050354 0.0460695 -1 -1 -1 -1 40 3071 19 6.79088e+06 323328 706193. 2443.58 1.90 0.242904 0.215911 26254 175826 -1 2921 18 1386 4092 217498 50671 7.4292 7.4292 -164.596 -7.4292 0 0 926341. 3205.33 0.03 0.06 0.09 -1 -1 0.03 0.0236931 0.0216261 148 202 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_079.v common 3.73 vpr 64.04 MiB -1 -1 0.15 18056 13 0.16 -1 -1 32240 -1 -1 20 30 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65572 30 32 234 266 1 174 82 17 17 289 -1 unnamed_device 24.9 MiB 0.71 2093 1110 11118 3343 5904 1871 64.0 MiB 0.07 0.00 8.34292 7.03168 -146.297 -7.03168 7.03168 0.37 0.000407522 0.000370634 0.0354939 0.0326379 -1 -1 -1 -1 32 3046 36 6.79088e+06 269440 586450. 2029.24 1.25 0.163242 0.144621 24814 144142 -1 2365 20 1188 3012 173307 40703 6.14335 6.14335 -141.075 -6.14335 0 0 744469. 2576.02 0.03 0.05 0.08 -1 -1 0.03 0.0190443 0.0172279 105 146 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_080.v common 4.29 vpr 64.45 MiB -1 -1 0.21 18824 13 0.40 -1 -1 32420 -1 -1 22 30 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66000 30 32 291 323 1 221 84 17 17 289 -1 unnamed_device 24.9 MiB 0.49 2701 1328 5940 1337 4353 250 64.5 MiB 0.08 0.00 9.92372 8.27725 -167.59 -8.27725 8.27725 0.32 0.000471761 0.000432104 0.0419352 0.0390168 -1 -1 -1 -1 40 2990 21 6.79088e+06 296384 706193. 2443.58 1.77 0.216138 0.191906 26254 175826 -1 2793 21 1499 3987 204361 48668 7.05325 7.05325 -158.984 -7.05325 0 0 926341. 3205.33 0.03 0.06 0.10 -1 -1 0.03 0.0270017 0.0245199 148 203 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_081.v common 4.21 vpr 64.30 MiB -1 -1 0.17 18444 14 0.37 -1 -1 32456 -1 -1 19 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65840 32 32 274 306 1 198 83 17 17 289 -1 unnamed_device 24.9 MiB 0.42 2766 1310 6203 1436 4242 525 64.3 MiB 0.06 0.00 10.68 7.90813 -170.809 -7.90813 7.90813 0.26 0.000437767 0.000400069 0.0261332 0.0241232 -1 -1 -1 -1 38 3375 23 6.79088e+06 255968 678818. 2348.85 1.97 0.190854 0.168878 25966 169698 -1 2731 20 1307 4212 215589 49236 6.96028 6.96028 -163.001 -6.96028 0 0 902133. 3121.57 0.03 0.06 0.10 -1 -1 0.03 0.0239148 0.021685 132 180 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_082.v common 6.03 vpr 63.70 MiB -1 -1 0.17 18420 13 0.21 -1 -1 32388 -1 -1 19 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65224 31 32 266 298 1 197 82 17 17 289 -1 unnamed_device 24.9 MiB 0.50 2670 1263 9516 2495 6168 853 63.7 MiB 0.08 0.00 9.28969 7.78026 -159.259 -7.78026 7.78026 0.24 0.000427306 0.000391277 0.0374739 0.0347377 -1 -1 -1 -1 40 3248 40 6.79088e+06 255968 706193. 2443.58 3.11 0.247052 0.219892 26254 175826 -1 2973 78 1765 5797 1115118 678019 6.70192 6.70192 -151.991 -6.70192 0 0 926341. 3205.33 0.05 0.62 0.18 -1 -1 0.05 0.0991482 0.088454 126 175 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_083.v common 6.00 vpr 64.51 MiB -1 -1 0.25 18048 13 0.19 -1 -1 32400 -1 -1 25 30 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66060 30 32 266 298 1 199 87 17 17 289 -1 unnamed_device 24.9 MiB 0.58 3172 1233 7767 1881 5232 654 64.5 MiB 0.05 0.00 10.3598 7.59138 -150.075 -7.59138 7.59138 0.25 0.000417312 0.000382562 0.0197533 0.0181414 -1 -1 -1 -1 30 3483 48 6.79088e+06 336800 556674. 1926.21 3.75 0.181702 0.160413 24526 138013 -1 2860 17 1326 3637 193421 45729 6.80459 6.80459 -149.735 -6.80459 0 0 706193. 2443.58 0.03 0.05 0.07 -1 -1 0.03 0.0204113 0.0184966 131 178 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_084.v common 10.01 vpr 64.36 MiB -1 -1 0.19 18680 14 0.32 -1 -1 32292 -1 -1 26 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65908 32 32 310 342 1 223 90 17 17 289 -1 unnamed_device 24.9 MiB 0.53 2887 1381 9336 2138 6356 842 64.4 MiB 0.06 0.00 11.5139 8.70357 -178.124 -8.70357 8.70357 0.25 0.00049894 0.000457278 0.02631 0.0241948 -1 -1 -1 -1 32 4103 38 6.79088e+06 350272 586450. 2029.24 7.66 0.268987 0.239194 24814 144142 -1 3266 21 1495 4302 258673 61020 8.00547 8.00547 -175.323 -8.00547 0 0 744469. 2576.02 0.03 0.07 0.08 -1 -1 0.03 0.026999 0.0245295 158 216 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_085.v common 4.72 vpr 64.77 MiB -1 -1 0.19 18440 11 0.25 -1 -1 32332 -1 -1 23 29 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66328 29 32 262 294 1 200 84 17 17 289 -1 unnamed_device 25.2 MiB 0.67 2793 1203 9966 2546 6206 1214 64.8 MiB 0.06 0.00 9.38772 7.1445 -141.662 -7.1445 7.1445 0.24 0.000419357 0.000383247 0.0259456 0.0238008 -1 -1 -1 -1 28 3470 28 6.79088e+06 309856 531479. 1839.03 2.12 0.187136 0.166118 23950 126010 -1 2930 22 1722 4992 281067 65184 6.54502 6.54502 -143.562 -6.54502 0 0 648988. 2245.63 0.04 0.12 0.12 -1 -1 0.04 0.0430561 0.0387822 138 177 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_086.v common 3.15 vpr 64.34 MiB -1 -1 0.15 18052 13 0.21 -1 -1 31724 -1 -1 19 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65888 32 32 222 254 1 179 83 17 17 289 -1 unnamed_device 24.9 MiB 0.55 2069 1200 7283 1764 4531 988 64.3 MiB 0.04 0.00 8.60203 7.14167 -162.348 -7.14167 7.14167 0.25 0.000344035 0.000314977 0.0190755 0.0175703 -1 -1 -1 -1 30 2976 21 6.79088e+06 255968 556674. 1926.21 0.84 0.0752712 0.0674518 24526 138013 -1 2322 18 1104 2731 132385 32111 6.15798 6.15798 -152.89 -6.15798 0 0 706193. 2443.58 0.03 0.04 0.07 -1 -1 0.03 0.0171264 0.0155641 100 128 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_087.v common 4.03 vpr 63.72 MiB -1 -1 0.19 18440 14 0.30 -1 -1 32404 -1 -1 19 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65252 32 32 267 299 1 192 83 17 17 289 -1 unnamed_device 24.9 MiB 0.66 2378 1170 9443 2925 4513 2005 63.7 MiB 0.06 0.00 10.4435 8.52224 -173.995 -8.52224 8.52224 0.25 0.000566754 0.000498933 0.0287922 0.0265342 -1 -1 -1 -1 34 3483 37 6.79088e+06 255968 618332. 2139.56 1.62 0.18205 0.160753 25102 150614 -1 2712 18 1256 3540 198662 47419 7.38302 7.38302 -165.88 -7.38302 0 0 787024. 2723.27 0.03 0.05 0.08 -1 -1 0.03 0.0210165 0.0191077 127 173 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_088.v common 3.79 vpr 63.94 MiB -1 -1 0.18 18824 15 0.39 -1 -1 32460 -1 -1 30 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65476 32 32 334 366 1 249 94 17 17 289 -1 unnamed_device 25.1 MiB 0.67 2997 1457 6271 1114 4893 264 63.9 MiB 0.05 0.00 11.8769 9.02668 -192.137 -9.02668 9.02668 0.24 0.000537557 0.000493455 0.0195073 0.0180239 -1 -1 -1 -1 36 4225 32 6.79088e+06 404160 648988. 2245.63 1.21 0.163429 0.145622 25390 158009 -1 3413 20 1762 4569 244133 58653 8.26721 8.26721 -187.065 -8.26721 0 0 828058. 2865.25 0.03 0.08 0.09 -1 -1 0.03 0.0324314 0.0294256 173 240 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_089.v common 4.34 vpr 64.31 MiB -1 -1 0.14 18052 11 0.14 -1 -1 32388 -1 -1 18 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65852 32 32 220 252 1 162 82 17 17 289 -1 unnamed_device 24.5 MiB 0.43 1851 1048 4710 962 3444 304 64.3 MiB 0.03 0.00 7.41857 6.65913 -141.007 -6.65913 6.65913 0.25 0.000338577 0.000308878 0.011031 0.0101382 -1 -1 -1 -1 30 2490 34 6.79088e+06 242496 556674. 1926.21 2.37 0.132925 0.116936 24526 138013 -1 2104 20 918 2474 125119 29697 5.77089 5.77089 -135.604 -5.77089 0 0 706193. 2443.58 0.03 0.05 0.08 -1 -1 0.03 0.0227745 0.020516 99 126 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_090.v common 3.59 vpr 64.79 MiB -1 -1 0.14 18056 12 0.16 -1 -1 31716 -1 -1 28 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66344 31 32 244 276 1 190 91 17 17 289 -1 unnamed_device 25.2 MiB 0.38 2514 1243 8251 2100 5415 736 64.8 MiB 0.07 0.00 8.41327 6.64151 -151.522 -6.64151 6.64151 0.36 0.000384324 0.000351749 0.030995 0.0286946 -1 -1 -1 -1 36 3288 38 6.79088e+06 377216 648988. 2245.63 1.31 0.171017 0.151396 25390 158009 -1 2786 19 1310 3450 219229 55840 5.77084 5.77084 -147.31 -5.77084 0 0 828058. 2865.25 0.04 0.09 0.15 -1 -1 0.04 0.0326963 0.0295814 120 153 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_091.v common 4.25 vpr 64.96 MiB -1 -1 0.17 18440 12 0.26 -1 -1 32432 -1 -1 20 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66520 32 32 300 332 1 219 84 17 17 289 -1 unnamed_device 25.2 MiB 0.58 3008 1362 5208 1021 3853 334 65.0 MiB 0.04 0.00 9.33179 7.30279 -161.797 -7.30279 7.30279 0.24 0.000490485 0.000449616 0.0170101 0.0156458 -1 -1 -1 -1 32 4017 47 6.79088e+06 269440 586450. 2029.24 1.72 0.181491 0.159594 24814 144142 -1 3222 25 1827 5666 393170 111302 6.49473 6.49473 -154.751 -6.49473 0 0 744469. 2576.02 0.05 0.17 0.14 -1 -1 0.05 0.0525904 0.0474923 147 206 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_092.v common 4.94 vpr 64.30 MiB -1 -1 0.17 18440 12 0.21 -1 -1 32704 -1 -1 23 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65840 32 32 271 303 1 207 87 17 17 289 -1 unnamed_device 24.9 MiB 0.35 2518 1359 4887 914 3740 233 64.3 MiB 0.04 0.00 9.30843 7.32413 -157.509 -7.32413 7.32413 0.24 0.000422354 0.000385538 0.0141421 0.0129613 -1 -1 -1 -1 42 3546 34 6.79088e+06 309856 744469. 2576.02 2.98 0.184685 0.162721 26542 182613 -1 3075 20 1631 5150 317078 68780 6.32248 6.32248 -151.947 -6.32248 0 0 949917. 3286.91 0.03 0.07 0.10 -1 -1 0.03 0.0225575 0.0203783 135 177 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_093.v common 4.66 vpr 65.20 MiB -1 -1 0.18 18820 14 0.41 -1 -1 32516 -1 -1 25 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66760 32 32 327 359 1 232 89 17 17 289 -1 unnamed_device 25.2 MiB 0.91 2902 1486 9197 2044 6238 915 65.2 MiB 0.07 0.00 11.0044 9.05824 -184.444 -9.05824 9.05824 0.24 0.000531234 0.000486752 0.0317284 0.0292755 -1 -1 -1 -1 36 4352 44 6.79088e+06 336800 648988. 2245.63 1.82 0.192183 0.171116 25390 158009 -1 3470 21 2095 6448 340912 77405 7.89475 7.89475 -180.096 -7.89475 0 0 828058. 2865.25 0.03 0.09 0.09 -1 -1 0.03 0.0368876 0.0334178 170 233 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_094.v common 5.07 vpr 64.79 MiB -1 -1 0.16 18052 12 0.18 -1 -1 32312 -1 -1 21 30 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66344 30 32 246 278 1 190 83 17 17 289 -1 unnamed_device 25.2 MiB 0.38 2872 1225 9443 2668 5974 801 64.8 MiB 0.07 0.00 11.0773 8.04235 -151.9 -8.04235 8.04235 0.26 0.000906454 0.000843157 0.0312125 0.0289054 -1 -1 -1 -1 30 3247 21 6.79088e+06 282912 556674. 1926.21 3.09 0.153647 0.13626 24526 138013 -1 2617 19 1174 3385 171181 40726 7.03513 7.03513 -147.434 -7.03513 0 0 706193. 2443.58 0.03 0.05 0.07 -1 -1 0.03 0.0208927 0.0189654 123 158 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_095.v common 3.30 vpr 64.29 MiB -1 -1 0.14 17924 11 0.16 -1 -1 32200 -1 -1 21 27 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65828 27 32 219 251 1 158 80 17 17 289 -1 unnamed_device 24.5 MiB 0.66 2254 914 10228 3057 5550 1621 64.3 MiB 0.06 0.00 9.28609 7.11012 -129.104 -7.11012 7.11012 0.26 0.000834625 0.000778535 0.0290409 0.0268197 -1 -1 -1 -1 32 2363 20 6.79088e+06 282912 586450. 2029.24 1.10 0.132738 0.117693 24814 144142 -1 2014 16 860 2297 118764 28995 6.41202 6.41202 -124.201 -6.41202 0 0 744469. 2576.02 0.03 0.04 0.08 -1 -1 0.03 0.018655 0.0167893 106 140 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_096.v common 12.15 vpr 64.09 MiB -1 -1 0.34 19208 13 0.38 -1 -1 32612 -1 -1 29 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65628 32 32 380 412 1 267 93 17 17 289 -1 unnamed_device 25.2 MiB 0.96 3799 1688 9333 2238 6298 797 64.1 MiB 0.07 0.00 9.85648 8.03891 -164.154 -8.03891 8.03891 0.24 0.000570832 0.000522627 0.0301749 0.0276234 -1 -1 -1 -1 36 4720 50 6.79088e+06 390688 648988. 2245.63 9.12 0.333255 0.295789 25390 158009 -1 4022 18 1939 5882 349528 81642 7.24643 7.24643 -163.259 -7.24643 0 0 828058. 2865.25 0.03 0.09 0.09 -1 -1 0.03 0.0332537 0.0305258 194 286 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_097.v common 5.05 vpr 64.26 MiB -1 -1 0.18 18440 14 0.23 -1 -1 32352 -1 -1 21 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65800 31 32 277 309 1 194 84 17 17 289 -1 unnamed_device 25.2 MiB 0.43 2825 1259 8502 2170 5586 746 64.3 MiB 0.05 0.00 10.5434 8.40299 -170.106 -8.40299 8.40299 0.26 0.000438649 0.000401614 0.0240127 0.0220456 -1 -1 -1 -1 28 3607 48 6.79088e+06 282912 531479. 1839.03 2.70 0.212266 0.187267 23950 126010 -1 2799 19 1355 3498 182428 44663 7.5622 7.5622 -166.161 -7.5622 0 0 648988. 2245.63 0.03 0.08 0.07 -1 -1 0.03 0.0331487 0.0300722 135 186 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_098.v common 4.33 vpr 64.66 MiB -1 -1 0.27 18044 12 0.14 -1 -1 32196 -1 -1 24 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66212 32 32 229 261 1 173 88 17 17 289 -1 unnamed_device 24.9 MiB 0.47 2146 1148 7498 1703 4699 1096 64.7 MiB 0.04 0.00 9.61147 7.37908 -161.709 -7.37908 7.37908 0.25 0.000363041 0.000331373 0.0171253 0.015721 -1 -1 -1 -1 30 2639 20 6.79088e+06 323328 556674. 1926.21 2.24 0.140925 0.124252 24526 138013 -1 2241 16 933 2468 118642 29008 6.35367 6.35367 -152.496 -6.35367 0 0 706193. 2443.58 0.03 0.05 0.07 -1 -1 0.03 0.0215127 0.019597 114 135 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_099.v common 4.34 vpr 64.91 MiB -1 -1 0.18 18056 13 0.26 -1 -1 32468 -1 -1 22 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66464 32 32 263 295 1 189 86 17 17 289 -1 unnamed_device 24.9 MiB 0.87 2477 1198 6323 1455 4634 234 64.9 MiB 0.04 0.00 9.94771 7.95285 -163.297 -7.95285 7.95285 0.25 0.000419039 0.000383418 0.0192272 0.0177068 -1 -1 -1 -1 30 3038 31 6.79088e+06 296384 556674. 1926.21 1.80 0.189632 0.166804 24526 138013 -1 2547 17 1163 3392 164677 39638 6.92451 6.92451 -155.538 -6.92451 0 0 706193. 2443.58 0.03 0.05 0.07 -1 -1 0.03 0.0206129 0.0187785 132 169 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_100.v common 5.11 vpr 64.46 MiB -1 -1 0.18 18824 13 0.30 -1 -1 32440 -1 -1 26 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66012 31 32 321 353 1 243 89 17 17 289 -1 unnamed_device 25.5 MiB 0.47 2996 1555 6425 1253 4749 423 64.5 MiB 0.08 0.00 9.44492 8.03594 -170.227 -8.03594 8.03594 0.46 0.00109351 0.000985855 0.037958 0.0348172 -1 -1 -1 -1 36 4372 49 6.79088e+06 350272 648988. 2245.63 2.33 0.288027 0.256154 25390 158009 -1 3542 17 1701 4822 272035 63597 6.79572 6.79572 -158.919 -6.79572 0 0 828058. 2865.25 0.03 0.06 0.08 -1 -1 0.03 0.0243842 0.0223031 162 230 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_101.v common 4.27 vpr 64.99 MiB -1 -1 0.16 18440 11 0.22 -1 -1 32436 -1 -1 25 30 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66552 30 32 287 319 1 199 87 17 17 289 -1 unnamed_device 25.2 MiB 0.86 2711 1222 7191 1645 4976 570 65.0 MiB 0.05 0.00 9.60741 7.06412 -137.725 -7.06412 7.06412 0.24 0.000443175 0.000405281 0.0197344 0.0181089 -1 -1 -1 -1 40 2876 29 6.79088e+06 336800 706193. 2443.58 1.75 0.202725 0.178825 26254 175826 -1 2606 19 1353 4351 224230 52925 5.91852 5.91852 -128.55 -5.91852 0 0 926341. 3205.33 0.03 0.06 0.09 -1 -1 0.03 0.022852 0.0207243 143 199 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_102.v common 4.55 vpr 64.41 MiB -1 -1 0.27 18440 15 0.33 -1 -1 32440 -1 -1 22 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65952 32 32 296 328 1 214 86 17 17 289 -1 unnamed_device 25.2 MiB 0.59 3096 1319 6134 1277 4632 225 64.4 MiB 0.04 0.00 11.1915 8.22013 -174.204 -8.22013 8.22013 0.24 0.000481606 0.000431524 0.0187261 0.0171522 -1 -1 -1 -1 34 4119 45 6.79088e+06 296384 618332. 2139.56 2.03 0.178009 0.157929 25102 150614 -1 3072 18 1428 4203 233689 55761 7.32848 7.32848 -170.707 -7.32848 0 0 787024. 2723.27 0.05 0.08 0.14 -1 -1 0.05 0.0306779 0.0281631 148 202 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_103.v common 4.64 vpr 64.37 MiB -1 -1 0.25 18820 13 0.37 -1 -1 32476 -1 -1 21 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65916 32 32 285 317 1 219 85 17 17 289 -1 unnamed_device 25.2 MiB 0.46 2930 1425 7525 1768 5171 586 64.4 MiB 0.05 0.00 10.4559 8.30966 -180.808 -8.30966 8.30966 0.25 0.000502423 0.000463715 0.0224499 0.0206809 -1 -1 -1 -1 36 3708 27 6.79088e+06 282912 648988. 2245.63 2.23 0.211147 0.187347 25390 158009 -1 3210 17 1367 3795 216510 50749 7.33966 7.33966 -172.69 -7.33966 0 0 828058. 2865.25 0.03 0.06 0.08 -1 -1 0.03 0.0240039 0.0219196 145 191 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_104.v common 3.64 vpr 64.62 MiB -1 -1 0.14 18052 12 0.17 -1 -1 32272 -1 -1 24 29 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66168 29 32 239 271 1 185 85 17 17 289 -1 unnamed_device 25.2 MiB 0.48 2084 1062 6595 1474 4636 485 64.6 MiB 0.04 0.00 10.0683 7.87572 -156.471 -7.87572 7.87572 0.40 0.000377318 0.000346308 0.0159074 0.0146289 -1 -1 -1 -1 30 2731 21 6.79088e+06 323328 556674. 1926.21 1.31 0.146981 0.129805 24526 138013 -1 2294 18 1137 2909 136931 33931 6.58776 6.58776 -145.673 -6.58776 0 0 706193. 2443.58 0.03 0.04 0.07 -1 -1 0.03 0.0182257 0.0165595 115 154 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_105.v common 2.40 vpr 64.36 MiB -1 -1 0.14 18056 11 0.13 -1 -1 32284 -1 -1 18 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65908 32 32 235 267 1 172 82 17 17 289 -1 unnamed_device 24.5 MiB 0.32 2050 1060 6668 1430 4144 1094 64.4 MiB 0.04 0.00 7.79354 6.47149 -144.071 -6.47149 6.47149 0.24 0.000355213 0.000324341 0.0157647 0.0144757 -1 -1 -1 -1 30 2916 41 6.79088e+06 242496 556674. 1926.21 0.65 0.0815988 0.0723604 24526 138013 -1 2303 20 1233 3012 153485 37395 5.85694 5.85694 -146.237 -5.85694 0 0 706193. 2443.58 0.03 0.05 0.08 -1 -1 0.03 0.018489 0.0167165 105 141 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_106.v common 5.00 vpr 64.54 MiB -1 -1 0.23 18440 13 0.37 -1 -1 32424 -1 -1 22 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66084 31 32 294 326 1 211 85 17 17 289 -1 unnamed_device 24.9 MiB 0.70 2712 1384 8455 2000 5617 838 64.5 MiB 0.06 0.00 10.7696 8.27424 -162.337 -8.27424 8.27424 0.24 0.000474087 0.00042731 0.0248337 0.0227038 -1 -1 -1 -1 44 3185 20 6.79088e+06 296384 787024. 2723.27 2.15 0.239145 0.211054 27118 194962 -1 2809 17 1208 3870 211069 47834 7.26465 7.26465 -155.018 -7.26465 0 0 997811. 3452.63 0.04 0.06 0.11 -1 -1 0.04 0.0260052 0.0238743 146 203 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_107.v common 4.01 vpr 64.32 MiB -1 -1 0.15 18056 10 0.23 -1 -1 32416 -1 -1 20 29 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65860 29 32 219 251 1 164 81 17 17 289 -1 unnamed_device 24.9 MiB 0.41 2040 1050 9181 2635 5082 1464 64.3 MiB 0.05 0.00 8.60248 6.23968 -127.611 -6.23968 6.23968 0.25 0.000341543 0.000311725 0.020299 0.0185793 -1 -1 -1 -1 30 2491 49 6.79088e+06 269440 556674. 1926.21 1.98 0.183649 0.161612 24526 138013 -1 2107 16 952 2430 121433 29267 5.32762 5.32762 -123.296 -5.32762 0 0 706193. 2443.58 0.03 0.04 0.10 -1 -1 0.03 0.0157135 0.0142992 102 134 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_108.v common 3.06 vpr 64.46 MiB -1 -1 0.27 18052 14 0.21 -1 -1 32268 -1 -1 20 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66008 32 32 239 271 1 181 84 17 17 289 -1 unnamed_device 24.9 MiB 0.73 2315 1098 11430 3365 6228 1837 64.5 MiB 0.06 0.00 10.7127 7.63704 -166.154 -7.63704 7.63704 0.24 0.000386695 0.000354045 0.0270002 0.0247053 -1 -1 -1 -1 30 3052 25 6.79088e+06 269440 556674. 1926.21 0.65 0.0895294 0.0802576 24526 138013 -1 2455 17 1129 3039 153350 36717 6.70624 6.70624 -158.346 -6.70624 0 0 706193. 2443.58 0.03 0.04 0.07 -1 -1 0.03 0.0180472 0.0163852 109 145 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_109.v common 3.80 vpr 64.23 MiB -1 -1 0.19 18440 13 0.30 -1 -1 31856 -1 -1 23 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65772 31 32 266 298 1 201 86 17 17 289 -1 unnamed_device 24.9 MiB 0.22 2581 1245 12938 3565 7972 1401 64.2 MiB 0.07 0.00 9.50492 7.70092 -164.904 -7.70092 7.70092 0.25 0.000426903 0.000390675 0.0317082 0.0290071 -1 -1 -1 -1 40 2648 20 6.79088e+06 309856 706193. 2443.58 1.70 0.179053 0.1576 26254 175826 -1 2643 32 1411 4011 312466 112192 6.87412 6.87412 -157.009 -6.87412 0 0 926341. 3205.33 0.03 0.10 0.09 -1 -1 0.03 0.0302607 0.0270951 131 175 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_110.v common 4.15 vpr 64.27 MiB -1 -1 0.15 18056 12 0.13 -1 -1 32216 -1 -1 20 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65816 31 32 225 257 1 170 83 17 17 289 -1 unnamed_device 24.9 MiB 0.49 2115 1069 8363 2595 4472 1296 64.3 MiB 0.04 0.00 7.74408 6.38969 -140.212 -6.38969 6.38969 0.35 0.000345596 0.000315547 0.018183 0.0166542 -1 -1 -1 -1 34 2730 27 6.79088e+06 269440 618332. 2139.56 1.95 0.172862 0.151998 25102 150614 -1 2386 18 1076 2987 160528 38621 5.77854 5.77854 -138.465 -5.77854 0 0 787024. 2723.27 0.03 0.04 0.08 -1 -1 0.03 0.0168124 0.0152225 103 134 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_111.v common 7.51 vpr 64.32 MiB -1 -1 0.17 18296 12 0.18 -1 -1 33036 -1 -1 24 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65868 32 32 288 320 1 203 88 17 17 289 -1 unnamed_device 25.5 MiB 0.51 3004 1280 11788 3296 6900 1592 64.3 MiB 0.07 0.00 10.2613 7.00869 -152.842 -7.00869 7.00869 0.27 0.000438351 0.000399908 0.031924 0.029294 -1 -1 -1 -1 28 3899 44 6.79088e+06 323328 531479. 1839.03 5.38 0.219573 0.193871 23950 126010 -1 2955 20 1664 4630 280626 64993 6.12648 6.12648 -151.532 -6.12648 0 0 648988. 2245.63 0.02 0.07 0.07 -1 -1 0.02 0.0235006 0.0210914 135 194 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_112.v common 6.17 vpr 64.38 MiB -1 -1 0.19 18828 13 0.26 -1 -1 32432 -1 -1 22 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65924 31 32 282 314 1 210 85 17 17 289 -1 unnamed_device 25.2 MiB 0.59 2791 1262 11989 3047 7402 1540 64.4 MiB 0.09 0.00 9.30843 7.42893 -161.431 -7.42893 7.42893 0.28 0.000974651 0.000901685 0.043486 0.040061 -1 -1 -1 -1 30 3449 32 6.79088e+06 296384 556674. 1926.21 3.72 0.235374 0.209057 24526 138013 -1 2705 19 1433 4023 185362 45909 6.48354 6.48354 -153.414 -6.48354 0 0 706193. 2443.58 0.04 0.09 0.09 -1 -1 0.04 0.0421007 0.0381483 146 191 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_113.v common 3.75 vpr 64.15 MiB -1 -1 0.16 18048 11 0.15 -1 -1 32388 -1 -1 22 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65692 32 32 233 265 1 180 86 17 17 289 -1 unnamed_device 24.5 MiB 0.41 2072 1111 7835 1720 5449 666 64.2 MiB 0.05 0.00 7.45434 6.20134 -144.716 -6.20134 6.20134 0.32 0.000830303 0.000790451 0.0195382 0.0179662 -1 -1 -1 -1 36 2970 27 6.79088e+06 296384 648988. 2245.63 1.69 0.172648 0.151291 25390 158009 -1 2502 29 1264 3459 234056 74739 5.52096 5.52096 -139.628 -5.52096 0 0 828058. 2865.25 0.03 0.07 0.08 -1 -1 0.03 0.0240282 0.0214863 110 139 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_114.v common 5.62 vpr 64.79 MiB -1 -1 0.17 18056 13 0.24 -1 -1 32176 -1 -1 17 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66348 32 32 254 286 1 184 81 17 17 289 -1 unnamed_device 24.9 MiB 1.26 2540 1123 6906 1729 4876 301 64.8 MiB 0.04 0.00 10.5313 7.62596 -162.162 -7.62596 7.62596 0.40 0.000407825 0.000374245 0.018867 0.0173648 -1 -1 -1 -1 38 2722 40 6.79088e+06 229024 678818. 2348.85 2.19 0.276797 0.244307 25966 169698 -1 2249 15 995 2896 146488 34789 6.54512 6.54512 -154.218 -6.54512 0 0 902133. 3121.57 0.05 0.07 0.16 -1 -1 0.05 0.0297021 0.0269232 116 160 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_115.v common 3.89 vpr 63.58 MiB -1 -1 0.16 18436 13 0.24 -1 -1 32396 -1 -1 21 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65108 32 32 285 317 1 212 85 17 17 289 -1 unnamed_device 24.9 MiB 0.63 2626 1379 8083 1955 5557 571 63.6 MiB 0.07 0.00 9.80963 7.47873 -167.813 -7.47873 7.47873 0.25 0.000461112 0.000414019 0.0308002 0.0282531 -1 -1 -1 -1 34 3779 35 6.79088e+06 282912 618332. 2139.56 1.52 0.160694 0.142529 25102 150614 -1 3127 35 2346 6906 463431 130783 6.64799 6.64799 -160.553 -6.64799 0 0 787024. 2723.27 0.03 0.13 0.08 -1 -1 0.03 0.0366382 0.0328335 141 191 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_116.v common 3.53 vpr 64.07 MiB -1 -1 0.16 18436 11 0.17 -1 -1 32420 -1 -1 23 29 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65612 29 32 243 275 1 183 84 17 17 289 -1 unnamed_device 25.0 MiB 0.49 2499 1173 5208 1126 3631 451 64.1 MiB 0.03 0.00 8.34934 6.48043 -132.63 -6.48043 6.48043 0.25 0.000388058 0.000355693 0.0135592 0.0124786 -1 -1 -1 -1 36 2852 31 6.79088e+06 309856 648988. 2245.63 1.48 0.140205 0.122902 25390 158009 -1 2465 15 967 2919 169443 38934 5.75934 5.75934 -130.721 -5.75934 0 0 828058. 2865.25 0.03 0.05 0.08 -1 -1 0.03 0.0215183 0.0194205 118 158 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_117.v common 7.21 vpr 64.50 MiB -1 -1 0.24 18824 14 0.29 -1 -1 33064 -1 -1 25 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66048 32 32 318 350 1 238 89 17 17 289 -1 unnamed_device 25.6 MiB 0.50 3185 1427 9989 2338 6256 1395 64.5 MiB 0.07 0.00 11.6109 8.7465 -186.455 -8.7465 8.7465 0.33 0.000521333 0.000476424 0.0308609 0.0283334 -1 -1 -1 -1 30 4195 34 6.79088e+06 336800 556674. 1926.21 4.77 0.280847 0.2493 24526 138013 -1 3114 19 1654 4325 208709 51804 7.58672 7.58672 -175.163 -7.58672 0 0 706193. 2443.58 0.03 0.06 0.08 -1 -1 0.03 0.0266528 0.0243323 164 224 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_118.v common 3.55 vpr 64.24 MiB -1 -1 0.14 18052 12 0.13 -1 -1 32232 -1 -1 21 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65780 31 32 222 254 1 182 84 17 17 289 -1 unnamed_device 24.9 MiB 0.32 2515 1195 7953 1918 5225 810 64.2 MiB 0.10 0.00 9.02976 6.57733 -149.186 -6.57733 6.57733 0.27 0.00096 0.00088875 0.0449597 0.0417068 -1 -1 -1 -1 40 2450 19 6.79088e+06 282912 706193. 2443.58 1.51 0.16322 0.144706 26254 175826 -1 2277 19 1016 2613 138232 32332 5.70014 5.70014 -139.839 -5.70014 0 0 926341. 3205.33 0.03 0.04 0.15 -1 -1 0.03 0.0177558 0.0160847 105 131 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_119.v common 4.23 vpr 64.32 MiB -1 -1 0.31 18824 13 0.26 -1 -1 33012 -1 -1 23 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65864 32 32 282 314 1 202 87 17 17 289 -1 unnamed_device 25.2 MiB 0.57 2586 1294 11223 2709 7284 1230 64.3 MiB 0.07 0.00 9.80636 7.81522 -163.002 -7.81522 7.81522 0.24 0.000459996 0.000421553 0.0298052 0.027397 -1 -1 -1 -1 32 3772 44 6.79088e+06 309856 586450. 2029.24 1.80 0.216101 0.190564 24814 144142 -1 3139 27 1415 4088 291600 96304 6.80686 6.80686 -159.585 -6.80686 0 0 744469. 2576.02 0.03 0.10 0.08 -1 -1 0.03 0.0326913 0.0294747 141 188 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_120.v common 3.43 vpr 64.70 MiB -1 -1 0.16 18428 13 0.16 -1 -1 32224 -1 -1 23 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66252 32 32 238 270 1 179 87 17 17 289 -1 unnamed_device 24.9 MiB 0.33 2213 1145 7959 1748 5469 742 64.7 MiB 0.06 0.00 9.57282 7.74786 -170.737 -7.74786 7.74786 0.30 0.000551588 0.000502718 0.0268101 0.0244864 -1 -1 -1 -1 32 2899 40 6.79088e+06 309856 586450. 2029.24 1.46 0.179622 0.159166 24814 144142 -1 2346 15 990 2455 133104 32316 6.67386 6.67386 -160.516 -6.67386 0 0 744469. 2576.02 0.04 0.05 0.10 -1 -1 0.04 0.0230009 0.0211562 112 144 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_121.v common 3.57 vpr 64.93 MiB -1 -1 0.17 18052 12 0.23 -1 -1 32288 -1 -1 21 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66488 32 32 269 301 1 193 85 17 17 289 -1 unnamed_device 24.9 MiB 0.83 2838 1258 5665 1169 4247 249 64.9 MiB 0.04 0.00 10.2294 7.48857 -162.185 -7.48857 7.48857 0.27 0.000426859 0.00038986 0.0193522 0.0178721 -1 -1 -1 -1 32 3332 43 6.79088e+06 282912 586450. 2029.24 0.72 0.118284 0.105925 24814 144142 -1 2752 17 1274 3805 210568 50438 6.37282 6.37282 -153.729 -6.37282 0 0 744469. 2576.02 0.04 0.12 0.08 -1 -1 0.04 0.0501828 0.0454932 132 175 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_122.v common 6.84 vpr 64.75 MiB -1 -1 0.20 19208 15 0.56 -1 -1 32720 -1 -1 25 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66300 32 32 350 382 1 251 89 17 17 289 -1 unnamed_device 25.6 MiB 1.00 3569 1573 10583 2766 6384 1433 64.7 MiB 0.09 0.00 11.6887 9.43481 -197.257 -9.43481 9.43481 0.24 0.000575225 0.00052701 0.0405772 0.0372963 -1 -1 -1 -1 48 3820 22 6.79088e+06 336800 865456. 2994.66 3.48 0.393652 0.351941 27694 206865 -1 3410 19 1843 6055 331838 74371 8.18111 8.18111 -182.275 -8.18111 0 0 1.05005e+06 3633.38 0.04 0.08 0.11 -1 -1 0.04 0.0308149 0.0280731 184 256 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_123.v common 2.87 vpr 64.00 MiB -1 -1 0.15 17668 10 0.10 -1 -1 32064 -1 -1 13 30 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65540 30 32 174 206 1 132 75 17 17 289 -1 unnamed_device 24.3 MiB 0.27 1704 689 6079 1358 4541 180 64.0 MiB 0.03 0.00 5.85167 5.06685 -115.513 -5.06685 5.06685 0.25 0.000272135 0.000249038 0.0120598 0.0110675 -1 -1 -1 -1 34 1844 23 6.79088e+06 175136 618332. 2139.56 1.13 0.0922076 0.0806298 25102 150614 -1 1531 16 723 1671 81394 21367 4.46811 4.46811 -112.797 -4.46811 0 0 787024. 2723.27 0.03 0.03 0.08 -1 -1 0.03 0.0119656 0.0108259 66 86 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_124.v common 4.10 vpr 64.34 MiB -1 -1 0.15 18056 13 0.16 -1 -1 32248 -1 -1 21 30 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65880 30 32 228 260 1 170 83 17 17 289 -1 unnamed_device 24.6 MiB 0.72 2214 1013 9083 2607 5166 1310 64.3 MiB 0.05 0.00 9.66643 7.93028 -158.567 -7.93028 7.93028 0.35 0.000357607 0.000326665 0.0206406 0.0189224 -1 -1 -1 -1 34 2709 33 6.79088e+06 282912 618332. 2139.56 1.47 0.155242 0.1373 25102 150614 -1 2341 27 1048 2773 214239 76852 6.87418 6.87418 -150.154 -6.87418 0 0 787024. 2723.27 0.03 0.07 0.08 -1 -1 0.03 0.0227765 0.0204907 108 140 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_125.v common 4.29 vpr 64.83 MiB -1 -1 0.17 18292 12 0.18 -1 -1 32276 -1 -1 23 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66388 32 32 264 296 1 193 87 17 17 289 -1 unnamed_device 25.2 MiB 0.53 2664 1204 6039 1295 4393 351 64.8 MiB 0.06 0.00 9.33663 7.42897 -167.088 -7.42897 7.42897 0.45 0.000748074 0.000682446 0.0272169 0.0249518 -1 -1 -1 -1 32 3186 39 6.79088e+06 309856 586450. 2029.24 1.61 0.19246 0.169113 24814 144142 -1 2600 14 1082 2781 153438 36660 6.37287 6.37287 -156.925 -6.37287 0 0 744469. 2576.02 0.05 0.07 0.14 -1 -1 0.05 0.032197 0.0295269 122 170 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_126.v common 2.53 vpr 64.12 MiB -1 -1 0.15 17672 9 0.11 -1 -1 31992 -1 -1 21 25 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65660 25 32 183 215 1 134 78 17 17 289 -1 unnamed_device 24.5 MiB 0.35 1513 648 7216 2007 4704 505 64.1 MiB 0.05 0.00 5.889 5.1159 -95.0834 -5.1159 5.1159 0.26 0.000290205 0.000265211 0.026009 0.0242288 -1 -1 -1 -1 30 1972 23 6.79088e+06 282912 556674. 1926.21 0.76 0.077457 0.0696231 24526 138013 -1 1532 18 764 2122 115511 30012 4.5968 4.5968 -95.8798 -4.5968 0 0 706193. 2443.58 0.03 0.04 0.07 -1 -1 0.03 0.0140883 0.0127257 88 110 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_127.v common 4.22 vpr 63.79 MiB -1 -1 0.18 18436 12 0.24 -1 -1 32436 -1 -1 23 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65324 32 32 300 332 1 224 87 17 17 289 -1 unnamed_device 24.8 MiB 0.34 3045 1374 8343 1969 5805 569 63.8 MiB 0.06 0.00 9.97086 7.70352 -168.911 -7.70352 7.70352 0.25 0.000460963 0.000421707 0.0249877 0.0229274 -1 -1 -1 -1 38 3802 30 6.79088e+06 309856 678818. 2348.85 2.16 0.213639 0.188965 25966 169698 -1 3001 21 1702 4852 241275 56642 6.49817 6.49817 -159.124 -6.49817 0 0 902133. 3121.57 0.03 0.07 0.09 -1 -1 0.03 0.029603 0.0270055 149 206 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_128.v common 8.43 vpr 64.56 MiB -1 -1 0.18 18676 13 0.28 -1 -1 31596 -1 -1 26 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66108 31 32 290 322 1 214 89 17 17 289 -1 unnamed_device 24.9 MiB 0.67 2884 1321 10979 2886 6026 2067 64.6 MiB 0.06 0.00 10.7249 8.28064 -170.23 -8.28064 8.28064 0.24 0.000458984 0.000419435 0.0290037 0.0265888 -1 -1 -1 -1 30 4442 39 6.79088e+06 350272 556674. 1926.21 5.83 0.209846 0.18645 24526 138013 -1 3137 25 1751 5411 317221 91806 6.76345 6.76345 -158.739 -6.76345 0 0 706193. 2443.58 0.04 0.14 0.11 -1 -1 0.04 0.0497607 0.0449491 152 199 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_001.v common 5.80 vpr 65.13 MiB -1 -1 0.12 18056 1 0.03 -1 -1 29804 -1 -1 29 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66692 32 32 354 285 1 207 93 17 17 289 -1 unnamed_device 25.6 MiB 2.12 2779 1278 16893 5344 9435 2114 65.1 MiB 0.10 0.00 6.98757 5.68891 -164.239 -5.68891 5.68891 0.25 0.000338691 0.000310099 0.0300408 0.0274606 -1 -1 -1 -1 28 3219 28 6.87369e+06 405241 531479. 1839.03 2.22 0.157807 0.138497 24610 126494 -1 2606 22 1750 2807 239588 55064 4.64695 4.64695 -157.22 -4.64695 0 0 648988. 2245.63 0.04 0.10 0.07 -1 -1 0.04 0.0310265 0.0277948 140 50 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_002.v common 4.10 vpr 65.14 MiB -1 -1 0.15 18060 1 0.04 -1 -1 29588 -1 -1 26 30 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66700 30 32 363 293 1 200 88 17 17 289 -1 unnamed_device 25.2 MiB 2.26 2339 1135 13153 3755 7866 1532 65.1 MiB 0.07 0.00 5.6483 4.6679 -138.364 -4.6679 4.6679 0.25 0.000376387 0.000339735 0.0260552 0.0238597 -1 -1 -1 -1 32 2500 24 6.87369e+06 363320 586450. 2029.24 0.40 0.0720625 0.0638607 25474 144626 -1 2037 21 1653 2504 161353 39229 3.72316 3.72316 -133.558 -3.72316 0 0 744469. 2576.02 0.03 0.05 0.08 -1 -1 0.03 0.018555 0.0164825 138 63 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_003.v common 4.52 vpr 64.16 MiB -1 -1 0.11 18056 1 0.03 -1 -1 29804 -1 -1 21 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65700 32 32 299 247 1 190 85 17 17 289 -1 unnamed_device 24.8 MiB 1.92 2478 1094 14965 5159 7778 2028 64.2 MiB 0.08 0.00 5.41115 4.32745 -123.858 -4.32745 4.32745 0.26 0.00029771 0.000272503 0.0284356 0.0260371 -1 -1 -1 -1 32 2462 24 6.87369e+06 293451 586450. 2029.24 1.20 0.158071 0.138595 25474 144626 -1 1923 20 1108 1542 96591 24435 3.88596 3.88596 -121.789 -3.88596 0 0 744469. 2576.02 0.03 0.03 0.08 -1 -1 0.03 0.0144447 0.012843 118 29 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_004.v common 3.08 vpr 64.42 MiB -1 -1 0.12 18064 1 0.04 -1 -1 29732 -1 -1 29 29 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65968 29 32 308 248 1 172 90 17 17 289 -1 unnamed_device 24.9 MiB 0.98 2239 851 8532 2063 5786 683 64.4 MiB 0.06 0.00 5.55862 4.64138 -122.547 -4.64138 4.64138 0.26 0.000307462 0.000282124 0.0164768 0.0151923 -1 -1 -1 -1 32 2081 20 6.87369e+06 405241 586450. 2029.24 0.62 0.0640387 0.056848 25474 144626 -1 1662 22 1299 2371 141246 35332 3.7854 3.7854 -114.536 -3.7854 0 0 744469. 2576.02 0.03 0.04 0.12 -1 -1 0.03 0.0152355 0.0135343 124 31 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_005.v common 3.79 vpr 65.01 MiB -1 -1 0.11 18060 1 0.03 -1 -1 29848 -1 -1 27 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66568 32 32 336 268 1 181 91 17 17 289 -1 unnamed_device 25.2 MiB 1.26 2579 1028 12331 3533 8153 645 65.0 MiB 0.07 0.00 5.58731 4.58138 -133.975 -4.58138 4.58138 0.25 0.00032842 0.00029842 0.0222301 0.0202265 -1 -1 -1 -1 34 2450 23 6.87369e+06 377294 618332. 2139.56 1.15 0.13371 0.116761 25762 151098 -1 2095 20 1351 2747 172345 43095 3.7624 3.7624 -131.476 -3.7624 0 0 787024. 2723.27 0.03 0.04 0.08 -1 -1 0.03 0.015162 0.0134923 132 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_006.v common 4.58 vpr 65.02 MiB -1 -1 0.14 18448 1 0.03 -1 -1 29780 -1 -1 32 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66584 32 32 366 295 1 189 96 17 17 289 -1 unnamed_device 25.6 MiB 1.47 2521 1045 10389 2533 6980 876 65.0 MiB 0.11 0.00 4.09707 3.40153 -116.732 -3.40153 3.40153 0.44 0.000632207 0.000578463 0.0332248 0.0304864 -1 -1 -1 -1 30 2392 22 6.87369e+06 447163 556674. 1926.21 1.17 0.156714 0.137506 25186 138497 -1 1903 19 1087 1810 94547 23615 2.90721 2.90721 -116.443 -2.90721 0 0 706193. 2443.58 0.03 0.04 0.11 -1 -1 0.03 0.0210304 0.0187682 138 58 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_007.v common 4.53 vpr 64.02 MiB -1 -1 0.11 17676 1 0.02 -1 -1 30528 -1 -1 21 27 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65552 27 32 259 221 1 141 80 17 17 289 -1 unnamed_device 24.9 MiB 2.14 1624 653 12120 3521 6665 1934 64.0 MiB 0.09 0.00 4.57488 3.84098 -103.196 -3.84098 3.84098 0.44 0.000480389 0.000439216 0.0357836 0.0328233 -1 -1 -1 -1 30 1522 20 6.87369e+06 293451 556674. 1926.21 0.59 0.0942957 0.0835691 25186 138497 -1 1227 20 894 1556 82299 20516 2.81866 2.81866 -96.2951 -2.81866 0 0 706193. 2443.58 0.03 0.03 0.07 -1 -1 0.03 0.0122356 0.0108607 97 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_008.v common 2.67 vpr 64.45 MiB -1 -1 0.19 17672 1 0.02 -1 -1 29744 -1 -1 33 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65992 31 32 271 219 1 164 96 17 17 289 -1 unnamed_device 24.9 MiB 0.68 2063 1017 12798 3323 7724 1751 64.4 MiB 0.06 0.00 4.11555 3.57969 -107.766 -3.57969 3.57969 0.31 0.000280987 0.000257318 0.0179421 0.0164247 -1 -1 -1 -1 32 2056 21 6.87369e+06 461137 586450. 2029.24 0.37 0.0598981 0.0528727 25474 144626 -1 1863 18 869 1628 98904 24067 2.70166 2.70166 -100.41 -2.70166 0 0 744469. 2576.02 0.03 0.03 0.08 -1 -1 0.03 0.0134961 0.0120734 119 4 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_009.v common 3.65 vpr 64.42 MiB -1 -1 0.13 18060 1 0.03 -1 -1 29768 -1 -1 20 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65968 31 32 317 271 1 175 83 17 17 289 -1 unnamed_device 24.9 MiB 1.75 2074 1069 13943 3853 8284 1806 64.4 MiB 0.08 0.00 4.71896 3.59126 -121.314 -3.59126 3.59126 0.26 0.000300172 0.000275204 0.0327664 0.030306 -1 -1 -1 -1 32 2340 23 6.87369e+06 279477 586450. 2029.24 0.41 0.0792721 0.0707055 25474 144626 -1 1994 22 1117 1624 122047 28163 2.96331 2.96331 -117.189 -2.96331 0 0 744469. 2576.02 0.05 0.07 0.11 -1 -1 0.05 0.0269692 0.0240161 110 64 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_010.v common 5.50 vpr 64.53 MiB -1 -1 0.11 17676 1 0.03 -1 -1 29756 -1 -1 17 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66080 32 32 298 248 1 162 81 17 17 289 -1 unnamed_device 25.1 MiB 2.97 1876 975 12681 3745 6747 2189 64.5 MiB 0.07 0.00 4.66108 3.90928 -131.51 -3.90928 3.90928 0.25 0.00030816 0.000282988 0.0298978 0.0278187 -1 -1 -1 -1 32 2119 22 6.87369e+06 237555 586450. 2029.24 1.04 0.113415 0.0997871 25474 144626 -1 1840 18 1127 1808 118643 28174 3.01796 3.01796 -123.051 -3.01796 0 0 744469. 2576.02 0.05 0.07 0.13 -1 -1 0.05 0.0243406 0.0217732 107 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_011.v common 4.92 vpr 64.09 MiB -1 -1 0.12 18060 1 0.03 -1 -1 29796 -1 -1 18 30 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65624 30 32 303 262 1 148 80 17 17 289 -1 unnamed_device 24.9 MiB 2.42 1634 783 11948 4947 6106 895 64.1 MiB 0.05 0.00 4.23198 3.85608 -112.834 -3.85608 3.85608 0.25 0.000296286 0.000271011 0.0217417 0.0199276 -1 -1 -1 -1 28 2153 36 6.87369e+06 251529 531479. 1839.03 1.18 0.116888 0.101806 24610 126494 -1 1655 22 1103 1769 168234 43143 3.01626 3.01626 -112.104 -3.01626 0 0 648988. 2245.63 0.02 0.05 0.07 -1 -1 0.02 0.0149998 0.0130769 99 63 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_012.v common 4.20 vpr 64.57 MiB -1 -1 0.11 17916 1 0.02 -1 -1 29732 -1 -1 18 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66116 32 32 276 237 1 171 82 17 17 289 -1 unnamed_device 24.8 MiB 1.84 2449 1027 12898 3673 7248 1977 64.6 MiB 0.07 0.00 4.7813 3.6715 -118.222 -3.6715 3.6715 0.25 0.000276217 0.00025305 0.0233421 0.0213867 -1 -1 -1 -1 32 2217 20 6.87369e+06 251529 586450. 2029.24 0.99 0.121125 0.105513 25474 144626 -1 1865 18 1024 1435 104148 24249 2.77201 2.77201 -111.424 -2.77201 0 0 744469. 2576.02 0.03 0.03 0.08 -1 -1 0.03 0.0124142 0.0110837 102 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_013.v common 6.02 vpr 64.56 MiB -1 -1 0.21 18060 1 0.04 -1 -1 29956 -1 -1 25 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66108 32 32 344 272 1 209 89 17 17 289 -1 unnamed_device 24.9 MiB 2.77 2479 1044 14147 4566 6974 2607 64.6 MiB 0.08 0.00 4.50463 4.21693 -134.575 -4.21693 4.21693 0.30 0.000329492 0.000301485 0.0259677 0.0238215 -1 -1 -1 -1 30 2730 27 6.87369e+06 349346 556674. 1926.21 1.60 0.132473 0.116447 25186 138497 -1 1999 23 1665 2538 150407 37762 3.15591 3.15591 -119.224 -3.15591 0 0 706193. 2443.58 0.03 0.05 0.07 -1 -1 0.03 0.0170917 0.0151913 139 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_014.v common 4.56 vpr 64.74 MiB -1 -1 0.12 18060 1 0.03 -1 -1 29804 -1 -1 31 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66292 32 32 363 295 1 181 95 17 17 289 -1 unnamed_device 25.4 MiB 2.01 2505 986 14999 4213 8032 2754 64.7 MiB 0.08 0.00 5.95652 4.79778 -139.915 -4.79778 4.79778 0.25 0.000334016 0.000305104 0.0255084 0.0233651 -1 -1 -1 -1 32 2454 25 6.87369e+06 433189 586450. 2029.24 1.07 0.12617 0.110398 25474 144626 -1 1945 22 1516 2402 150206 37108 3.67906 3.67906 -131.28 -3.67906 0 0 744469. 2576.02 0.03 0.04 0.08 -1 -1 0.03 0.0168173 0.0149209 133 61 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_015.v common 3.07 vpr 64.52 MiB -1 -1 0.15 17676 1 0.02 -1 -1 29868 -1 -1 21 29 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66068 29 32 248 215 1 142 82 17 17 289 -1 unnamed_device 24.9 MiB 1.40 1696 858 12008 3401 6739 1868 64.5 MiB 0.05 0.00 3.78522 3.15872 -98.3476 -3.15872 3.15872 0.24 0.00026521 0.000242593 0.018962 0.017341 -1 -1 -1 -1 30 1702 24 6.87369e+06 293451 556674. 1926.21 0.33 0.0533522 0.046956 25186 138497 -1 1492 19 693 1109 62576 15355 2.83796 2.83796 -99.8638 -2.83796 0 0 706193. 2443.58 0.03 0.03 0.07 -1 -1 0.03 0.0116954 0.0103542 94 27 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_016.v common 4.40 vpr 64.64 MiB -1 -1 0.19 18440 1 0.03 -1 -1 30168 -1 -1 24 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66196 32 32 370 297 1 191 88 17 17 289 -1 unnamed_device 25.2 MiB 1.60 2351 1142 14908 4316 8497 2095 64.6 MiB 0.09 0.00 4.2467 3.7455 -126.819 -3.7455 3.7455 0.30 0.000339557 0.000310568 0.0292364 0.026805 -1 -1 -1 -1 32 2773 22 6.87369e+06 335372 586450. 2029.24 1.07 0.140584 0.122861 25474 144626 -1 2188 19 1521 2634 169491 39910 2.97426 2.97426 -122.17 -2.97426 0 0 744469. 2576.02 0.03 0.04 0.08 -1 -1 0.03 0.0158553 0.0142194 135 58 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_017.v common 4.43 vpr 65.07 MiB -1 -1 0.12 18060 1 0.03 -1 -1 29816 -1 -1 23 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66636 32 32 338 269 1 204 87 17 17 289 -1 unnamed_device 25.2 MiB 2.59 2594 1106 15639 5153 7404 3082 65.1 MiB 0.09 0.00 5.08229 4.18625 -135.173 -4.18625 4.18625 0.24 0.00034271 0.000315029 0.0333882 0.030975 -1 -1 -1 -1 30 2654 25 6.87369e+06 321398 556674. 1926.21 0.39 0.0779122 0.0697554 25186 138497 -1 2046 22 1375 2028 125721 30050 3.0509 3.0509 -118.831 -3.0509 0 0 706193. 2443.58 0.03 0.04 0.10 -1 -1 0.03 0.0182401 0.0161792 136 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_018.v common 4.70 vpr 64.24 MiB -1 -1 0.12 18056 1 0.03 -1 -1 30116 -1 -1 29 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65784 32 32 323 276 1 156 93 17 17 289 -1 unnamed_device 24.7 MiB 2.05 2257 926 17103 5432 9461 2210 64.2 MiB 0.13 0.00 3.68501 2.85191 -105.908 -2.85191 2.85191 0.25 0.000847649 0.000787011 0.0450084 0.0415445 -1 -1 -1 -1 32 2002 22 6.87369e+06 405241 586450. 2029.24 1.10 0.152835 0.134719 25474 144626 -1 1661 17 1142 1944 120028 29235 2.07352 2.07352 -97.0447 -2.07352 0 0 744469. 2576.02 0.03 0.04 0.08 -1 -1 0.03 0.0127224 0.0113475 110 65 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_019.v common 2.78 vpr 63.89 MiB -1 -1 0.10 17528 1 0.02 -1 -1 29868 -1 -1 15 30 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65420 30 32 222 206 1 117 77 17 17 289 -1 unnamed_device 24.9 MiB 0.53 1506 681 11976 4667 6344 965 63.9 MiB 0.05 0.00 2.88898 2.40568 -84.2035 -2.40568 2.40568 0.35 0.000230573 0.000210344 0.0181275 0.0165527 -1 -1 -1 -1 34 1276 19 6.87369e+06 209608 618332. 2139.56 0.88 0.0736418 0.0640869 25762 151098 -1 1140 17 567 794 53109 12483 1.81522 1.81522 -81.3143 -1.81522 0 0 787024. 2723.27 0.03 0.02 0.08 -1 -1 0.03 0.00970028 0.00862224 71 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_020.v common 4.51 vpr 64.20 MiB -1 -1 0.12 18060 1 0.02 -1 -1 29796 -1 -1 21 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65744 31 32 291 243 1 178 84 17 17 289 -1 unnamed_device 24.9 MiB 2.19 2220 961 14358 5263 6619 2476 64.2 MiB 0.08 0.00 6.07113 5.06873 -151.735 -5.06873 5.06873 0.25 0.000358414 0.000333638 0.0281325 0.0259646 -1 -1 -1 -1 30 2126 21 6.87369e+06 293451 556674. 1926.21 0.97 0.119718 0.104846 25186 138497 -1 1726 21 1006 1462 90107 22146 3.69941 3.69941 -133.261 -3.69941 0 0 706193. 2443.58 0.03 0.03 0.07 -1 -1 0.03 0.0147264 0.013189 114 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_021.v common 3.28 vpr 64.35 MiB -1 -1 0.12 18056 1 0.03 -1 -1 29956 -1 -1 35 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65892 32 32 342 271 1 181 99 17 17 289 -1 unnamed_device 24.9 MiB 0.78 2270 1098 17427 5042 9940 2445 64.3 MiB 0.10 0.00 5.48809 4.18395 -137.714 -4.18395 4.18395 0.25 0.000328306 0.000300353 0.0313602 0.0288796 -1 -1 -1 -1 28 2563 20 6.87369e+06 489084 531479. 1839.03 1.15 0.149045 0.131128 24610 126494 -1 2239 21 1371 2094 147615 35637 4.016 4.016 -141.152 -4.016 0 0 648988. 2245.63 0.02 0.04 0.07 -1 -1 0.02 0.0159409 0.014208 137 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_022.v common 4.53 vpr 64.32 MiB -1 -1 0.13 18060 1 0.03 -1 -1 29916 -1 -1 23 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65868 32 32 372 300 1 206 87 17 17 289 -1 unnamed_device 24.9 MiB 1.91 2678 1260 15255 4028 9506 1721 64.3 MiB 0.10 0.00 5.24603 4.32815 -136.261 -4.32815 4.32815 0.25 0.000453897 0.000414665 0.0367843 0.0339982 -1 -1 -1 -1 30 2840 29 6.87369e+06 321398 556674. 1926.21 1.17 0.148596 0.131521 25186 138497 -1 2225 19 1315 2150 129279 30551 3.85476 3.85476 -132.586 -3.85476 0 0 706193. 2443.58 0.03 0.04 0.11 -1 -1 0.03 0.0156418 0.0140089 138 62 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_023.v common 3.40 vpr 64.21 MiB -1 -1 0.10 18060 1 0.02 -1 -1 29792 -1 -1 18 26 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65748 26 32 190 182 1 108 76 17 17 289 -1 unnamed_device 25.2 MiB 1.35 1317 566 8396 2777 4117 1502 64.2 MiB 0.04 0.00 3.13338 2.41583 -71.9717 -2.41583 2.41583 0.25 0.000203836 0.000182325 0.0145818 0.0134291 -1 -1 -1 -1 26 1284 21 6.87369e+06 251529 503264. 1741.40 0.75 0.0793038 0.0686608 24322 120374 -1 1126 22 717 1085 75720 19389 2.17212 2.17212 -75.7209 -2.17212 0 0 618332. 2139.56 0.02 0.03 0.06 -1 -1 0.02 0.0101223 0.00893365 67 30 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_024.v common 3.30 vpr 64.92 MiB -1 -1 0.12 17676 1 0.03 -1 -1 30152 -1 -1 24 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66476 32 32 285 227 1 169 88 17 17 289 -1 unnamed_device 24.9 MiB 0.94 2097 1049 14908 4450 8551 1907 64.9 MiB 0.08 0.00 5.2197 4.59222 -130.8 -4.59222 4.59222 0.24 0.000295354 0.0002705 0.0241002 0.0220402 -1 -1 -1 -1 32 2268 21 6.87369e+06 335372 586450. 2029.24 1.03 0.112059 0.0980207 25474 144626 -1 1966 21 1268 2283 143914 34546 3.7121 3.7121 -127.472 -3.7121 0 0 744469. 2576.02 0.03 0.04 0.09 -1 -1 0.03 0.014224 0.0126546 120 3 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_025.v common 2.03 vpr 64.13 MiB -1 -1 0.10 17676 1 0.02 -1 -1 29712 -1 -1 12 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65672 32 32 173 169 1 114 76 17 17 289 -1 unnamed_device 25.2 MiB 0.51 1340 735 9836 2832 5893 1111 64.1 MiB 0.03 0.00 2.66305 2.35478 -79.4936 -2.35478 2.35478 0.25 0.000195429 0.000177475 0.0131108 0.011945 -1 -1 -1 -1 28 1349 20 6.87369e+06 167686 531479. 1839.03 0.31 0.0383427 0.0336698 24610 126494 -1 1279 18 595 720 57806 14512 1.93882 1.93882 -81.3285 -1.93882 0 0 648988. 2245.63 0.02 0.03 0.07 -1 -1 0.02 0.011158 0.00985811 64 3 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_026.v common 2.88 vpr 63.77 MiB -1 -1 0.12 18056 1 0.02 -1 -1 30152 -1 -1 30 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65304 32 32 300 245 1 169 94 17 17 289 -1 unnamed_device 24.9 MiB 0.98 2085 932 9892 2528 6924 440 63.8 MiB 0.11 0.00 5.60262 4.76542 -131.149 -4.76542 4.76542 0.30 0.000296832 0.000272087 0.035253 0.0326811 -1 -1 -1 -1 26 2518 22 6.87369e+06 419215 503264. 1741.40 0.49 0.0786368 0.0705901 24322 120374 -1 2096 32 1737 2939 210434 50691 3.872 3.872 -127.362 -3.872 0 0 618332. 2139.56 0.02 0.06 0.06 -1 -1 0.02 0.0198711 0.0174655 120 24 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_027.v common 3.39 vpr 64.89 MiB -1 -1 0.12 17676 1 0.03 -1 -1 29944 -1 -1 31 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66452 32 32 297 233 1 177 95 17 17 289 -1 unnamed_device 24.9 MiB 0.79 2474 1054 16727 4817 9341 2569 64.9 MiB 0.09 0.00 4.54391 3.51795 -111.316 -3.51795 3.51795 0.29 0.000303592 0.000276236 0.0266519 0.0242859 -1 -1 -1 -1 28 2471 24 6.87369e+06 433189 531479. 1839.03 1.06 0.125733 0.110248 24610 126494 -1 2110 19 1290 2308 150392 36562 2.98246 2.98246 -112.166 -2.98246 0 0 648988. 2245.63 0.02 0.04 0.14 -1 -1 0.02 0.014283 0.0127629 130 3 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_028.v common 3.50 vpr 65.02 MiB -1 -1 0.12 18060 1 0.03 -1 -1 29752 -1 -1 29 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66580 32 32 338 277 1 183 93 17 17 289 -1 unnamed_device 25.0 MiB 1.17 2236 1093 11433 2910 6842 1681 65.0 MiB 0.06 0.00 5.66492 4.81048 -136.943 -4.81048 4.81048 0.25 0.000325641 0.000298897 0.0192171 0.0176088 -1 -1 -1 -1 30 2323 24 6.87369e+06 405241 556674. 1926.21 0.99 0.124524 0.108552 25186 138497 -1 1955 23 1075 1929 108605 26660 3.99996 3.99996 -133.755 -3.99996 0 0 706193. 2443.58 0.03 0.04 0.07 -1 -1 0.03 0.0163959 0.0145775 128 50 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_029.v common 2.55 vpr 64.41 MiB -1 -1 0.11 17672 1 0.02 -1 -1 29808 -1 -1 18 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65960 32 32 284 241 1 148 82 17 17 289 -1 unnamed_device 24.9 MiB 0.78 1785 959 11118 3077 6379 1662 64.4 MiB 0.06 0.00 3.63792 3.01142 -107.753 -3.01142 3.01142 0.35 0.000279667 0.000255769 0.0214261 0.019741 -1 -1 -1 -1 32 1994 19 6.87369e+06 251529 586450. 2029.24 0.35 0.0582033 0.0516193 25474 144626 -1 1714 18 879 1436 101674 23709 2.60666 2.60666 -105.374 -2.60666 0 0 744469. 2576.02 0.03 0.03 0.08 -1 -1 0.03 0.012868 0.011506 101 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_030.v common 3.41 vpr 64.49 MiB -1 -1 0.11 17912 1 0.02 -1 -1 29832 -1 -1 22 30 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66040 30 32 262 227 1 138 84 17 17 289 -1 unnamed_device 24.9 MiB 0.91 1644 645 11979 4232 5199 2548 64.5 MiB 0.06 0.00 3.71922 3.04032 -95.3449 -3.04032 3.04032 0.24 0.000643706 0.000601065 0.0220199 0.0202565 -1 -1 -1 -1 34 1737 24 6.87369e+06 307425 618332. 2139.56 1.12 0.115953 0.101499 25762 151098 -1 1305 21 903 1431 87262 23733 2.94926 2.94926 -95.9302 -2.94926 0 0 787024. 2723.27 0.03 0.03 0.08 -1 -1 0.03 0.0131376 0.0116079 95 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_031.v common 3.63 vpr 63.98 MiB -1 -1 0.18 17676 1 0.03 -1 -1 29688 -1 -1 19 28 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65516 28 32 260 223 1 140 79 17 17 289 -1 unnamed_device 24.9 MiB 1.12 2176 705 11233 3031 6920 1282 64.0 MiB 0.05 0.00 4.53245 3.58631 -100.001 -3.58631 3.58631 0.24 0.000258351 0.000236282 0.018592 0.0170282 -1 -1 -1 -1 34 1817 24 6.87369e+06 265503 618332. 2139.56 1.09 0.101843 0.0884679 25762 151098 -1 1498 21 1087 2028 123464 32422 2.82496 2.82496 -100.192 -2.82496 0 0 787024. 2723.27 0.03 0.04 0.08 -1 -1 0.03 0.0132302 0.0117007 96 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_032.v common 3.29 vpr 64.43 MiB -1 -1 0.11 17676 1 0.02 -1 -1 30216 -1 -1 18 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65972 32 32 253 210 1 156 82 17 17 289 -1 unnamed_device 24.7 MiB 1.03 2154 721 8092 1745 5645 702 64.4 MiB 0.04 0.00 4.63718 3.86314 -115.034 -3.86314 3.86314 0.26 0.000269999 0.000245848 0.0141003 0.0128609 -1 -1 -1 -1 32 1894 22 6.87369e+06 251529 586450. 2029.24 1.00 0.0989113 0.085688 25474 144626 -1 1497 16 987 1649 88162 23720 2.96326 2.96326 -109.749 -2.96326 0 0 744469. 2576.02 0.03 0.03 0.08 -1 -1 0.03 0.0110703 0.00990835 101 3 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_033.v common 2.78 vpr 64.53 MiB -1 -1 0.11 18056 1 0.03 -1 -1 29760 -1 -1 26 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66080 31 32 271 231 1 149 89 17 17 289 -1 unnamed_device 24.9 MiB 0.78 1850 927 12563 3215 8032 1316 64.5 MiB 0.06 0.00 4.00125 3.42265 -107.908 -3.42265 3.42265 0.27 0.000276398 0.000253509 0.0189718 0.0173754 -1 -1 -1 -1 32 1906 22 6.87369e+06 363320 586450. 2029.24 0.42 0.0676784 0.0597762 25474 144626 -1 1629 20 901 1604 91239 22844 2.75166 2.75166 -105.307 -2.75166 0 0 744469. 2576.02 0.04 0.05 0.14 -1 -1 0.04 0.0210922 0.018721 102 30 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_034.v common 4.49 vpr 64.58 MiB -1 -1 0.18 18060 1 0.03 -1 -1 30212 -1 -1 25 29 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66128 29 32 291 250 1 154 86 17 17 289 -1 unnamed_device 24.9 MiB 2.38 2244 863 12938 3817 7914 1207 64.6 MiB 0.06 0.00 3.77556 3.08002 -100.294 -3.08002 3.08002 0.25 0.000282356 0.000258955 0.0207796 0.0190526 -1 -1 -1 -1 30 1838 22 6.87369e+06 349346 556674. 1926.21 0.69 0.093284 0.0814168 25186 138497 -1 1561 17 902 1386 82031 19933 2.25347 2.25347 -93.7602 -2.25347 0 0 706193. 2443.58 0.03 0.03 0.07 -1 -1 0.03 0.0118709 0.010591 105 54 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_035.v common 5.18 vpr 65.22 MiB -1 -1 0.12 18060 1 0.03 -1 -1 29612 -1 -1 40 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66784 32 32 367 282 1 201 104 17 17 289 -1 unnamed_device 25.2 MiB 2.42 2344 1146 10352 2228 7273 851 65.2 MiB 0.07 0.00 4.92569 4.24719 -123.08 -4.24719 4.24719 0.27 0.000368919 0.000338189 0.0189776 0.0174183 -1 -1 -1 -1 28 2900 23 6.87369e+06 558954 531479. 1839.03 1.33 0.141629 0.123881 24610 126494 -1 2537 22 1665 3171 206581 51344 4.0723 4.0723 -130.143 -4.0723 0 0 648988. 2245.63 0.02 0.05 0.07 -1 -1 0.02 0.0174867 0.0155615 156 29 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_036.v common 4.25 vpr 64.88 MiB -1 -1 0.12 18056 1 0.03 -1 -1 30132 -1 -1 40 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66440 32 32 391 311 1 194 104 17 17 289 -1 unnamed_device 24.8 MiB 2.37 2402 1081 18892 5390 10690 2812 64.9 MiB 0.10 0.00 4.68095 4.00848 -135.306 -4.00848 4.00848 0.24 0.000357663 0.00032748 0.0300492 0.0273707 -1 -1 -1 -1 32 2374 22 6.87369e+06 558954 586450. 2029.24 0.39 0.0788336 0.06992 25474 144626 -1 2026 19 1508 2475 143567 35245 3.17446 3.17446 -127.465 -3.17446 0 0 744469. 2576.02 0.03 0.04 0.16 -1 -1 0.03 0.0159635 0.0142608 149 65 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_037.v common 3.90 vpr 64.01 MiB -1 -1 0.18 18060 1 0.03 -1 -1 29492 -1 -1 18 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65544 31 32 279 237 1 166 81 17 17 289 -1 unnamed_device 24.9 MiB 1.82 2434 993 8831 2488 5523 820 64.0 MiB 0.05 0.00 4.95083 4.14789 -126.829 -4.14789 4.14789 0.25 0.000284845 0.000261619 0.0156499 0.0143835 -1 -1 -1 -1 32 2206 21 6.87369e+06 251529 586450. 2029.24 0.39 0.0531276 0.0469574 25474 144626 -1 1881 19 958 1525 103993 24504 3.15461 3.15461 -119.875 -3.15461 0 0 744469. 2576.02 0.04 0.05 0.14 -1 -1 0.04 0.0169656 0.0150243 106 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_038.v common 4.62 vpr 65.14 MiB -1 -1 0.12 18056 1 0.03 -1 -1 29212 -1 -1 26 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66704 31 32 370 297 1 187 89 17 17 289 -1 unnamed_device 25.6 MiB 1.93 2217 1129 14147 4459 7560 2128 65.1 MiB 0.14 0.00 4.3461 3.7686 -123.743 -3.7686 3.7686 0.28 0.000620839 0.000567351 0.0472881 0.0432612 -1 -1 -1 -1 32 2620 20 6.87369e+06 363320 586450. 2029.24 1.22 0.166856 0.146757 25474 144626 -1 2210 20 1429 2447 155773 36552 3.00426 3.00426 -116.646 -3.00426 0 0 744469. 2576.02 0.03 0.04 0.08 -1 -1 0.03 0.0161313 0.0143767 136 61 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_039.v common 6.59 vpr 65.16 MiB -1 -1 0.17 18292 1 0.03 -1 -1 30164 -1 -1 29 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66720 31 32 377 302 1 237 92 17 17 289 -1 unnamed_device 25.3 MiB 2.75 2915 1335 13547 3729 7970 1848 65.2 MiB 0.09 0.00 6.76692 5.53978 -169.274 -5.53978 5.53978 0.26 0.000351561 0.000322679 0.025746 0.0236688 -1 -1 -1 -1 28 3654 23 6.87369e+06 405241 531479. 1839.03 2.34 0.14442 0.126946 24610 126494 -1 2988 22 2444 3552 326119 72975 5.20869 5.20869 -174.053 -5.20869 0 0 648988. 2245.63 0.02 0.07 0.07 -1 -1 0.02 0.0175115 0.0155948 155 64 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_040.v common 5.04 vpr 65.22 MiB -1 -1 0.18 18056 1 0.03 -1 -1 29792 -1 -1 28 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66784 31 32 383 305 1 212 91 17 17 289 -1 unnamed_device 25.2 MiB 3.04 2741 1334 14575 4470 8160 1945 65.2 MiB 0.09 0.00 6.34854 5.22459 -163.482 -5.22459 5.22459 0.25 0.000351439 0.000321335 0.0270274 0.0247642 -1 -1 -1 -1 32 3169 36 6.87369e+06 391268 586450. 2029.24 0.53 0.0967574 0.0859341 25474 144626 -1 2624 20 1587 2410 208304 44942 4.5599 4.5599 -158.949 -4.5599 0 0 744469. 2576.02 0.03 0.05 0.08 -1 -1 0.03 0.0164815 0.0147252 151 64 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_041.v common 4.03 vpr 64.61 MiB -1 -1 0.18 18060 1 0.04 -1 -1 29768 -1 -1 29 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66160 31 32 352 285 1 186 92 17 17 289 -1 unnamed_device 24.9 MiB 2.19 2134 1048 14996 4681 7704 2611 64.6 MiB 0.08 0.00 4.61893 4.13563 -128.575 -4.13563 4.13563 0.24 0.000335656 0.000307486 0.025684 0.0235144 -1 -1 -1 -1 32 2650 22 6.87369e+06 405241 586450. 2029.24 0.39 0.0700836 0.0620377 25474 144626 -1 2076 22 1454 2414 153424 36772 3.09131 3.09131 -118.471 -3.09131 0 0 744469. 2576.02 0.03 0.05 0.08 -1 -1 0.03 0.0166059 0.0147621 133 55 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_042.v common 4.06 vpr 64.91 MiB -1 -1 0.11 18060 1 0.02 -1 -1 29768 -1 -1 22 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66472 32 32 291 242 1 183 86 17 17 289 -1 unnamed_device 24.9 MiB 1.85 2477 1095 15206 4442 8662 2102 64.9 MiB 0.08 0.00 5.51278 4.43075 -121.679 -4.43075 4.43075 0.25 0.000292028 0.0002669 0.0253669 0.0232324 -1 -1 -1 -1 28 2503 21 6.87369e+06 307425 531479. 1839.03 0.90 0.105951 0.0925844 24610 126494 -1 2252 18 1382 2015 133917 32844 4.15256 4.15256 -127.257 -4.15256 0 0 648988. 2245.63 0.02 0.04 0.07 -1 -1 0.02 0.0130387 0.0116467 114 27 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_043.v common 5.91 vpr 65.00 MiB -1 -1 0.13 18444 1 0.03 -1 -1 29896 -1 -1 40 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66560 32 32 457 356 1 225 104 17 17 289 -1 unnamed_device 25.6 MiB 2.42 3065 1148 12304 2744 8146 1414 65.0 MiB 0.07 0.00 6.15708 4.89003 -155.75 -4.89003 4.89003 0.35 0.000421745 0.000385657 0.023456 0.0215124 -1 -1 -1 -1 30 3162 34 6.87369e+06 558954 556674. 1926.21 1.94 0.208648 0.182713 25186 138497 -1 2244 22 1501 2532 144540 36667 4.07996 4.07996 -146.784 -4.07996 0 0 706193. 2443.58 0.03 0.06 0.08 -1 -1 0.03 0.0238413 0.0212161 173 87 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_044.v common 3.27 vpr 64.49 MiB -1 -1 0.11 16980 1 0.03 -1 -1 29852 -1 -1 20 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66036 31 32 261 225 1 148 83 17 17 289 -1 unnamed_device 24.9 MiB 1.60 1997 648 8723 1892 5777 1054 64.5 MiB 0.04 0.00 4.27085 3.54105 -101.242 -3.54105 3.54105 0.24 0.000273941 0.000251112 0.0141802 0.0129943 -1 -1 -1 -1 30 1800 23 6.87369e+06 279477 556674. 1926.21 0.38 0.0500756 0.0439754 25186 138497 -1 1451 23 1102 1888 103072 27957 2.98326 2.98326 -102.512 -2.98326 0 0 706193. 2443.58 0.03 0.04 0.07 -1 -1 0.03 0.0136731 0.0120739 95 28 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_045.v common 5.40 vpr 65.09 MiB -1 -1 0.12 18064 1 0.03 -1 -1 29856 -1 -1 25 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66656 31 32 337 267 1 207 88 17 17 289 -1 unnamed_device 25.2 MiB 2.38 2833 1039 9058 2162 5891 1005 65.1 MiB 0.05 0.00 5.78298 4.80948 -141.445 -4.80948 4.80948 0.24 0.000334797 0.000307237 0.0177481 0.0163442 -1 -1 -1 -1 32 3153 40 6.87369e+06 349346 586450. 2029.24 1.70 0.143091 0.124424 25474 144626 -1 2143 18 1358 2000 125184 32958 3.90446 3.90446 -133.851 -3.90446 0 0 744469. 2576.02 0.03 0.04 0.08 -1 -1 0.03 0.0142968 0.0128029 139 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_046.v common 3.83 vpr 64.51 MiB -1 -1 0.12 18060 1 0.03 -1 -1 29712 -1 -1 32 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66060 32 32 349 284 1 183 96 17 17 289 -1 unnamed_device 24.8 MiB 1.34 2291 1135 16740 4742 9662 2336 64.5 MiB 0.09 0.00 4.4574 3.7235 -119.349 -3.7235 3.7235 0.24 0.000325745 0.0002983 0.0287406 0.0263737 -1 -1 -1 -1 32 2604 22 6.87369e+06 447163 586450. 2029.24 1.09 0.136222 0.119082 25474 144626 -1 2160 22 1397 2353 160693 37464 2.99951 2.99951 -114.657 -2.99951 0 0 744469. 2576.02 0.03 0.05 0.08 -1 -1 0.03 0.0164752 0.014613 133 53 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_047.v common 3.46 vpr 64.45 MiB -1 -1 0.14 17676 1 0.03 -1 -1 29764 -1 -1 27 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66000 32 32 291 230 1 175 91 17 17 289 -1 unnamed_device 24.9 MiB 1.06 1933 1125 13963 5217 7708 1038 64.5 MiB 0.08 0.00 4.86339 4.12259 -128.092 -4.12259 4.12259 0.34 0.000311483 0.000285719 0.023139 0.021179 -1 -1 -1 -1 30 2522 22 6.87369e+06 377294 556674. 1926.21 0.94 0.103938 0.0910827 25186 138497 -1 2070 22 1119 2125 158916 33999 3.6151 3.6151 -123.407 -3.6151 0 0 706193. 2443.58 0.03 0.04 0.07 -1 -1 0.03 0.0149392 0.0132718 123 3 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_048.v common 4.70 vpr 64.43 MiB -1 -1 0.12 18436 1 0.03 -1 -1 30156 -1 -1 24 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65976 32 32 353 287 1 203 88 17 17 289 -1 unnamed_device 25.1 MiB 2.35 2449 1198 10033 2856 6133 1044 64.4 MiB 0.08 0.00 5.38385 4.51686 -135.093 -4.51686 4.51686 0.24 0.000807747 0.000754987 0.0265271 0.0244839 -1 -1 -1 -1 28 2785 20 6.87369e+06 335372 531479. 1839.03 1.01 0.122769 0.108079 24610 126494 -1 2415 23 1599 2149 149891 36230 3.45411 3.45411 -130.575 -3.45411 0 0 648988. 2245.63 0.02 0.05 0.07 -1 -1 0.02 0.0173931 0.0154887 133 55 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_049.v common 4.46 vpr 64.64 MiB -1 -1 0.17 18060 1 0.03 -1 -1 29752 -1 -1 33 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66196 32 32 361 291 1 189 97 17 17 289 -1 unnamed_device 25.2 MiB 2.43 2368 918 12307 3182 8052 1073 64.6 MiB 0.07 0.00 4.4072 3.86034 -120.004 -3.86034 3.86034 0.35 0.00033864 0.000309864 0.0204635 0.0187149 -1 -1 -1 -1 32 2307 29 6.87369e+06 461137 586450. 2029.24 0.44 0.0695487 0.0614194 25474 144626 -1 1780 19 1175 2009 111141 30153 3.17181 3.17181 -113.554 -3.17181 0 0 744469. 2576.02 0.03 0.05 0.08 -1 -1 0.03 0.0255044 0.0228037 137 55 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_050.v common 4.27 vpr 65.20 MiB -1 -1 0.12 18056 1 0.03 -1 -1 30244 -1 -1 35 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66768 32 32 382 305 1 193 99 17 17 289 -1 unnamed_device 25.2 MiB 2.29 2780 1180 19251 5845 10953 2453 65.2 MiB 0.11 0.00 4.88053 4.12873 -137.656 -4.12873 4.12873 0.25 0.000352547 0.000322509 0.0316187 0.0288943 -1 -1 -1 -1 30 2658 24 6.87369e+06 489084 556674. 1926.21 0.42 0.0788497 0.0700438 25186 138497 -1 2203 22 1272 2103 125088 30094 3.13881 3.13881 -123.39 -3.13881 0 0 706193. 2443.58 0.03 0.04 0.07 -1 -1 0.03 0.0173831 0.0154972 145 62 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_051.v common 3.73 vpr 64.93 MiB -1 -1 0.12 18444 1 0.03 -1 -1 29780 -1 -1 33 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66492 32 32 306 248 1 170 97 17 17 289 -1 unnamed_device 24.9 MiB 0.73 2039 950 16747 5537 7489 3721 64.9 MiB 0.09 0.00 4.87439 4.39109 -126.937 -4.39109 4.39109 0.24 0.000739823 0.00069028 0.0312699 0.0286694 -1 -1 -1 -1 32 2421 33 6.87369e+06 461137 586450. 2029.24 1.56 0.147368 0.129021 25474 144626 -1 1887 19 1239 2208 161661 39936 3.8374 3.8374 -122.561 -3.8374 0 0 744469. 2576.02 0.04 0.07 0.11 -1 -1 0.04 0.0221875 0.0198695 124 24 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_052.v common 3.98 vpr 63.73 MiB -1 -1 0.17 18056 1 0.03 -1 -1 29584 -1 -1 23 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65256 32 32 319 257 1 203 87 17 17 289 -1 unnamed_device 24.7 MiB 1.52 2220 1156 13527 3541 8079 1907 63.7 MiB 0.08 0.00 5.73418 4.82931 -141.931 -4.82931 4.82931 0.25 0.00030882 0.000282743 0.0239023 0.0219138 -1 -1 -1 -1 32 2802 25 6.87369e+06 321398 586450. 2029.24 1.00 0.110833 0.096714 25474 144626 -1 2292 20 1462 2137 136001 32714 3.76576 3.76576 -131.742 -3.76576 0 0 744469. 2576.02 0.03 0.04 0.08 -1 -1 0.03 0.0146108 0.0130258 129 29 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_053.v common 3.68 vpr 64.53 MiB -1 -1 0.13 18060 1 0.03 -1 -1 30160 -1 -1 24 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66076 31 32 373 299 1 204 87 17 17 289 -1 unnamed_device 25.0 MiB 1.72 3065 1027 11415 2970 7272 1173 64.5 MiB 0.14 0.00 6.22918 4.75448 -142.391 -4.75448 4.75448 0.28 0.000987483 0.000915055 0.0501293 0.0464441 -1 -1 -1 -1 32 2875 29 6.87369e+06 335372 586450. 2029.24 0.48 0.0988957 0.0888001 25474 144626 -1 2254 24 1603 2664 177040 43531 3.86846 3.86846 -138.859 -3.86846 0 0 744469. 2576.02 0.03 0.05 0.08 -1 -1 0.03 0.0184397 0.0164021 140 62 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_054.v common 5.11 vpr 64.59 MiB -1 -1 0.13 18056 1 0.04 -1 -1 30260 -1 -1 22 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66140 32 32 387 315 1 194 86 17 17 289 -1 unnamed_device 25.2 MiB 2.03 2512 933 14072 5096 6356 2620 64.6 MiB 0.08 0.00 5.37753 4.33435 -129.429 -4.33435 4.33435 0.26 0.00035546 0.000324775 0.0324406 0.0297238 -1 -1 -1 -1 36 2716 47 6.87369e+06 307425 648988. 2245.63 1.52 0.178156 0.156102 26050 158493 -1 1916 20 1476 2587 164969 42265 3.74066 3.74066 -126.184 -3.74066 0 0 828058. 2865.25 0.03 0.05 0.16 -1 -1 0.03 0.016656 0.0148392 134 77 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_055.v common 2.54 vpr 64.50 MiB -1 -1 0.11 18060 1 0.02 -1 -1 29788 -1 -1 23 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66048 32 32 251 219 1 141 87 17 17 289 -1 unnamed_device 24.7 MiB 0.72 1844 681 8727 1897 6216 614 64.5 MiB 0.04 0.00 4.11555 3.50043 -101.627 -3.50043 3.50043 0.24 0.000263113 0.000240025 0.0133071 0.0121657 -1 -1 -1 -1 28 2084 39 6.87369e+06 321398 531479. 1839.03 0.52 0.0574569 0.050311 24610 126494 -1 1578 21 1147 1792 117952 31406 2.70196 2.70196 -100.629 -2.70196 0 0 648988. 2245.63 0.02 0.04 0.07 -1 -1 0.02 0.0127218 0.0112708 93 23 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_056.v common 3.75 vpr 64.36 MiB -1 -1 0.12 18060 1 0.04 -1 -1 30204 -1 -1 20 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65908 32 32 341 285 1 188 84 17 17 289 -1 unnamed_device 25.2 MiB 1.54 2256 885 8868 2113 6056 699 64.4 MiB 0.05 0.00 4.91669 4.05749 -134.722 -4.05749 4.05749 0.25 0.000319097 0.00029131 0.0168116 0.0154068 -1 -1 -1 -1 32 2587 38 6.87369e+06 279477 586450. 2029.24 0.66 0.0980793 0.0867185 25474 144626 -1 1878 20 1605 2345 172300 41500 3.30791 3.30791 -127.081 -3.30791 0 0 744469. 2576.02 0.03 0.10 0.08 -1 -1 0.03 0.0359951 0.0321136 120 65 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_057.v common 4.72 vpr 65.30 MiB -1 -1 0.13 18056 1 0.03 -1 -1 29816 -1 -1 29 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66864 32 32 387 293 1 236 93 17 17 289 -1 unnamed_device 25.6 MiB 2.03 2858 1452 14373 4135 8862 1376 65.3 MiB 0.09 0.00 6.54252 5.67053 -168.179 -5.67053 5.67053 0.26 0.000367846 0.000336898 0.0279177 0.0256551 -1 -1 -1 -1 32 3361 38 6.87369e+06 405241 586450. 2029.24 1.27 0.174645 0.153213 25474 144626 -1 2769 22 1643 2597 165910 40569 4.6651 4.6651 -156.548 -4.6651 0 0 744469. 2576.02 0.03 0.05 0.08 -1 -1 0.03 0.0186054 0.0166428 164 31 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_058.v common 3.95 vpr 64.71 MiB -1 -1 0.12 17916 1 0.03 -1 -1 29944 -1 -1 34 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66264 32 32 340 270 1 185 98 17 17 289 -1 unnamed_device 25.2 MiB 2.19 2646 1109 17198 4503 10702 1993 64.7 MiB 0.09 0.00 5.22181 4.34585 -138.752 -4.34585 4.34585 0.24 0.000328609 0.000299932 0.0269673 0.0246622 -1 -1 -1 -1 32 2400 41 6.87369e+06 475111 586450. 2029.24 0.39 0.0787899 0.0696865 25474 144626 -1 1955 21 1277 2204 125556 30508 2.86466 2.86466 -118.79 -2.86466 0 0 744469. 2576.02 0.03 0.04 0.08 -1 -1 0.03 0.01591 0.0142043 137 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_059.v common 2.33 vpr 64.59 MiB -1 -1 0.11 18060 1 0.02 -1 -1 29824 -1 -1 25 30 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66140 30 32 278 235 1 150 87 17 17 289 -1 unnamed_device 25.2 MiB 0.61 2187 808 9879 2531 6399 949 64.6 MiB 0.05 0.00 4.30385 3.42675 -104.9 -3.42675 3.42675 0.24 0.000283569 0.000258971 0.0157083 0.0143422 -1 -1 -1 -1 26 2066 25 6.87369e+06 349346 503264. 1741.40 0.40 0.0537143 0.0471404 24322 120374 -1 1867 26 1418 2313 162293 41447 3.43946 3.43946 -116.403 -3.43946 0 0 618332. 2139.56 0.02 0.06 0.07 -1 -1 0.02 0.0217145 0.0191615 104 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_060.v common 5.58 vpr 65.42 MiB -1 -1 0.13 18444 1 0.03 -1 -1 29800 -1 -1 27 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66992 32 32 431 332 1 239 91 17 17 289 -1 unnamed_device 25.6 MiB 3.74 2820 1401 12535 3692 7672 1171 65.4 MiB 0.08 0.00 6.88686 5.84665 -173.286 -5.84665 5.84665 0.24 0.000419434 0.000387317 0.0280962 0.0259362 -1 -1 -1 -1 32 3289 23 6.87369e+06 377294 586450. 2029.24 0.45 0.0856957 0.0766235 25474 144626 -1 2597 22 1840 2810 199075 44926 4.4923 4.4923 -155.353 -4.4923 0 0 744469. 2576.02 0.03 0.05 0.08 -1 -1 0.03 0.0201657 0.0180183 166 65 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_061.v common 4.33 vpr 64.54 MiB -1 -1 0.19 18448 1 0.03 -1 -1 29960 -1 -1 35 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66084 32 32 336 268 1 182 99 17 17 289 -1 unnamed_device 24.9 MiB 2.38 2019 1059 12867 3257 7846 1764 64.5 MiB 0.08 0.00 5.26892 4.63938 -140.042 -4.63938 4.63938 0.33 0.000319991 0.000293027 0.0261935 0.0241675 -1 -1 -1 -1 32 2403 25 6.87369e+06 489084 586450. 2029.24 0.40 0.0756114 0.0675688 25474 144626 -1 1978 19 1375 2255 145823 36321 3.5567 3.5567 -129.487 -3.5567 0 0 744469. 2576.02 0.03 0.05 0.09 -1 -1 0.03 0.0171303 0.0153048 135 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_062.v common 2.49 vpr 64.31 MiB -1 -1 0.11 17148 1 0.02 -1 -1 30328 -1 -1 28 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65852 32 32 231 199 1 142 92 17 17 289 -1 unnamed_device 25.2 MiB 0.63 1762 855 12512 3348 8365 799 64.3 MiB 0.05 0.00 3.96025 3.6312 -105.59 -3.6312 3.6312 0.24 0.000255426 0.000233116 0.0167194 0.015257 -1 -1 -1 -1 28 1989 22 6.87369e+06 391268 531479. 1839.03 0.34 0.0495916 0.0435939 24610 126494 -1 1736 22 999 1747 115875 28970 2.92726 2.92726 -105.066 -2.92726 0 0 648988. 2245.63 0.04 0.06 0.12 -1 -1 0.04 0.0205974 0.0181628 96 3 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_063.v common 4.97 vpr 65.02 MiB -1 -1 0.12 18060 1 0.03 -1 -1 29572 -1 -1 37 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66580 32 32 349 273 1 191 101 17 17 289 -1 unnamed_device 25.6 MiB 1.72 2736 1219 17491 4613 10519 2359 65.0 MiB 0.10 0.00 6.69567 5.1464 -138.872 -5.1464 5.1464 0.31 0.000341259 0.000311913 0.0305984 0.0281463 -1 -1 -1 -1 26 2928 24 6.87369e+06 517032 503264. 1741.40 1.78 0.151555 0.13355 24322 120374 -1 2550 23 1721 3309 237917 56001 4.68785 4.68785 -144.023 -4.68785 0 0 618332. 2139.56 0.02 0.06 0.06 -1 -1 0.02 0.017333 0.0153937 145 29 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_064.v common 2.60 vpr 64.46 MiB -1 -1 0.11 17672 1 0.03 -1 -1 30196 -1 -1 21 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66012 32 32 247 207 1 153 85 17 17 289 -1 unnamed_device 25.2 MiB 0.94 2118 750 9385 2715 5945 725 64.5 MiB 0.05 0.00 4.52145 3.49353 -105.466 -3.49353 3.49353 0.24 0.000265033 0.000242603 0.0146375 0.0133717 -1 -1 -1 -1 32 1967 23 6.87369e+06 293451 586450. 2029.24 0.35 0.0505078 0.0444585 25474 144626 -1 1595 20 1184 2094 130220 31374 2.83596 2.83596 -104.337 -2.83596 0 0 744469. 2576.02 0.03 0.04 0.08 -1 -1 0.03 0.0123439 0.0109405 99 3 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_065.v common 4.46 vpr 64.53 MiB -1 -1 0.16 17676 1 0.03 -1 -1 29828 -1 -1 34 30 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66080 30 32 278 235 1 151 96 17 17 289 -1 unnamed_device 25.4 MiB 1.69 2241 719 10608 2312 6839 1457 64.5 MiB 0.07 0.00 4.84748 3.98828 -113.215 -3.98828 3.98828 0.25 0.000391645 0.000367026 0.0289935 0.0271019 -1 -1 -1 -1 28 2331 36 6.87369e+06 475111 531479. 1839.03 1.39 0.12692 0.111488 24610 126494 -1 1678 21 1245 2215 142434 39295 3.33286 3.33286 -116.77 -3.33286 0 0 648988. 2245.63 0.02 0.05 0.07 -1 -1 0.02 0.0160478 0.0141015 109 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_066.v common 4.89 vpr 65.07 MiB -1 -1 0.12 18056 1 0.03 -1 -1 29768 -1 -1 26 29 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66632 29 32 355 287 1 200 87 17 17 289 -1 unnamed_device 25.2 MiB 2.10 2696 974 15831 5641 7207 2983 65.1 MiB 0.09 0.00 5.17922 4.15337 -121.297 -4.15337 4.15337 0.24 0.000328376 0.000300502 0.0322937 0.0296945 -1 -1 -1 -1 34 2718 23 6.87369e+06 363320 618332. 2139.56 1.42 0.164397 0.143584 25762 151098 -1 2026 21 1484 2291 146376 37672 3.47616 3.47616 -116.825 -3.47616 0 0 787024. 2723.27 0.03 0.04 0.08 -1 -1 0.03 0.0161593 0.0144132 136 62 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_067.v common 3.68 vpr 64.94 MiB -1 -1 0.12 18060 1 0.03 -1 -1 29776 -1 -1 26 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66496 32 32 358 289 1 183 90 17 17 289 -1 unnamed_device 25.0 MiB 1.76 2016 1105 14160 4101 8351 1708 64.9 MiB 0.08 0.00 5.27855 4.41935 -143.334 -4.41935 4.41935 0.24 0.000346002 0.000316456 0.0278664 0.0255617 -1 -1 -1 -1 32 2363 23 6.87369e+06 363320 586450. 2029.24 0.46 0.08495 0.0752392 25474 144626 -1 2046 21 1489 2340 158892 36945 3.6681 3.6681 -134.244 -3.6681 0 0 744469. 2576.02 0.03 0.05 0.16 -1 -1 0.03 0.016676 0.0148494 132 54 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_068.v common 3.76 vpr 65.11 MiB -1 -1 0.16 18056 1 0.03 -1 -1 30160 -1 -1 29 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66676 32 32 353 285 1 188 93 17 17 289 -1 unnamed_device 25.2 MiB 1.80 2553 1054 11433 3167 7604 662 65.1 MiB 0.07 0.00 5.94852 4.77748 -139.018 -4.77748 4.77748 0.24 0.000334015 0.000305667 0.0198564 0.0181388 -1 -1 -1 -1 32 2558 25 6.87369e+06 405241 586450. 2029.24 0.40 0.0648189 0.0572644 25474 144626 -1 2013 22 1396 2524 151194 37389 3.71836 3.71836 -131.742 -3.71836 0 0 744469. 2576.02 0.05 0.08 0.13 -1 -1 0.05 0.02815 0.0249344 134 51 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_069.v common 4.73 vpr 64.56 MiB -1 -1 0.11 17672 1 0.02 -1 -1 30160 -1 -1 18 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66112 32 32 276 237 1 165 82 17 17 289 -1 unnamed_device 24.9 MiB 2.17 1940 852 6668 1493 4863 312 64.6 MiB 0.04 0.00 5.16415 4.88031 -136.568 -4.88031 4.88031 0.33 0.000282263 0.00025852 0.0119638 0.0109757 -1 -1 -1 -1 26 2532 37 6.87369e+06 251529 503264. 1741.40 1.14 0.0984009 0.0854727 24322 120374 -1 1898 19 1074 1463 105865 29212 3.47621 3.47621 -124.999 -3.47621 0 0 618332. 2139.56 0.02 0.04 0.06 -1 -1 0.02 0.0128064 0.0114271 102 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_070.v common 4.05 vpr 64.92 MiB -1 -1 0.18 18048 1 0.03 -1 -1 30180 -1 -1 20 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66480 31 32 319 272 1 176 83 17 17 289 -1 unnamed_device 25.2 MiB 2.04 2174 1028 12503 3213 7830 1460 64.9 MiB 0.07 0.00 4.4732 3.7214 -122.26 -3.7214 3.7214 0.25 0.00040486 0.000356531 0.029162 0.0270087 -1 -1 -1 -1 32 2289 30 6.87369e+06 279477 586450. 2029.24 0.38 0.0734498 0.0653217 25474 144626 -1 1934 22 1164 1724 125099 29725 3.28891 3.28891 -122.449 -3.28891 0 0 744469. 2576.02 0.03 0.04 0.08 -1 -1 0.03 0.0151763 0.0134859 110 64 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_071.v common 4.41 vpr 64.98 MiB -1 -1 0.18 18436 1 0.03 -1 -1 30304 -1 -1 34 30 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66544 30 32 329 273 1 167 96 17 17 289 -1 unnamed_device 25.2 MiB 1.97 2361 965 13236 3751 8252 1233 65.0 MiB 0.07 0.00 4.47245 3.48795 -100.051 -3.48795 3.48795 0.25 0.00036336 0.000336979 0.0214233 0.0195433 -1 -1 -1 -1 30 1999 23 6.87369e+06 475111 556674. 1926.21 1.02 0.112542 0.0980759 25186 138497 -1 1729 16 946 1790 90841 23393 2.93826 2.93826 -100.371 -2.93826 0 0 706193. 2443.58 0.03 0.04 0.08 -1 -1 0.03 0.0155344 0.0138624 124 57 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_072.v common 3.05 vpr 64.84 MiB -1 -1 0.11 17676 1 0.02 -1 -1 29812 -1 -1 35 28 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66396 28 32 277 229 1 156 95 17 17 289 -1 unnamed_device 25.2 MiB 1.29 1945 924 16079 4874 9529 1676 64.8 MiB 0.07 0.00 5.23859 4.10437 -105.39 -4.10437 4.10437 0.25 0.000282598 0.000259458 0.0221159 0.02018 -1 -1 -1 -1 26 2118 21 6.87369e+06 489084 503264. 1741.40 0.47 0.0647093 0.0572097 24322 120374 -1 1838 21 1280 2507 173302 41037 3.6161 3.6161 -108.097 -3.6161 0 0 618332. 2139.56 0.03 0.05 0.06 -1 -1 0.03 0.0148899 0.0133326 117 27 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_073.v common 5.59 vpr 64.57 MiB -1 -1 0.18 18060 1 0.03 -1 -1 29836 -1 -1 18 30 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66124 30 32 317 269 1 155 80 17 17 289 -1 unnamed_device 24.9 MiB 2.37 2041 784 11088 4549 5689 850 64.6 MiB 0.09 0.00 4.60788 3.85608 -116.241 -3.85608 3.85608 0.26 0.000373926 0.000343506 0.0399959 0.0370619 -1 -1 -1 -1 28 2449 50 6.87369e+06 251529 531479. 1839.03 1.69 0.171036 0.150399 24610 126494 -1 1896 24 1646 2865 221151 58757 3.15776 3.15776 -117.819 -3.15776 0 0 648988. 2245.63 0.02 0.06 0.09 -1 -1 0.02 0.015881 0.0140268 105 63 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_074.v common 4.14 vpr 65.02 MiB -1 -1 0.15 17916 1 0.03 -1 -1 29628 -1 -1 20 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66584 32 32 335 282 1 189 84 17 17 289 -1 unnamed_device 25.6 MiB 1.66 2218 967 9966 2748 6633 585 65.0 MiB 0.06 0.00 5.10429 3.99449 -129.503 -3.99449 3.99449 0.25 0.000328462 0.000301649 0.020079 0.0184308 -1 -1 -1 -1 32 2511 25 6.87369e+06 279477 586450. 2029.24 1.09 0.117666 0.102422 25474 144626 -1 2008 18 1211 1757 119685 28936 3.4488 3.4488 -126.894 -3.4488 0 0 744469. 2576.02 0.04 0.06 0.08 -1 -1 0.04 0.023357 0.0207862 118 65 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_075.v common 3.32 vpr 64.91 MiB -1 -1 0.12 17916 1 0.03 -1 -1 29900 -1 -1 33 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66468 31 32 293 230 1 175 96 17 17 289 -1 unnamed_device 24.9 MiB 0.79 2036 1158 10170 2450 6680 1040 64.9 MiB 0.06 0.00 5.31102 4.59912 -134.752 -4.59912 4.59912 0.27 0.000342506 0.000316632 0.0162185 0.0148702 -1 -1 -1 -1 32 2499 23 6.87369e+06 461137 586450. 2029.24 1.11 0.129327 0.112575 25474 144626 -1 2100 22 1224 2150 133245 32520 3.6524 3.6524 -124.426 -3.6524 0 0 744469. 2576.02 0.03 0.05 0.08 -1 -1 0.03 0.0168294 0.014975 130 4 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_076.v common 4.44 vpr 65.12 MiB -1 -1 0.13 18060 1 0.03 -1 -1 29968 -1 -1 24 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66688 32 32 350 275 1 214 88 17 17 289 -1 unnamed_device 25.2 MiB 2.45 2819 1040 12178 3350 7228 1600 65.1 MiB 0.09 0.00 5.70484 4.82048 -149.342 -4.82048 4.82048 0.26 0.000400944 0.000372604 0.0283893 0.026235 -1 -1 -1 -1 32 3002 29 6.87369e+06 335372 586450. 2029.24 0.60 0.0908346 0.081116 25474 144626 -1 2195 18 1476 2286 156593 38820 3.90405 3.90405 -139.251 -3.90405 0 0 744469. 2576.02 0.03 0.04 0.08 -1 -1 0.03 0.0148102 0.0132845 141 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_077.v common 5.94 vpr 65.12 MiB -1 -1 0.12 18060 1 0.03 -1 -1 30176 -1 -1 37 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66688 32 32 385 308 1 195 101 17 17 289 -1 unnamed_device 25.6 MiB 3.09 2653 1152 16316 4343 10844 1129 65.1 MiB 0.08 0.00 6.91417 5.25048 -151.042 -5.25048 5.25048 0.24 0.000352849 0.000323511 0.0264732 0.0241542 -1 -1 -1 -1 28 2872 20 6.87369e+06 517032 531479. 1839.03 1.50 0.125407 0.110692 24610 126494 -1 2428 23 1830 3262 241216 56854 3.93035 3.93035 -146.382 -3.93035 0 0 648988. 2245.63 0.02 0.06 0.07 -1 -1 0.02 0.0181598 0.0161266 147 65 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_078.v common 5.07 vpr 65.23 MiB -1 -1 0.18 18048 1 0.03 -1 -1 30240 -1 -1 41 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66796 32 32 387 309 1 192 105 17 17 289 -1 unnamed_device 25.2 MiB 2.38 2943 1241 19618 5694 11739 2185 65.2 MiB 0.24 0.00 5.98952 4.52582 -145.898 -4.52582 4.52582 0.24 0.000822808 0.000763121 0.0762442 0.0705218 -1 -1 -1 -1 30 2850 25 6.87369e+06 572927 556674. 1926.21 1.09 0.176382 0.157475 25186 138497 -1 2346 21 1345 2673 179539 40524 3.5128 3.5128 -133.556 -3.5128 0 0 706193. 2443.58 0.03 0.05 0.07 -1 -1 0.03 0.0169879 0.0151336 148 65 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_079.v common 3.71 vpr 64.45 MiB -1 -1 0.12 17672 1 0.03 -1 -1 29504 -1 -1 18 30 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65992 30 32 272 232 1 151 80 17 17 289 -1 unnamed_device 24.7 MiB 1.97 2072 788 12808 4627 5785 2396 64.4 MiB 0.06 0.00 4.73318 3.87398 -115.445 -3.87398 3.87398 0.24 0.000270734 0.000246942 0.0216325 0.0197871 -1 -1 -1 -1 32 2109 26 6.87369e+06 251529 586450. 2029.24 0.39 0.0619366 0.0547203 25474 144626 -1 1731 21 1247 2177 152375 36953 2.94096 2.94096 -109.117 -2.94096 0 0 744469. 2576.02 0.03 0.04 0.08 -1 -1 0.03 0.013509 0.0119628 99 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_080.v common 5.31 vpr 64.71 MiB -1 -1 0.12 17672 1 0.03 -1 -1 30528 -1 -1 23 30 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66264 30 32 375 299 1 188 85 17 17 289 -1 unnamed_device 25.4 MiB 2.75 2081 1069 9943 2328 6646 969 64.7 MiB 0.07 0.00 5.31292 4.64076 -144.318 -4.64076 4.64076 0.24 0.000345453 0.000316854 0.0247669 0.0228435 -1 -1 -1 -1 26 2497 31 6.87369e+06 321398 503264. 1741.40 1.21 0.124009 0.109075 24322 120374 -1 2213 21 1786 2855 199315 47103 3.8714 3.8714 -142.891 -3.8714 0 0 618332. 2139.56 0.02 0.06 0.06 -1 -1 0.02 0.0221423 0.0198078 137 63 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_081.v common 4.20 vpr 65.05 MiB -1 -1 0.12 18060 1 0.03 -1 -1 29864 -1 -1 25 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66616 32 32 340 270 1 204 89 17 17 289 -1 unnamed_device 25.7 MiB 1.66 2664 1115 14741 4886 7454 2401 65.1 MiB 0.09 0.00 5.92334 5.22106 -152.202 -5.22106 5.22106 0.25 0.000334817 0.000306968 0.0281764 0.0259055 -1 -1 -1 -1 30 2721 24 6.87369e+06 349346 556674. 1926.21 1.15 0.126827 0.11113 25186 138497 -1 2014 20 1447 2533 138886 35336 3.89246 3.89246 -136.446 -3.89246 0 0 706193. 2443.58 0.03 0.04 0.07 -1 -1 0.03 0.0169656 0.0152085 136 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_082.v common 4.71 vpr 65.10 MiB -1 -1 0.13 18056 1 0.03 -1 -1 30172 -1 -1 30 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66660 31 32 340 275 1 201 93 17 17 289 -1 unnamed_device 25.2 MiB 2.09 2886 1189 10173 2898 6614 661 65.1 MiB 0.06 0.00 6.73744 5.23384 -148.634 -5.23384 5.23384 0.24 0.000333069 0.000305994 0.0175158 0.0160644 -1 -1 -1 -1 26 2895 35 6.87369e+06 419215 503264. 1741.40 1.31 0.132751 0.11687 24322 120374 -1 2483 26 1948 3189 213646 52192 4.5628 4.5628 -152.603 -4.5628 0 0 618332. 2139.56 0.02 0.06 0.06 -1 -1 0.02 0.0183985 0.0163074 139 47 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_083.v common 4.67 vpr 64.75 MiB -1 -1 0.12 18060 1 0.03 -1 -1 30524 -1 -1 31 30 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66300 30 32 377 310 1 181 93 17 17 289 -1 unnamed_device 25.3 MiB 2.60 2449 1224 16893 5635 9042 2216 64.7 MiB 0.12 0.00 5.39266 4.94818 -149.82 -4.94818 4.94818 0.25 0.000344756 0.000315816 0.0388335 0.0359078 -1 -1 -1 -1 28 2735 20 6.87369e+06 433189 531479. 1839.03 0.59 0.0915719 0.0819831 24610 126494 -1 2284 25 1446 2485 237805 83948 3.50651 3.50651 -131.776 -3.50651 0 0 648988. 2245.63 0.02 0.07 0.07 -1 -1 0.02 0.0187101 0.0165963 136 83 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_084.v common 4.69 vpr 64.62 MiB -1 -1 0.12 18060 1 0.03 -1 -1 30168 -1 -1 22 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66172 32 32 365 294 1 187 86 17 17 289 -1 unnamed_device 24.9 MiB 2.10 2716 990 11993 3472 6935 1586 64.6 MiB 0.08 0.00 5.90348 4.77578 -139.992 -4.77578 4.77578 0.24 0.000817076 0.000762471 0.0254697 0.0234016 -1 -1 -1 -1 32 2722 28 6.87369e+06 307425 586450. 2029.24 1.25 0.143023 0.125248 25474 144626 -1 2150 18 1396 2412 167928 39620 4.02096 4.02096 -141.443 -4.02096 0 0 744469. 2576.02 0.03 0.04 0.08 -1 -1 0.03 0.0148475 0.0133072 131 57 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_085.v common 4.17 vpr 64.65 MiB -1 -1 0.20 18056 1 0.03 -1 -1 30008 -1 -1 29 29 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66204 29 32 378 310 1 179 90 17 17 289 -1 unnamed_device 25.2 MiB 1.85 2351 942 10944 2964 7013 967 64.7 MiB 0.08 0.00 5.07613 4.09163 -121.097 -4.09163 4.09163 0.24 0.000344576 0.000316288 0.0268546 0.0247877 -1 -1 -1 -1 30 2041 24 6.87369e+06 405241 556674. 1926.21 0.83 0.118594 0.104208 25186 138497 -1 1616 20 1131 1865 97938 24518 2.87521 2.87521 -106.946 -2.87521 0 0 706193. 2443.58 0.03 0.04 0.07 -1 -1 0.03 0.0165374 0.0147987 132 85 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_086.v common 3.34 vpr 64.44 MiB -1 -1 0.11 17672 1 0.02 -1 -1 29956 -1 -1 18 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65984 32 32 243 205 1 149 82 17 17 289 -1 unnamed_device 24.9 MiB 0.87 1905 855 8448 2270 5828 350 64.4 MiB 0.07 0.00 4.48878 3.94428 -118.381 -3.94428 3.94428 0.35 0.000389992 0.000357049 0.0201422 0.0184089 -1 -1 -1 -1 30 1821 20 6.87369e+06 251529 556674. 1926.21 1.08 0.110404 0.0961912 25186 138497 -1 1536 18 722 1020 59686 14633 2.76086 2.76086 -104.224 -2.76086 0 0 706193. 2443.58 0.03 0.03 0.07 -1 -1 0.03 0.0114509 0.0102269 96 3 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_087.v common 5.58 vpr 64.67 MiB -1 -1 0.12 18060 1 0.03 -1 -1 29576 -1 -1 34 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66220 32 32 373 302 1 184 98 17 17 289 -1 unnamed_device 25.2 MiB 3.81 2454 1140 11348 2927 7443 978 64.7 MiB 0.06 0.00 5.90822 4.62608 -141.402 -4.62608 4.62608 0.24 0.000359269 0.000329782 0.0201378 0.0184997 -1 -1 -1 -1 32 2643 23 6.87369e+06 475111 586450. 2029.24 0.39 0.0672069 0.0596834 25474 144626 -1 2128 20 1410 2389 151377 37388 3.7954 3.7954 -133.896 -3.7954 0 0 744469. 2576.02 0.03 0.04 0.08 -1 -1 0.03 0.0158466 0.0141663 138 65 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_088.v common 5.61 vpr 65.12 MiB -1 -1 0.12 18440 1 0.03 -1 -1 30108 -1 -1 22 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66684 32 32 397 314 1 197 86 17 17 289 -1 unnamed_device 25.2 MiB 3.49 2187 1055 13694 4095 7104 2495 65.1 MiB 0.10 0.00 5.30372 4.6886 -155.532 -4.6886 4.6886 0.25 0.000362587 0.000331007 0.0357278 0.0329807 -1 -1 -1 -1 32 2864 30 6.87369e+06 307425 586450. 2029.24 0.68 0.12507 0.112141 25474 144626 -1 2190 22 1874 3084 201524 49363 3.9064 3.9064 -149.446 -3.9064 0 0 744469. 2576.02 0.03 0.08 0.08 -1 -1 0.03 0.0279863 0.0250155 142 65 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_089.v common 4.77 vpr 64.04 MiB -1 -1 0.18 17912 1 0.03 -1 -1 30160 -1 -1 17 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65576 32 32 269 231 1 170 81 17 17 289 -1 unnamed_device 24.9 MiB 2.01 2026 911 13031 5411 7150 470 64.0 MiB 0.06 0.00 4.68123 4.08363 -117.144 -4.08363 4.08363 0.25 0.000275146 0.000251503 0.021986 0.0201273 -1 -1 -1 -1 32 2111 22 6.87369e+06 237555 586450. 2029.24 1.33 0.11397 0.0992625 25474 144626 -1 1780 20 1174 1591 109623 27308 2.93201 2.93201 -108.593 -2.93201 0 0 744469. 2576.02 0.03 0.03 0.08 -1 -1 0.03 0.0129851 0.0115452 102 29 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_090.v common 3.15 vpr 64.46 MiB -1 -1 0.12 17676 1 0.02 -1 -1 30324 -1 -1 22 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66004 31 32 245 205 1 153 85 17 17 289 -1 unnamed_device 25.2 MiB 0.92 2028 920 14407 4467 8027 1913 64.5 MiB 0.09 0.00 4.79248 4.04068 -118.574 -4.04068 4.04068 0.26 0.000267498 0.000244558 0.0312119 0.0289087 -1 -1 -1 -1 28 2103 24 6.87369e+06 307425 531479. 1839.03 0.89 0.116531 0.102508 24610 126494 -1 1895 20 1292 2098 141548 34713 3.03526 3.03526 -115.93 -3.03526 0 0 648988. 2245.63 0.02 0.04 0.07 -1 -1 0.02 0.012172 0.0107774 100 4 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_091.v common 4.52 vpr 65.07 MiB -1 -1 0.12 18060 1 0.03 -1 -1 30384 -1 -1 24 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66628 32 32 348 274 1 215 88 17 17 289 -1 unnamed_device 25.2 MiB 2.04 2676 1170 8083 1952 5562 569 65.1 MiB 0.06 0.00 5.61368 4.75448 -152.304 -4.75448 4.75448 0.24 0.000340485 0.000312452 0.0175897 0.0162244 -1 -1 -1 -1 28 3115 23 6.87369e+06 335372 531479. 1839.03 1.17 0.121612 0.106252 24610 126494 -1 2580 22 2029 2754 244375 55049 4.10006 4.10006 -153.878 -4.10006 0 0 648988. 2245.63 0.02 0.06 0.07 -1 -1 0.02 0.0170113 0.0151164 141 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_092.v common 4.74 vpr 64.53 MiB -1 -1 0.12 18056 1 0.03 -1 -1 29860 -1 -1 28 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66080 32 32 356 289 1 201 92 17 17 289 -1 unnamed_device 25.2 MiB 2.09 2208 1201 15203 4959 7948 2296 64.5 MiB 0.09 0.00 6.10904 5.2802 -157.375 -5.2802 5.2802 0.26 0.000329459 0.000300811 0.0303446 0.0279453 -1 -1 -1 -1 32 2749 23 6.87369e+06 391268 586450. 2029.24 1.11 0.143611 0.125949 25474 144626 -1 2240 21 1434 2171 140842 33587 4.39535 4.39535 -145.45 -4.39535 0 0 744469. 2576.02 0.03 0.04 0.08 -1 -1 0.03 0.0163683 0.0146225 137 56 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_093.v common 3.58 vpr 65.16 MiB -1 -1 0.11 18060 1 0.03 -1 -1 30184 -1 -1 37 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66724 32 32 349 260 1 204 101 17 17 289 -1 unnamed_device 25.1 MiB 0.59 2787 1264 13966 4175 8662 1129 65.2 MiB 0.09 0.00 6.34944 5.29707 -150.39 -5.29707 5.29707 0.25 0.000641819 0.000586368 0.0256625 0.023543 -1 -1 -1 -1 26 3191 27 6.87369e+06 517032 503264. 1741.40 1.55 0.15078 0.133588 24322 120374 -1 2699 24 1873 3447 292705 65551 4.85515 4.85515 -153.959 -4.85515 0 0 618332. 2139.56 0.02 0.07 0.06 -1 -1 0.02 0.018655 0.0166398 158 3 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_094.v common 4.68 vpr 64.82 MiB -1 -1 0.13 18060 1 0.03 -1 -1 29784 -1 -1 34 30 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66372 30 32 316 264 1 165 96 17 17 289 -1 unnamed_device 25.2 MiB 1.81 2174 784 9732 2367 5855 1510 64.8 MiB 0.06 0.00 4.46215 3.60295 -103.566 -3.60295 3.60295 0.24 0.000311867 0.000285473 0.019448 0.0179445 -1 -1 -1 -1 28 2361 29 6.87369e+06 475111 531479. 1839.03 1.46 0.120329 0.105955 24610 126494 -1 1792 22 1436 2513 178226 45465 3.17456 3.17456 -108.253 -3.17456 0 0 648988. 2245.63 0.02 0.05 0.07 -1 -1 0.02 0.0176424 0.0156828 119 52 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_095.v common 3.21 vpr 64.41 MiB -1 -1 0.12 17672 1 0.03 -1 -1 30544 -1 -1 23 27 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65956 27 32 255 219 1 139 82 17 17 289 -1 unnamed_device 25.2 MiB 0.82 1612 787 10050 2715 6635 700 64.4 MiB 0.12 0.00 4.33505 3.47585 -98.4683 -3.47585 3.47585 0.24 0.000838006 0.000776448 0.0486502 0.0453067 -1 -1 -1 -1 32 1635 26 6.87369e+06 321398 586450. 2029.24 1.00 0.129214 0.114695 25474 144626 -1 1333 20 839 1234 78424 18728 2.61836 2.61836 -92.7343 -2.61836 0 0 744469. 2576.02 0.03 0.03 0.08 -1 -1 0.03 0.0122542 0.0108438 97 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_096.v common 6.04 vpr 64.92 MiB -1 -1 0.13 18060 1 0.03 -1 -1 30156 -1 -1 26 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66476 32 32 421 327 1 233 90 17 17 289 -1 unnamed_device 25.2 MiB 2.48 2919 1374 16371 4730 9445 2196 64.9 MiB 0.15 0.00 5.11591 4.4536 -142.768 -4.4536 4.4536 0.25 0.000385467 0.000353596 0.0502962 0.0461038 -1 -1 -1 -1 28 3929 41 6.87369e+06 363320 531479. 1839.03 2.06 0.199677 0.176685 24610 126494 -1 3169 20 2039 3316 292745 68186 4.14656 4.14656 -145.254 -4.14656 0 0 648988. 2245.63 0.02 0.07 0.07 -1 -1 0.02 0.0200713 0.0178199 162 65 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_097.v common 7.52 vpr 63.80 MiB -1 -1 0.14 18056 1 0.03 -1 -1 29888 -1 -1 23 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65336 31 32 365 296 1 202 86 17 17 289 -1 unnamed_device 24.5 MiB 4.65 2567 1117 15395 4375 9100 1920 63.8 MiB 0.14 0.00 6.54132 5.50252 -165.378 -5.50252 5.50252 0.35 0.00094304 0.000877411 0.0550549 0.0509965 -1 -1 -1 -1 32 2527 22 6.87369e+06 321398 586450. 2029.24 1.17 0.172222 0.152753 25474 144626 -1 2171 20 1502 2393 131573 34068 4.315 4.315 -149.599 -4.315 0 0 744469. 2576.02 0.03 0.05 0.16 -1 -1 0.03 0.0215759 0.0193293 137 64 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_098.v common 6.32 vpr 64.46 MiB -1 -1 0.13 18056 1 0.03 -1 -1 29900 -1 -1 20 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66012 32 32 331 280 1 185 84 17 17 289 -1 unnamed_device 24.9 MiB 3.54 2356 848 11247 3613 5403 2231 64.5 MiB 0.06 0.00 6.05365 4.34735 -140.957 -4.34735 4.34735 0.25 0.000314113 0.000285916 0.0209042 0.0191109 -1 -1 -1 -1 36 2307 30 6.87369e+06 279477 648988. 2245.63 1.38 0.125955 0.109635 26050 158493 -1 1710 21 1244 1786 130702 34809 3.71381 3.71381 -135.737 -3.71381 0 0 828058. 2865.25 0.03 0.04 0.09 -1 -1 0.03 0.0151241 0.0134502 115 65 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_099.v common 3.64 vpr 64.93 MiB -1 -1 0.13 18300 1 0.03 -1 -1 29928 -1 -1 33 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66492 32 32 326 263 1 176 97 17 17 289 -1 unnamed_device 25.2 MiB 1.05 2500 991 17191 5469 8763 2959 64.9 MiB 0.09 0.00 6.23855 4.94131 -133.771 -4.94131 4.94131 0.25 0.000319217 0.000287453 0.0282491 0.0257815 -1 -1 -1 -1 32 2541 23 6.87369e+06 461137 586450. 2029.24 1.16 0.135339 0.118369 25474 144626 -1 1967 20 1134 1814 128657 30637 3.5348 3.5348 -122.778 -3.5348 0 0 744469. 2576.02 0.03 0.04 0.11 -1 -1 0.03 0.0146995 0.0130737 129 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_100.v common 4.05 vpr 65.20 MiB -1 -1 0.19 18444 1 0.03 -1 -1 29872 -1 -1 34 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66764 31 32 373 294 1 197 97 17 17 289 -1 unnamed_device 25.2 MiB 1.63 2375 1162 12529 3039 8249 1241 65.2 MiB 0.07 0.00 5.24822 4.52085 -131.628 -4.52085 4.52085 0.24 0.000358061 0.000328139 0.0216078 0.0197952 -1 -1 -1 -1 32 2575 27 6.87369e+06 475111 586450. 2029.24 0.97 0.118535 0.103282 25474 144626 -1 2191 21 1428 2414 145484 35797 3.60116 3.60116 -127.313 -3.60116 0 0 744469. 2576.02 0.03 0.04 0.08 -1 -1 0.03 0.016991 0.0151674 149 50 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_101.v common 3.92 vpr 64.44 MiB -1 -1 0.12 18056 1 0.03 -1 -1 29836 -1 -1 31 30 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65988 30 32 325 268 1 172 93 17 17 289 -1 unnamed_device 24.8 MiB 2.07 2526 942 15843 4746 8425 2672 64.4 MiB 0.09 0.00 4.42088 3.6935 -105.372 -3.6935 3.6935 0.24 0.000305767 0.000279253 0.0263327 0.0240824 -1 -1 -1 -1 32 2304 24 6.87369e+06 433189 586450. 2029.24 0.37 0.0677758 0.060063 25474 144626 -1 1855 23 1310 2247 143307 35215 3.26111 3.26111 -104.441 -3.26111 0 0 744469. 2576.02 0.03 0.05 0.08 -1 -1 0.03 0.0191546 0.0170659 124 51 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_102.v common 5.92 vpr 65.10 MiB -1 -1 0.11 18440 1 0.03 -1 -1 29800 -1 -1 24 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66660 32 32 350 275 1 215 88 17 17 289 -1 unnamed_device 25.2 MiB 2.99 2913 1092 15883 6638 8299 946 65.1 MiB 0.09 0.00 5.80498 4.83838 -151.498 -4.83838 4.83838 0.24 0.00033385 0.00030469 0.0295813 0.0270307 -1 -1 -1 -1 36 3177 26 6.87369e+06 335372 648988. 2245.63 1.54 0.148107 0.129932 26050 158493 -1 2412 24 2420 3761 269815 66337 4.18536 4.18536 -142.06 -4.18536 0 0 828058. 2865.25 0.03 0.06 0.08 -1 -1 0.03 0.0188696 0.0167907 143 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_103.v common 4.43 vpr 65.22 MiB -1 -1 0.20 18056 1 0.03 -1 -1 29788 -1 -1 36 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66784 32 32 386 307 1 196 100 17 17 289 -1 unnamed_device 25.2 MiB 2.49 2629 1181 18660 5371 11070 2219 65.2 MiB 0.11 0.00 5.00583 4.14663 -139.408 -4.14663 4.14663 0.26 0.000357344 0.000326842 0.0340144 0.0312299 -1 -1 -1 -1 28 2725 24 6.87369e+06 503058 531479. 1839.03 0.46 0.0869383 0.0774914 24610 126494 -1 2433 22 1625 2600 177794 43230 3.30791 3.30791 -131.404 -3.30791 0 0 648988. 2245.63 0.02 0.05 0.07 -1 -1 0.02 0.0177087 0.0157872 148 62 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_104.v common 3.83 vpr 64.40 MiB -1 -1 0.11 17916 1 0.02 -1 -1 29796 -1 -1 19 29 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65948 29 32 269 229 1 150 80 17 17 289 -1 unnamed_device 24.9 MiB 1.50 1800 855 13152 3903 8012 1237 64.4 MiB 0.06 0.00 4.51078 3.96392 -119.802 -3.96392 3.96392 0.26 0.000278562 0.000250763 0.0228269 0.0208948 -1 -1 -1 -1 28 1573 21 6.87369e+06 265503 531479. 1839.03 0.84 0.102535 0.089372 24610 126494 -1 1449 18 1081 1538 90664 22450 2.84596 2.84596 -105.452 -2.84596 0 0 648988. 2245.63 0.04 0.05 0.12 -1 -1 0.04 0.0194379 0.0172703 101 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_105.v common 3.61 vpr 64.89 MiB -1 -1 0.11 18060 1 0.02 -1 -1 29720 -1 -1 20 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66452 32 32 310 266 1 175 84 17 17 289 -1 unnamed_device 24.9 MiB 1.23 1945 989 10881 3547 5830 1504 64.9 MiB 0.06 0.00 4.46846 3.96726 -124.286 -3.96726 3.96726 0.26 0.000539246 0.000491191 0.0218895 0.020114 -1 -1 -1 -1 32 2199 21 6.87369e+06 279477 586450. 2029.24 1.07 0.120443 0.104867 25474 144626 -1 1917 19 1282 1770 134180 30773 3.22347 3.22347 -121.937 -3.22347 0 0 744469. 2576.02 0.03 0.04 0.08 -1 -1 0.03 0.0136307 0.0121427 109 58 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_106.v common 3.23 vpr 64.45 MiB -1 -1 0.12 18444 1 0.03 -1 -1 30288 -1 -1 39 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65992 31 32 326 261 1 178 102 17 17 289 -1 unnamed_device 24.8 MiB 1.16 2369 985 12716 3543 8146 1027 64.4 MiB 0.07 0.00 5.82022 4.63448 -129.081 -4.63448 4.63448 0.25 0.000313758 0.00028752 0.0185202 0.0168858 -1 -1 -1 -1 26 2817 33 6.87369e+06 544980 503264. 1741.40 0.75 0.0722394 0.063921 24322 120374 -1 2199 25 1679 3103 232332 55175 4.5252 4.5252 -139.616 -4.5252 0 0 618332. 2139.56 0.02 0.06 0.06 -1 -1 0.02 0.0171975 0.0152355 135 33 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_107.v common 3.73 vpr 64.02 MiB -1 -1 0.11 17672 1 0.03 -1 -1 30200 -1 -1 22 29 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65560 29 32 262 224 1 168 83 17 17 289 -1 unnamed_device 24.9 MiB 1.93 2013 868 12143 3086 7739 1318 64.0 MiB 0.07 0.00 5.50062 4.39082 -119.863 -4.39082 4.39082 0.26 0.000638417 0.000596436 0.0244094 0.0224743 -1 -1 -1 -1 26 2317 25 6.87369e+06 307425 503264. 1741.40 0.40 0.0704772 0.0627406 24322 120374 -1 1903 21 1304 1681 120177 29907 3.4928 3.4928 -115.033 -3.4928 0 0 618332. 2139.56 0.02 0.04 0.06 -1 -1 0.02 0.0130638 0.0115815 104 31 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_108.v common 4.93 vpr 64.00 MiB -1 -1 0.10 17672 1 0.02 -1 -1 30192 -1 -1 16 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65532 32 32 278 238 1 158 80 17 17 289 -1 unnamed_device 24.9 MiB 2.65 2071 908 11604 3546 6151 1907 64.0 MiB 0.06 0.00 4.62988 3.89598 -123.598 -3.89598 3.89598 0.24 0.00027488 0.00025107 0.0199843 0.0182973 -1 -1 -1 -1 32 2061 26 6.87369e+06 223581 586450. 2029.24 0.99 0.101454 0.0882131 25474 144626 -1 1820 19 1201 2020 146655 33744 2.79301 2.79301 -110.871 -2.79301 0 0 744469. 2576.02 0.03 0.04 0.08 -1 -1 0.03 0.0126783 0.0112607 101 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_109.v common 4.03 vpr 65.05 MiB -1 -1 0.12 18060 1 0.03 -1 -1 29784 -1 -1 37 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66608 31 32 373 300 1 185 100 17 17 289 -1 unnamed_device 25.2 MiB 2.20 2655 991 12396 3296 8295 805 65.0 MiB 0.12 0.00 4.74418 3.88072 -123.81 -3.88072 3.88072 0.24 0.00100784 0.000938791 0.0351059 0.0323701 -1 -1 -1 -1 30 2157 23 6.87369e+06 517032 556674. 1926.21 0.44 0.0812104 0.0724896 25186 138497 -1 1772 22 1406 2370 128493 31312 2.87096 2.87096 -113.357 -2.87096 0 0 706193. 2443.58 0.03 0.04 0.08 -1 -1 0.03 0.0170484 0.0151613 141 64 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_110.v common 4.53 vpr 64.52 MiB -1 -1 0.11 17676 1 0.03 -1 -1 30204 -1 -1 19 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66064 31 32 265 230 1 169 82 17 17 289 -1 unnamed_device 25.2 MiB 1.80 2006 938 8270 2331 5442 497 64.5 MiB 0.04 0.00 4.2629 3.6763 -117.183 -3.6763 3.6763 0.25 0.00027393 0.000251177 0.0138467 0.0127085 -1 -1 -1 -1 26 2515 27 6.87369e+06 265503 503264. 1741.40 1.38 0.113204 0.0989182 24322 120374 -1 2077 22 1426 2063 144088 35253 3.24491 3.24491 -120.554 -3.24491 0 0 618332. 2139.56 0.02 0.05 0.07 -1 -1 0.02 0.017819 0.0156637 100 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_111.v common 4.78 vpr 65.08 MiB -1 -1 0.16 18440 1 0.03 -1 -1 29780 -1 -1 32 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66640 32 32 349 286 1 177 96 17 17 289 -1 unnamed_device 25.0 MiB 2.22 2443 1058 16740 5363 9029 2348 65.1 MiB 0.09 0.00 4.43988 3.7125 -116.005 -3.7125 3.7125 0.26 0.000330638 0.000302394 0.0297324 0.0273204 -1 -1 -1 -1 32 2537 48 6.87369e+06 447163 586450. 2029.24 1.13 0.162075 0.142002 25474 144626 -1 1979 19 985 1660 107053 25693 3.14681 3.14681 -112.185 -3.14681 0 0 744469. 2576.02 0.03 0.04 0.08 -1 -1 0.03 0.0153245 0.0136416 130 57 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_112.v common 4.16 vpr 64.70 MiB -1 -1 0.15 18060 1 0.03 -1 -1 29768 -1 -1 31 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66256 31 32 396 325 1 183 94 17 17 289 -1 unnamed_device 25.2 MiB 2.39 2295 980 16282 5415 8151 2716 64.7 MiB 0.09 0.00 4.1365 3.7606 -126.341 -3.7606 3.7606 0.24 0.000372826 0.000341745 0.0318259 0.0293245 -1 -1 -1 -1 32 2275 22 6.87369e+06 433189 586450. 2029.24 0.38 0.0785981 0.0701866 25474 144626 -1 1857 22 1574 2432 136184 34381 3.09951 3.09951 -122.264 -3.09951 0 0 744469. 2576.02 0.03 0.04 0.08 -1 -1 0.03 0.017615 0.0156661 136 91 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_113.v common 4.02 vpr 64.45 MiB -1 -1 0.11 18056 1 0.03 -1 -1 29760 -1 -1 18 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66000 32 32 303 262 1 154 82 17 17 289 -1 unnamed_device 24.9 MiB 1.70 1892 948 13610 3927 7739 1944 64.5 MiB 0.06 0.00 4.21775 3.46595 -110.85 -3.46595 3.46595 0.25 0.000291981 0.000266784 0.023879 0.0218333 -1 -1 -1 -1 28 2163 25 6.87369e+06 251529 531479. 1839.03 0.99 0.110338 0.0961183 24610 126494 -1 1875 22 1244 1995 152174 36647 2.85796 2.85796 -109.463 -2.85796 0 0 648988. 2245.63 0.02 0.04 0.07 -1 -1 0.02 0.0145337 0.0128796 100 57 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_114.v common 4.14 vpr 64.85 MiB -1 -1 0.15 18060 1 0.03 -1 -1 30164 -1 -1 19 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66408 32 32 290 244 1 176 83 17 17 289 -1 unnamed_device 24.9 MiB 1.43 2269 846 15023 5112 7105 2806 64.9 MiB 0.07 0.00 5.53062 4.43872 -133.042 -4.43872 4.43872 0.24 0.000284962 0.000260591 0.0256698 0.023447 -1 -1 -1 -1 34 2491 31 6.87369e+06 265503 618332. 2139.56 1.18 0.131504 0.114323 25762 151098 -1 1812 20 1302 1953 138182 35210 3.43421 3.43421 -119.565 -3.43421 0 0 787024. 2723.27 0.03 0.05 0.08 -1 -1 0.03 0.0182939 0.0160101 110 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_115.v common 4.58 vpr 64.35 MiB -1 -1 0.11 18300 1 0.03 -1 -1 30164 -1 -1 22 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65892 32 32 318 257 1 196 86 17 17 289 -1 unnamed_device 25.2 MiB 1.82 2163 1060 11048 3713 5060 2275 64.3 MiB 0.06 0.00 5.70718 4.76478 -133.796 -4.76478 4.76478 0.24 0.000307552 0.000280889 0.0197149 0.0180596 -1 -1 -1 -1 30 2427 22 6.87369e+06 307425 556674. 1926.21 1.43 0.157271 0.137375 25186 138497 -1 2020 20 1254 1731 101663 25086 3.76346 3.76346 -131.36 -3.76346 0 0 706193. 2443.58 0.03 0.04 0.07 -1 -1 0.03 0.0152417 0.0136094 128 30 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_116.v common 3.95 vpr 64.96 MiB -1 -1 0.13 18056 1 0.03 -1 -1 29816 -1 -1 29 29 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66520 29 32 324 268 1 169 90 17 17 289 -1 unnamed_device 24.9 MiB 2.06 2255 990 10140 2558 6775 807 65.0 MiB 0.07 0.00 4.47163 4.11363 -115.607 -4.11363 4.11363 0.40 0.000313842 0.00028706 0.0212981 0.0195614 -1 -1 -1 -1 30 2125 26 6.87369e+06 405241 556674. 1926.21 0.38 0.0666518 0.0590345 25186 138497 -1 1706 22 856 1609 88635 21834 3.01151 3.01151 -103.493 -3.01151 0 0 706193. 2443.58 0.03 0.04 0.07 -1 -1 0.03 0.0154263 0.0137196 123 55 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_117.v common 5.65 vpr 65.12 MiB -1 -1 0.13 18060 1 0.03 -1 -1 29772 -1 -1 24 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66680 32 32 393 312 1 215 88 17 17 289 -1 unnamed_device 25.6 MiB 2.55 2550 1006 14713 4986 7296 2431 65.1 MiB 0.09 0.00 5.75531 5.22906 -161.966 -5.22906 5.22906 0.24 0.000362547 0.00033201 0.0299732 0.0274495 -1 -1 -1 -1 34 2714 38 6.87369e+06 335372 618332. 2139.56 1.66 0.174151 0.152107 25762 151098 -1 2202 24 1965 3055 205816 51673 4.28506 4.28506 -150.228 -4.28506 0 0 787024. 2723.27 0.03 0.06 0.08 -1 -1 0.03 0.0195635 0.0173908 148 65 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_118.v common 3.35 vpr 64.40 MiB -1 -1 0.21 17676 1 0.02 -1 -1 30044 -1 -1 18 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65944 31 32 229 197 1 143 81 17 17 289 -1 unnamed_device 24.9 MiB 1.02 1779 625 4631 866 3215 550 64.4 MiB 0.02 0.00 4.01225 3.52895 -101.476 -3.52895 3.52895 0.26 0.000250149 0.000229138 0.00776917 0.00714495 -1 -1 -1 -1 30 1639 23 6.87369e+06 251529 556674. 1926.21 0.93 0.0804275 0.069412 25186 138497 -1 1219 21 737 1159 53687 15362 3.04656 3.04656 -101.409 -3.04656 0 0 706193. 2443.58 0.03 0.03 0.07 -1 -1 0.03 0.0147543 0.0131178 93 4 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_119.v common 5.06 vpr 65.28 MiB -1 -1 0.13 18060 1 0.03 -1 -1 30124 -1 -1 35 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66848 32 32 412 334 1 194 99 17 17 289 -1 unnamed_device 25.2 MiB 1.54 2354 1015 18111 5950 8835 3326 65.3 MiB 0.09 0.00 5.55115 4.44135 -143.231 -4.44135 4.44135 0.24 0.00037324 0.000341662 0.0311831 0.0284679 -1 -1 -1 -1 36 2533 50 6.87369e+06 489084 648988. 2245.63 2.14 0.218208 0.192077 26050 158493 -1 2040 21 1539 2249 177726 45330 3.99296 3.99296 -143.127 -3.99296 0 0 828058. 2865.25 0.03 0.05 0.08 -1 -1 0.03 0.0185306 0.0165275 145 90 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_120.v common 5.27 vpr 64.52 MiB -1 -1 0.12 18300 1 0.03 -1 -1 30220 -1 -1 18 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66072 32 32 376 318 1 168 82 17 17 289 -1 unnamed_device 25.2 MiB 3.41 2123 865 10762 4115 4722 1925 64.5 MiB 0.07 0.00 4.47325 3.59615 -127.488 -3.59615 3.59615 0.25 0.000337104 0.000308034 0.0274738 0.0253226 -1 -1 -1 -1 32 2183 25 6.87369e+06 251529 586450. 2029.24 0.40 0.0761496 0.0673204 25474 144626 -1 1767 22 1484 2215 152133 36159 3.15446 3.15446 -127.944 -3.15446 0 0 744469. 2576.02 0.03 0.05 0.08 -1 -1 0.03 0.0171901 0.0152467 114 96 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_121.v common 4.62 vpr 64.23 MiB -1 -1 0.13 18056 1 0.03 -1 -1 29776 -1 -1 33 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65768 32 32 360 293 1 182 97 17 17 289 -1 unnamed_device 24.9 MiB 2.31 2242 1134 8533 1953 5707 873 64.2 MiB 0.09 0.00 4.26762 4.14663 -128.445 -4.14663 4.14663 0.30 0.000656918 0.000603764 0.0275667 0.025307 -1 -1 -1 -1 28 2384 22 6.87369e+06 461137 531479. 1839.03 0.80 0.104875 0.092177 24610 126494 -1 2150 21 1079 1675 108833 27521 3.38591 3.38591 -122.541 -3.38591 0 0 648988. 2245.63 0.02 0.06 0.07 -1 -1 0.02 0.0280771 0.0250376 134 60 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_122.v common 5.89 vpr 65.18 MiB -1 -1 0.13 18060 1 0.03 -1 -1 29804 -1 -1 27 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66748 32 32 396 299 1 240 91 17 17 289 -1 unnamed_device 25.6 MiB 3.34 2861 1325 10699 2829 6710 1160 65.2 MiB 0.08 0.00 6.83115 5.96543 -180.924 -5.96543 5.96543 0.25 0.000377616 0.000346769 0.0221869 0.020377 -1 -1 -1 -1 30 3159 21 6.87369e+06 377294 556674. 1926.21 1.15 0.128384 0.113301 25186 138497 -1 2486 20 1783 2650 160621 38650 4.9295 4.9295 -162.971 -4.9295 0 0 706193. 2443.58 0.03 0.05 0.09 -1 -1 0.03 0.0179893 0.0161715 166 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_123.v common 3.42 vpr 64.37 MiB -1 -1 0.11 17676 1 0.02 -1 -1 29608 -1 -1 17 30 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65912 30 32 224 207 1 137 79 17 17 289 -1 unnamed_device 25.2 MiB 1.16 1796 583 12754 5340 6497 917 64.4 MiB 0.05 0.00 3.69857 3.16961 -92.7187 -3.16961 3.16961 0.24 0.000234624 0.000214291 0.0192412 0.0176121 -1 -1 -1 -1 30 1782 28 6.87369e+06 237555 556674. 1926.21 1.00 0.0855611 0.0741408 25186 138497 -1 1269 16 770 993 68728 19715 2.63001 2.63001 -90.3813 -2.63001 0 0 706193. 2443.58 0.03 0.03 0.07 -1 -1 0.03 0.0115953 0.0103417 78 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_124.v common 2.65 vpr 64.55 MiB -1 -1 0.11 18060 1 0.02 -1 -1 29832 -1 -1 21 30 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66104 30 32 286 239 1 151 83 17 17 289 -1 unnamed_device 24.9 MiB 0.84 1770 758 12863 4724 6383 1756 64.6 MiB 0.06 0.00 4.46678 3.90824 -117.819 -3.90824 3.90824 0.24 0.000282976 0.000258279 0.0218206 0.0199412 -1 -1 -1 -1 32 1677 18 6.87369e+06 293451 586450. 2029.24 0.39 0.0704146 0.0621642 25474 144626 -1 1359 23 1013 1508 94997 23267 2.89296 2.89296 -107.7 -2.89296 0 0 744469. 2576.02 0.04 0.06 0.14 -1 -1 0.04 0.0242749 0.0214518 106 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_125.v common 2.82 vpr 64.59 MiB -1 -1 0.15 18056 1 0.02 -1 -1 30148 -1 -1 17 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66144 32 32 296 247 1 158 81 17 17 289 -1 unnamed_device 25.4 MiB 1.05 2174 940 13381 4853 6305 2223 64.6 MiB 0.07 0.00 4.05625 3.42975 -116.374 -3.42975 3.42975 0.24 0.000299088 0.000273989 0.024265 0.0222129 -1 -1 -1 -1 30 2272 22 6.87369e+06 237555 556674. 1926.21 0.41 0.0633576 0.0560039 25186 138497 -1 1909 22 1221 2293 143256 34040 2.85696 2.85696 -116.827 -2.85696 0 0 706193. 2443.58 0.03 0.04 0.07 -1 -1 0.03 0.0147316 0.0130541 106 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_126.v common 3.03 vpr 64.39 MiB -1 -1 0.12 17672 1 0.02 -1 -1 29888 -1 -1 29 25 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65932 25 32 216 194 1 123 86 17 17 289 -1 unnamed_device 24.9 MiB 0.63 1478 521 12938 4434 5564 2940 64.4 MiB 0.05 0.00 4.10455 3.48943 -81.0717 -3.48943 3.48943 0.24 0.000223717 0.000203889 0.0164858 0.015004 -1 -1 -1 -1 30 1629 41 6.87369e+06 405241 556674. 1926.21 1.12 0.0952124 0.0819646 25186 138497 -1 1166 19 766 1360 77787 20476 2.73796 2.73796 -77.5522 -2.73796 0 0 706193. 2443.58 0.03 0.03 0.07 -1 -1 0.03 0.0101821 0.0089722 87 29 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_127.v common 3.81 vpr 65.07 MiB -1 -1 0.14 18060 1 0.03 -1 -1 30176 -1 -1 22 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66628 32 32 376 307 1 192 86 17 17 289 -1 unnamed_device 25.2 MiB 1.93 2245 1110 15017 5165 7384 2468 65.1 MiB 0.09 0.00 5.02315 4.32635 -130.464 -4.32635 4.32635 0.25 0.000345488 0.000315825 0.0292868 0.026788 -1 -1 -1 -1 32 2752 22 6.87369e+06 307425 586450. 2029.24 0.39 0.0749442 0.0663177 25474 144626 -1 2132 20 1326 2357 146716 35875 3.49806 3.49806 -125.919 -3.49806 0 0 744469. 2576.02 0.03 0.04 0.08 -1 -1 0.03 0.0162152 0.0144597 131 72 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_128.v common 4.21 vpr 64.78 MiB -1 -1 0.13 18056 1 0.03 -1 -1 29828 -1 -1 34 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66332 31 32 409 331 1 193 97 17 17 289 -1 unnamed_device 25.2 MiB 2.25 2417 956 9199 2038 6732 429 64.8 MiB 0.06 0.00 4.74423 4.19189 -134.468 -4.19189 4.19189 0.25 0.000365815 0.000335309 0.016995 0.0155775 -1 -1 -1 -1 32 2555 23 6.87369e+06 475111 586450. 2029.24 0.40 0.0696073 0.0613481 25474 144626 -1 1959 21 1593 2492 151905 37256 3.18561 3.18561 -123.559 -3.18561 0 0 744469. 2576.02 0.04 0.08 0.13 -1 -1 0.04 0.0315952 0.0282545 145 90 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_001.v common 4.16 vpr 64.96 MiB -1 -1 0.11 18056 1 0.03 -1 -1 29412 -1 -1 26 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66516 32 32 354 285 1 223 90 17 17 289 -1 unnamed_device 24.9 MiB 1.36 2668 1268 14562 3744 8579 2239 65.0 MiB 0.09 0.00 6.46147 5.42478 -161.939 -5.42478 5.42478 0.27 0.000354138 0.000325872 0.0286551 0.0264431 -1 -1 -1 -1 28 3093 28 6.89349e+06 366440 531479. 1839.03 1.39 0.149217 0.131137 24610 126494 -1 2624 19 1777 2523 168314 41073 4.42749 4.42749 -154.329 -4.42749 0 0 648988. 2245.63 0.03 0.05 0.07 -1 -1 0.03 0.0180098 0.0159135 146 50 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_002.v common 3.13 vpr 64.73 MiB -1 -1 0.12 18060 1 0.03 -1 -1 29756 -1 -1 27 30 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66288 30 32 363 293 1 229 89 17 17 289 -1 unnamed_device 25.0 MiB 1.18 2791 1263 14939 4998 7127 2814 64.7 MiB 0.08 0.00 6.19428 4.98048 -150.88 -4.98048 4.98048 0.25 0.000332168 0.000303056 0.0271095 0.0247833 -1 -1 -1 -1 32 3445 31 6.89349e+06 380534 586450. 2029.24 0.56 0.0865076 0.0767831 25474 144626 -1 2439 21 1808 2625 186782 45091 4.32429 4.32429 -146.227 -4.32429 0 0 744469. 2576.02 0.03 0.05 0.08 -1 -1 0.03 0.0164687 0.014674 152 63 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_003.v common 3.92 vpr 63.83 MiB -1 -1 0.16 18060 1 0.03 -1 -1 29808 -1 -1 21 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65360 32 32 299 247 1 190 85 17 17 289 -1 unnamed_device 24.6 MiB 1.12 2478 1102 14965 5131 8043 1791 63.8 MiB 0.10 0.00 5.35819 4.28675 -123.145 -4.28675 4.28675 0.26 0.000327491 0.000280328 0.0326438 0.0301867 -1 -1 -1 -1 38 2116 21 6.89349e+06 295971 678818. 2348.85 1.23 0.129476 0.113859 26626 170182 -1 1908 22 1051 1471 95425 22642 3.6203 3.6203 -116.676 -3.6203 0 0 902133. 3121.57 0.05 0.05 0.14 -1 -1 0.05 0.0196229 0.0174739 119 29 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_004.v common 3.21 vpr 64.77 MiB -1 -1 0.11 18056 1 0.03 -1 -1 29748 -1 -1 27 29 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66320 29 32 308 248 1 195 88 17 17 289 -1 unnamed_device 24.9 MiB 0.81 2689 1112 15493 4685 9183 1625 64.8 MiB 0.08 0.00 6.19768 4.85518 -132.85 -4.85518 4.85518 0.24 0.000305043 0.000279294 0.0254061 0.0232564 -1 -1 -1 -1 32 2525 37 6.89349e+06 380534 586450. 2029.24 1.02 0.125355 0.10906 25474 144626 -1 2095 21 1267 2022 127854 30529 3.81286 3.81286 -122.541 -3.81286 0 0 744469. 2576.02 0.03 0.04 0.08 -1 -1 0.03 0.0145113 0.0128994 130 31 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_005.v common 3.38 vpr 64.86 MiB -1 -1 0.12 18060 1 0.03 -1 -1 29824 -1 -1 25 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66416 32 32 336 268 1 211 89 17 17 289 -1 unnamed_device 24.8 MiB 1.44 2799 1150 14741 4806 7062 2873 64.9 MiB 0.09 0.00 6.91451 5.19194 -150.686 -5.19194 5.19194 0.24 0.000325479 0.000297988 0.0258125 0.023632 -1 -1 -1 -1 32 3393 21 6.89349e+06 352346 586450. 2029.24 0.46 0.0685243 0.0608933 25474 144626 -1 2453 20 1763 3114 214478 51266 4.54675 4.54675 -150.299 -4.54675 0 0 744469. 2576.02 0.04 0.08 0.11 -1 -1 0.04 0.0249649 0.022335 141 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_006.v common 3.78 vpr 64.55 MiB -1 -1 0.12 18060 1 0.03 -1 -1 29780 -1 -1 35 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66100 32 32 366 295 1 231 99 17 17 289 -1 unnamed_device 25.2 MiB 1.70 2831 1275 17883 5747 9425 2711 64.6 MiB 0.12 0.00 4.85631 3.97606 -129.432 -3.97606 3.97606 0.26 0.000347219 0.000318231 0.0368098 0.0340006 -1 -1 -1 -1 32 3207 27 6.89349e+06 493284 586450. 2029.24 0.65 0.101339 0.0899346 25474 144626 -1 2564 21 1683 2745 172590 41903 3.49866 3.49866 -125.251 -3.49866 0 0 744469. 2576.02 0.03 0.06 0.09 -1 -1 0.03 0.0203705 0.0179603 156 58 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_007.v common 2.73 vpr 63.64 MiB -1 -1 0.17 17672 1 0.03 -1 -1 30152 -1 -1 22 27 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65168 27 32 259 221 1 159 81 17 17 289 -1 unnamed_device 24.1 MiB 0.88 1787 834 12681 4344 6184 2153 63.6 MiB 0.06 0.00 4.91933 4.22379 -114.63 -4.22379 4.22379 0.25 0.000258176 0.000236283 0.020121 0.018441 -1 -1 -1 -1 32 1839 34 6.89349e+06 310065 586450. 2029.24 0.42 0.0705179 0.0621317 25474 144626 -1 1480 21 1046 1586 115082 27270 3.11381 3.11381 -103.863 -3.11381 0 0 744469. 2576.02 0.03 0.04 0.08 -1 -1 0.03 0.013738 0.0122335 104 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_008.v common 2.98 vpr 64.40 MiB -1 -1 0.16 17672 1 0.03 -1 -1 29836 -1 -1 33 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65944 31 32 271 219 1 164 96 17 17 289 -1 unnamed_device 24.8 MiB 0.58 2064 1021 15426 4233 9006 2187 64.4 MiB 0.08 0.00 4.0124 3.39815 -103.342 -3.39815 3.39815 0.25 0.000304464 0.000279784 0.0290524 0.0266819 -1 -1 -1 -1 32 2265 19 6.89349e+06 465097 586450. 2029.24 0.99 0.12256 0.107042 25474 144626 -1 1863 19 982 1779 108256 26071 2.49221 2.49221 -95.7819 -2.49221 0 0 744469. 2576.02 0.03 0.03 0.08 -1 -1 0.03 0.0130806 0.0116211 119 4 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_009.v common 3.56 vpr 64.82 MiB -1 -1 0.12 18060 1 0.03 -1 -1 29764 -1 -1 23 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66372 31 32 317 271 1 207 86 17 17 289 -1 unnamed_device 24.9 MiB 1.03 2257 970 6512 1373 4783 356 64.8 MiB 0.04 0.00 4.58785 3.71075 -120.491 -3.71075 3.71075 0.26 0.000307831 0.000282316 0.0119944 0.0109864 -1 -1 -1 -1 30 2557 25 6.89349e+06 324158 556674. 1926.21 1.21 0.11422 0.0990295 25186 138497 -1 1893 22 1510 2075 128297 33350 3.17321 3.17321 -122.163 -3.17321 0 0 706193. 2443.58 0.03 0.04 0.07 -1 -1 0.03 0.0153599 0.013634 125 64 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_010.v common 3.21 vpr 64.44 MiB -1 -1 0.11 17676 1 0.03 -1 -1 29780 -1 -1 19 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65984 32 32 298 248 1 185 83 17 17 289 -1 unnamed_device 24.9 MiB 1.12 1986 1014 8003 1763 5681 559 64.4 MiB 0.06 0.00 4.79638 4.06248 -133.531 -4.06248 4.06248 0.25 0.000293762 0.000269576 0.0208869 0.019182 -1 -1 -1 -1 30 2247 30 6.89349e+06 267783 556674. 1926.21 0.79 0.0985272 0.0859376 25186 138497 -1 1845 21 1118 1550 104372 24397 2.79711 2.79711 -117.654 -2.79711 0 0 706193. 2443.58 0.03 0.04 0.07 -1 -1 0.03 0.0142957 0.0127128 115 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_011.v common 3.56 vpr 64.48 MiB -1 -1 0.12 17912 1 0.03 -1 -1 29804 -1 -1 22 30 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66024 30 32 303 262 1 191 84 17 17 289 -1 unnamed_device 25.2 MiB 1.11 2045 1034 13992 5226 7098 1668 64.5 MiB 0.07 0.00 5.30417 4.58817 -134.271 -4.58817 4.58817 0.25 0.000285823 0.000261664 0.0234962 0.0215034 -1 -1 -1 -1 32 2570 23 6.89349e+06 310065 586450. 2029.24 1.08 0.117321 0.102048 25474 144626 -1 1928 20 1166 1543 112527 25961 3.52775 3.52775 -121.933 -3.52775 0 0 744469. 2576.02 0.03 0.04 0.08 -1 -1 0.03 0.0137984 0.0122887 121 63 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_012.v common 2.79 vpr 64.41 MiB -1 -1 0.12 18444 1 0.03 -1 -1 29740 -1 -1 18 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65956 32 32 276 237 1 171 82 17 17 289 -1 unnamed_device 24.9 MiB 1.00 2463 976 13432 3930 7414 2088 64.4 MiB 0.07 0.00 4.7073 3.6928 -114.983 -3.6928 3.6928 0.25 0.000275071 0.000252008 0.0223127 0.0204555 -1 -1 -1 -1 32 2213 22 6.89349e+06 253689 586450. 2029.24 0.39 0.0611593 0.0541867 25474 144626 -1 1780 22 1007 1381 100176 22972 2.74911 2.74911 -106.8 -2.74911 0 0 744469. 2576.02 0.03 0.03 0.08 -1 -1 0.03 0.0141439 0.0125142 103 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_013.v common 3.51 vpr 64.23 MiB -1 -1 0.12 18056 1 0.03 -1 -1 29796 -1 -1 25 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65776 32 32 344 272 1 209 89 17 17 289 -1 unnamed_device 25.2 MiB 1.38 2413 1094 15335 5171 7707 2457 64.2 MiB 0.10 0.00 4.45968 4.21034 -134.417 -4.21034 4.21034 0.25 0.000329997 0.000301932 0.0308546 0.0282959 -1 -1 -1 -1 32 2902 28 6.89349e+06 352346 586450. 2029.24 0.75 0.12445 0.110508 25474 144626 -1 2293 23 1740 2630 196717 47360 3.47746 3.47746 -126.462 -3.47746 0 0 744469. 2576.02 0.03 0.05 0.08 -1 -1 0.03 0.0169096 0.0150531 140 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_014.v common 4.58 vpr 65.01 MiB -1 -1 0.13 18060 1 0.03 -1 -1 29772 -1 -1 26 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66568 32 32 363 295 1 232 90 17 17 289 -1 unnamed_device 24.9 MiB 1.45 2789 1385 9939 2779 6391 769 65.0 MiB 0.06 0.00 6.97451 5.52182 -162.398 -5.52182 5.52182 0.25 0.000335248 0.000306745 0.0184652 0.016897 -1 -1 -1 -1 28 3357 31 6.89349e+06 366440 531479. 1839.03 1.79 0.124115 0.10906 24610 126494 -1 2785 22 1872 2537 229756 59541 4.40835 4.40835 -155.309 -4.40835 0 0 648988. 2245.63 0.02 0.06 0.07 -1 -1 0.02 0.0181619 0.0162326 151 61 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_015.v common 3.42 vpr 64.33 MiB -1 -1 0.11 17676 1 0.02 -1 -1 30272 -1 -1 21 29 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65872 29 32 248 215 1 160 82 17 17 289 -1 unnamed_device 24.9 MiB 0.98 1849 777 10762 2615 7615 532 64.3 MiB 0.05 0.00 4.18032 3.23418 -96.7477 -3.23418 3.23418 0.24 0.000255908 0.00023477 0.0168335 0.0154381 -1 -1 -1 -1 30 1844 21 6.89349e+06 295971 556674. 1926.21 1.12 0.122352 0.106443 25186 138497 -1 1498 22 967 1375 83682 21630 2.89731 2.89731 -98.7482 -2.89731 0 0 706193. 2443.58 0.03 0.04 0.08 -1 -1 0.03 0.014901 0.0131379 98 27 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_016.v common 5.13 vpr 65.03 MiB -1 -1 0.12 18060 1 0.03 -1 -1 29760 -1 -1 27 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66592 32 32 370 297 1 234 91 17 17 289 -1 unnamed_device 25.2 MiB 1.80 2606 1335 15187 5552 7119 2516 65.0 MiB 0.11 0.00 5.16764 4.22024 -136.349 -4.22024 4.22024 0.26 0.000412992 0.000382645 0.0361098 0.0332974 -1 -1 -1 -1 30 3279 35 6.89349e+06 380534 556674. 1926.21 1.79 0.162898 0.143544 25186 138497 -1 2450 20 1777 2835 162669 40771 3.68045 3.68045 -133.182 -3.68045 0 0 706193. 2443.58 0.04 0.07 0.11 -1 -1 0.04 0.02568 0.022915 156 58 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_017.v common 3.90 vpr 64.87 MiB -1 -1 0.11 18056 1 0.03 -1 -1 30200 -1 -1 23 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66424 32 32 338 269 1 204 87 17 17 289 -1 unnamed_device 25.2 MiB 1.28 2621 1087 13911 3796 7786 2329 64.9 MiB 0.08 0.00 4.95288 4.09494 -130.17 -4.09494 4.09494 0.24 0.000327812 0.000300274 0.0254079 0.0232692 -1 -1 -1 -1 36 2373 21 6.89349e+06 324158 648988. 2245.63 1.25 0.13221 0.115644 26050 158493 -1 1986 20 1185 1718 122618 29684 3.19801 3.19801 -114.684 -3.19801 0 0 828058. 2865.25 0.03 0.04 0.08 -1 -1 0.03 0.0152461 0.013601 137 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_018.v common 3.28 vpr 64.84 MiB -1 -1 0.12 17916 1 0.03 -1 -1 30116 -1 -1 25 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66392 32 32 323 276 1 215 89 17 17 289 -1 unnamed_device 24.8 MiB 1.33 2509 1207 11573 2908 7136 1529 64.8 MiB 0.07 0.00 4.33725 3.64971 -129.543 -3.64971 3.64971 0.25 0.000446323 0.000418476 0.0206661 0.0189407 -1 -1 -1 -1 30 2877 36 6.89349e+06 352346 556674. 1926.21 0.61 0.0867738 0.0767415 25186 138497 -1 2229 18 1150 1585 105826 24515 3.03215 3.03215 -122.568 -3.03215 0 0 706193. 2443.58 0.03 0.04 0.07 -1 -1 0.03 0.0147283 0.0131892 130 65 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_019.v common 2.68 vpr 64.25 MiB -1 -1 0.11 17916 1 0.02 -1 -1 29816 -1 -1 16 30 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65788 30 32 222 206 1 141 78 17 17 289 -1 unnamed_device 25.2 MiB 0.61 1681 755 9872 2574 6614 684 64.2 MiB 0.04 0.00 3.29613 2.66963 -90.6547 -2.66963 2.66963 0.24 0.000244818 0.000217441 0.016279 0.0149582 -1 -1 -1 -1 28 1581 17 6.89349e+06 225501 531479. 1839.03 0.81 0.0691751 0.060157 24610 126494 -1 1395 17 749 863 62232 15664 2.11002 2.11002 -91.215 -2.11002 0 0 648988. 2245.63 0.02 0.02 0.07 -1 -1 0.02 0.00977148 0.00866811 79 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_020.v common 3.99 vpr 64.46 MiB -1 -1 0.11 18060 1 0.03 -1 -1 30172 -1 -1 21 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66004 31 32 291 243 1 179 84 17 17 289 -1 unnamed_device 24.7 MiB 1.29 2232 990 14358 5433 7130 1795 64.5 MiB 0.07 0.00 5.72212 4.79672 -142.478 -4.79672 4.79672 0.24 0.00047536 0.000450156 0.0250063 0.0229537 -1 -1 -1 -1 28 2553 26 6.89349e+06 295971 531479. 1839.03 1.37 0.109881 0.0966787 24610 126494 -1 2028 19 1246 1876 131016 32194 3.77545 3.77545 -139.775 -3.77545 0 0 648988. 2245.63 0.02 0.04 0.07 -1 -1 0.02 0.0130579 0.0116135 115 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_021.v common 3.83 vpr 64.80 MiB -1 -1 0.12 18444 1 0.03 -1 -1 29940 -1 -1 35 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66360 32 32 342 271 1 207 99 17 17 289 -1 unnamed_device 24.8 MiB 1.07 2415 1186 18795 6653 9829 2313 64.8 MiB 0.09 0.00 6.0155 4.63443 -148.243 -4.63443 4.63443 0.25 0.000331482 0.000297849 0.0288279 0.0263868 -1 -1 -1 -1 36 2535 22 6.89349e+06 493284 648988. 2245.63 1.37 0.133607 0.116992 26050 158493 -1 2136 21 1575 2368 182986 42853 4.01424 4.01424 -140.469 -4.01424 0 0 828058. 2865.25 0.03 0.06 0.08 -1 -1 0.03 0.0195265 0.0174675 150 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_022.v common 3.80 vpr 65.02 MiB -1 -1 0.13 18064 1 0.04 -1 -1 29728 -1 -1 25 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66580 32 32 372 300 1 229 89 17 17 289 -1 unnamed_device 25.2 MiB 1.07 2872 1408 14741 4188 8680 1873 65.0 MiB 0.09 0.00 5.95345 4.79088 -146.55 -4.79088 4.79088 0.24 0.000345743 0.000316106 0.0275037 0.0252196 -1 -1 -1 -1 30 3072 30 6.89349e+06 352346 556674. 1926.21 1.31 0.14375 0.125667 25186 138497 -1 2494 21 1700 2463 172223 38111 3.67269 3.67269 -133.602 -3.67269 0 0 706193. 2443.58 0.03 0.05 0.07 -1 -1 0.03 0.0167697 0.0149365 152 62 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_023.v common 2.82 vpr 64.13 MiB -1 -1 0.11 17676 1 0.02 -1 -1 30148 -1 -1 19 26 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65668 26 32 190 182 1 126 77 17 17 289 -1 unnamed_device 25.2 MiB 0.59 1378 528 11324 4722 5741 861 64.1 MiB 0.04 0.00 2.92131 2.67071 -73.9405 -2.67071 2.67071 0.25 0.000200742 0.000182777 0.0149184 0.0136176 -1 -1 -1 -1 30 1223 26 6.89349e+06 267783 556674. 1926.21 0.88 0.0684971 0.0593734 25186 138497 -1 921 17 565 672 37400 10275 1.85675 1.85675 -65.726 -1.85675 0 0 706193. 2443.58 0.03 0.02 0.13 -1 -1 0.03 0.00849785 0.00758487 72 30 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_024.v common 2.50 vpr 64.45 MiB -1 -1 0.11 17672 1 0.03 -1 -1 29756 -1 -1 24 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65996 32 32 285 227 1 169 88 17 17 289 -1 unnamed_device 24.9 MiB 0.80 2097 1093 14908 4191 8870 1847 64.4 MiB 0.07 0.00 5.19194 4.58773 -130.119 -4.58773 4.58773 0.24 0.000291779 0.000266841 0.0240118 0.0219813 -1 -1 -1 -1 32 2488 23 6.89349e+06 338252 586450. 2029.24 0.38 0.0638837 0.0566624 25474 144626 -1 2145 20 1144 2016 159814 37055 3.49805 3.49805 -121.157 -3.49805 0 0 744469. 2576.02 0.03 0.04 0.08 -1 -1 0.03 0.0137382 0.0122388 120 3 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_025.v common 2.49 vpr 64.04 MiB -1 -1 0.11 17676 1 0.02 -1 -1 30104 -1 -1 12 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65576 32 32 173 169 1 114 76 17 17 289 -1 unnamed_device 25.2 MiB 0.50 1343 738 9516 2733 5641 1142 64.0 MiB 0.03 0.00 2.53969 2.22522 -77.1622 -2.22522 2.22522 0.24 0.000194566 0.000176679 0.0126767 0.0115566 -1 -1 -1 -1 26 1456 18 6.89349e+06 169126 503264. 1741.40 0.55 0.0594687 0.0515478 24322 120374 -1 1353 21 670 881 68720 16870 1.77811 1.77811 -79.1079 -1.77811 0 0 618332. 2139.56 0.02 0.03 0.13 -1 -1 0.02 0.00971171 0.00855551 64 3 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_026.v common 3.48 vpr 64.49 MiB -1 -1 0.12 18052 1 0.03 -1 -1 29588 -1 -1 22 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66036 32 32 300 245 1 187 86 17 17 289 -1 unnamed_device 24.9 MiB 1.13 2120 1085 9536 2559 6078 899 64.5 MiB 0.05 0.00 5.62618 4.92048 -138.071 -4.92048 4.92048 0.25 0.00030219 0.000276959 0.0167141 0.015329 -1 -1 -1 -1 32 2428 20 6.89349e+06 310065 586450. 2029.24 1.01 0.131882 0.115016 25474 144626 -1 1966 16 1004 1478 88603 22258 3.7112 3.7112 -125.676 -3.7112 0 0 744469. 2576.02 0.03 0.03 0.08 -1 -1 0.03 0.012272 0.0110367 121 24 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_027.v common 3.11 vpr 64.46 MiB -1 -1 0.11 17676 1 0.03 -1 -1 29936 -1 -1 31 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66012 32 32 297 233 1 177 95 17 17 289 -1 unnamed_device 24.6 MiB 0.69 2474 1043 16727 4808 9374 2545 64.5 MiB 0.08 0.00 4.41543 3.451 -108.699 -3.451 3.451 0.25 0.000307109 0.000276632 0.0248743 0.022735 -1 -1 -1 -1 32 2399 21 6.89349e+06 436909 586450. 2029.24 1.10 0.124692 0.108971 25474 144626 -1 2003 21 1136 2050 128645 30983 2.66571 2.66571 -101.838 -2.66571 0 0 744469. 2576.02 0.03 0.04 0.08 -1 -1 0.03 0.0145269 0.0129327 130 3 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_028.v common 3.35 vpr 63.82 MiB -1 -1 0.11 18060 1 0.03 -1 -1 29780 -1 -1 25 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65348 32 32 338 277 1 215 89 17 17 289 -1 unnamed_device 24.9 MiB 1.36 2459 1294 14741 4922 7916 1903 63.8 MiB 0.09 0.00 5.82658 4.85308 -136.949 -4.85308 4.85308 0.24 0.000317563 0.000290569 0.025462 0.0232995 -1 -1 -1 -1 32 2850 43 6.89349e+06 352346 586450. 2029.24 0.61 0.0964175 0.0847986 25474 144626 -1 2288 20 1262 1877 121444 29241 3.65326 3.65326 -130.716 -3.65326 0 0 744469. 2576.02 0.03 0.04 0.08 -1 -1 0.03 0.0153091 0.0136806 139 50 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_029.v common 3.54 vpr 64.44 MiB -1 -1 0.12 17676 1 0.03 -1 -1 29808 -1 -1 20 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65988 32 32 284 241 1 177 84 17 17 289 -1 unnamed_device 24.9 MiB 1.26 1936 1067 12894 4344 6614 1936 64.4 MiB 0.07 0.00 4.31105 3.7646 -126.911 -3.7646 3.7646 0.24 0.000281184 0.000257399 0.0213517 0.0195486 -1 -1 -1 -1 32 2226 20 6.89349e+06 281877 586450. 2029.24 0.96 0.0987942 0.0861715 25474 144626 -1 1958 21 1103 1593 110334 26241 2.69186 2.69186 -115.097 -2.69186 0 0 744469. 2576.02 0.03 0.04 0.08 -1 -1 0.03 0.0143842 0.0127846 110 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_030.v common 2.58 vpr 64.37 MiB -1 -1 0.11 17672 1 0.02 -1 -1 30264 -1 -1 21 30 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65916 30 32 262 227 1 161 83 17 17 289 -1 unnamed_device 24.9 MiB 0.86 2301 943 13043 4183 6793 2067 64.4 MiB 0.06 0.00 5.05544 4.00962 -116.333 -4.00962 4.00962 0.25 0.000274696 0.000251996 0.0211122 0.0193502 -1 -1 -1 -1 32 2109 18 6.89349e+06 295971 586450. 2029.24 0.37 0.0588309 0.0520159 25474 144626 -1 1793 21 971 1595 128041 29328 3.30785 3.30785 -109.419 -3.30785 0 0 744469. 2576.02 0.03 0.04 0.08 -1 -1 0.03 0.0162331 0.0145062 103 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_031.v common 3.34 vpr 64.19 MiB -1 -1 0.11 17916 1 0.02 -1 -1 29604 -1 -1 20 28 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65732 28 32 260 223 1 163 80 17 17 289 -1 unnamed_device 24.7 MiB 1.04 1953 1013 13324 4541 7089 1694 64.2 MiB 0.08 0.00 5.13107 4.43603 -124.612 -4.43603 4.43603 0.26 0.000270744 0.000248135 0.0269024 0.0247709 -1 -1 -1 -1 30 2187 21 6.89349e+06 281877 556674. 1926.21 0.98 0.110529 0.0969537 25186 138497 -1 1819 17 903 1571 100336 23266 3.3055 3.3055 -115.801 -3.3055 0 0 706193. 2443.58 0.03 0.03 0.07 -1 -1 0.03 0.0112853 0.0100418 104 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_032.v common 3.17 vpr 64.25 MiB -1 -1 0.10 17676 1 0.02 -1 -1 29720 -1 -1 18 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65792 32 32 253 210 1 156 82 17 17 289 -1 unnamed_device 24.8 MiB 0.85 2155 955 10228 2872 6411 945 64.2 MiB 0.05 0.00 4.55303 3.92502 -120.982 -3.92502 3.92502 0.24 0.000264604 0.000242521 0.0173918 0.015918 -1 -1 -1 -1 32 2080 26 6.89349e+06 253689 586450. 2029.24 1.01 0.103009 0.0892271 25474 144626 -1 1800 19 1015 1740 120492 28474 2.78381 2.78381 -113.151 -2.78381 0 0 744469. 2576.02 0.03 0.03 0.08 -1 -1 0.03 0.0120413 0.0106721 101 3 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_033.v common 3.00 vpr 64.44 MiB -1 -1 0.20 18056 1 0.02 -1 -1 29764 -1 -1 21 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65988 31 32 271 231 1 172 84 17 17 289 -1 unnamed_device 24.6 MiB 1.05 2571 955 9966 2827 6447 692 64.4 MiB 0.05 0.00 4.5958 3.73465 -114.886 -3.73465 3.73465 0.25 0.000280398 0.000257313 0.0163776 0.0149922 -1 -1 -1 -1 26 2565 37 6.89349e+06 295971 503264. 1741.40 0.50 0.0627421 0.0550562 24322 120374 -1 2108 18 1121 1641 117820 29274 3.19091 3.19091 -118.654 -3.19091 0 0 618332. 2139.56 0.02 0.03 0.11 -1 -1 0.02 0.0119732 0.0106622 105 30 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_034.v common 3.97 vpr 63.87 MiB -1 -1 0.12 18060 1 0.03 -1 -1 29848 -1 -1 23 29 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65404 29 32 291 250 1 185 84 17 17 289 -1 unnamed_device 24.7 MiB 1.46 2485 957 12894 3059 8335 1500 63.9 MiB 0.06 0.00 4.26057 3.6185 -104.685 -3.6185 3.6185 0.25 0.000308233 0.000278605 0.0227674 0.0209684 -1 -1 -1 -1 34 2000 20 6.89349e+06 324158 618332. 2139.56 1.16 0.133759 0.116522 25762 151098 -1 1717 18 913 1287 86496 21872 2.65071 2.65071 -97.5528 -2.65071 0 0 787024. 2723.27 0.03 0.03 0.08 -1 -1 0.03 0.0126343 0.0112802 117 54 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_035.v common 4.08 vpr 64.57 MiB -1 -1 0.14 18060 1 0.03 -1 -1 29612 -1 -1 27 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66124 32 32 367 282 1 224 91 17 17 289 -1 unnamed_device 24.9 MiB 1.04 2453 1261 14371 4620 7204 2547 64.6 MiB 0.09 0.00 5.05875 4.57545 -133.583 -4.57545 4.57545 0.25 0.000352767 0.000323289 0.0269709 0.0247561 -1 -1 -1 -1 36 2825 23 6.89349e+06 380534 648988. 2245.63 1.58 0.178928 0.157203 26050 158493 -1 2396 20 1295 2069 145934 34231 3.97056 3.97056 -127.691 -3.97056 0 0 828058. 2865.25 0.03 0.05 0.08 -1 -1 0.03 0.0167835 0.0150141 154 29 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_036.v common 4.42 vpr 64.68 MiB -1 -1 0.14 18060 1 0.03 -1 -1 30128 -1 -1 28 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66228 32 32 391 311 1 250 92 17 17 289 -1 unnamed_device 25.2 MiB 1.60 2644 1340 16238 5326 8855 2057 64.7 MiB 0.10 0.00 4.96607 4.60807 -154.992 -4.60807 4.60807 0.25 0.000361877 0.000331603 0.0308029 0.028253 -1 -1 -1 -1 32 3395 36 6.89349e+06 394628 586450. 2029.24 1.34 0.162449 0.143043 25474 144626 -1 2714 23 2107 3054 238419 53335 3.72925 3.72925 -145.858 -3.72925 0 0 744469. 2576.02 0.03 0.06 0.08 -1 -1 0.03 0.019568 0.017421 163 65 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_037.v common 2.66 vpr 64.02 MiB -1 -1 0.12 18052 1 0.02 -1 -1 29812 -1 -1 18 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65552 31 32 279 237 1 166 81 17 17 289 -1 unnamed_device 24.9 MiB 0.84 2434 989 8306 2314 5441 551 64.0 MiB 0.05 0.00 4.86668 4.04584 -122.858 -4.04584 4.04584 0.25 0.000282431 0.000258833 0.0169493 0.0155912 -1 -1 -1 -1 32 2127 23 6.89349e+06 253689 586450. 2029.24 0.40 0.0554529 0.0490594 25474 144626 -1 1912 23 1092 1705 138575 32111 3.38461 3.38461 -118.083 -3.38461 0 0 744469. 2576.02 0.04 0.06 0.12 -1 -1 0.04 0.0225944 0.0201313 107 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_038.v common 4.05 vpr 64.24 MiB -1 -1 0.14 18060 1 0.03 -1 -1 30160 -1 -1 27 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65780 31 32 370 297 1 235 90 17 17 289 -1 unnamed_device 24.9 MiB 1.59 2670 1289 13155 3308 7952 1895 64.2 MiB 0.08 0.00 5.12349 4.31155 -137.727 -4.31155 4.31155 0.24 0.00034025 0.000311385 0.0239065 0.0219058 -1 -1 -1 -1 30 2812 22 6.89349e+06 380534 556674. 1926.21 1.10 0.121591 0.106877 25186 138497 -1 2328 20 1532 2286 129522 32467 3.41065 3.41065 -129.329 -3.41065 0 0 706193. 2443.58 0.03 0.04 0.07 -1 -1 0.03 0.0161074 0.0143427 154 61 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_039.v common 3.89 vpr 65.05 MiB -1 -1 0.14 17676 1 0.03 -1 -1 30160 -1 -1 28 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66608 31 32 377 302 1 241 91 17 17 289 -1 unnamed_device 25.2 MiB 1.61 2869 1286 10291 2730 6649 912 65.0 MiB 0.07 0.00 6.59857 5.48687 -163.025 -5.48687 5.48687 0.25 0.000347488 0.000319042 0.0195108 0.0178794 -1 -1 -1 -1 32 3330 22 6.89349e+06 394628 586450. 2029.24 0.79 0.0829449 0.0732081 25474 144626 -1 2600 21 1764 2590 214962 46783 4.41735 4.41735 -155.28 -4.41735 0 0 744469. 2576.02 0.04 0.08 0.13 -1 -1 0.04 0.0280281 0.0249912 158 64 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_040.v common 3.79 vpr 64.29 MiB -1 -1 0.12 18060 1 0.03 -1 -1 30140 -1 -1 29 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65836 31 32 383 305 1 240 92 17 17 289 -1 unnamed_device 24.9 MiB 1.77 2971 1288 18308 5162 11169 1977 64.3 MiB 0.11 0.00 7.06021 5.82563 -172.459 -5.82563 5.82563 0.24 0.000352762 0.000318106 0.0338824 0.0310012 -1 -1 -1 -1 32 3079 30 6.89349e+06 408721 586450. 2029.24 0.50 0.0862449 0.076668 25474 144626 -1 2614 23 1873 2828 219295 50747 5.21269 5.21269 -171.607 -5.21269 0 0 744469. 2576.02 0.03 0.06 0.16 -1 -1 0.03 0.0202925 0.0181011 160 64 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_041.v common 3.23 vpr 64.96 MiB -1 -1 0.13 18056 1 0.04 -1 -1 29764 -1 -1 27 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66520 31 32 352 285 1 223 90 17 17 289 -1 unnamed_device 25.2 MiB 1.25 2244 1364 13356 3907 7417 2032 65.0 MiB 0.08 0.00 4.56598 4.06478 -129.084 -4.06478 4.06478 0.24 0.000332109 0.000304119 0.0239262 0.0219187 -1 -1 -1 -1 30 3087 26 6.89349e+06 380534 556674. 1926.21 0.48 0.0737516 0.0650058 25186 138497 -1 2499 20 1518 2227 158913 35691 3.44916 3.44916 -121.559 -3.44916 0 0 706193. 2443.58 0.03 0.04 0.13 -1 -1 0.03 0.0158182 0.0140933 147 55 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_042.v common 3.82 vpr 64.50 MiB -1 -1 0.12 18060 1 0.03 -1 -1 30156 -1 -1 22 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66052 32 32 291 242 1 188 86 17 17 289 -1 unnamed_device 25.2 MiB 1.22 2505 1019 15017 5391 6893 2733 64.5 MiB 0.07 0.00 5.50703 4.42605 -118.578 -4.42605 4.42605 0.24 0.000290947 0.000266089 0.024837 0.022735 -1 -1 -1 -1 30 2553 47 6.89349e+06 310065 556674. 1926.21 1.26 0.131474 0.114382 25186 138497 -1 1963 19 1069 1508 97270 23623 3.8018 3.8018 -115.623 -3.8018 0 0 706193. 2443.58 0.03 0.03 0.07 -1 -1 0.03 0.0134814 0.012024 114 27 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_043.v common 4.96 vpr 65.33 MiB -1 -1 0.13 18440 1 0.03 -1 -1 29828 -1 -1 37 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66896 32 32 457 356 1 296 101 17 17 289 -1 unnamed_device 25.6 MiB 2.07 3202 1707 11616 2831 7740 1045 65.3 MiB 0.10 0.00 6.63 5.71166 -180.923 -5.71166 5.71166 0.24 0.000421051 0.000387062 0.029106 0.0268523 -1 -1 -1 -1 32 4457 33 6.89349e+06 521472 586450. 2029.24 1.36 0.174611 0.153493 25474 144626 -1 3340 23 2283 3484 283406 73527 4.54378 4.54378 -163.759 -4.54378 0 0 744469. 2576.02 0.03 0.08 0.08 -1 -1 0.03 0.0244152 0.0218808 199 87 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_044.v common 2.47 vpr 64.36 MiB -1 -1 0.14 17676 1 0.03 -1 -1 30212 -1 -1 20 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65904 31 32 261 225 1 171 83 17 17 289 -1 unnamed_device 24.9 MiB 0.78 2305 761 9803 2301 6865 637 64.4 MiB 0.05 0.00 4.9117 3.8019 -108.91 -3.8019 3.8019 0.25 0.000282573 0.000259542 0.0176186 0.0162018 -1 -1 -1 -1 32 2072 23 6.89349e+06 281877 586450. 2029.24 0.35 0.0559811 0.0492287 25474 144626 -1 1627 20 1015 1385 86539 22892 3.18906 3.18906 -107.56 -3.18906 0 0 744469. 2576.02 0.03 0.03 0.08 -1 -1 0.03 0.0125017 0.0110861 101 28 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_045.v common 4.29 vpr 64.86 MiB -1 -1 0.12 18060 1 0.03 -1 -1 29856 -1 -1 25 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66412 31 32 337 267 1 207 88 17 17 289 -1 unnamed_device 24.9 MiB 1.31 2787 1139 8473 1978 5944 551 64.9 MiB 0.06 0.00 5.76922 4.83408 -143.835 -4.83408 4.83408 0.25 0.000323 0.000295931 0.0164862 0.0151597 -1 -1 -1 -1 28 3258 24 6.89349e+06 352346 531479. 1839.03 1.61 0.11073 0.0969671 24610 126494 -1 2479 21 1692 2507 182798 44288 4.1091 4.1091 -145.402 -4.1091 0 0 648988. 2245.63 0.02 0.05 0.07 -1 -1 0.02 0.0160239 0.0143004 139 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_046.v common 3.42 vpr 64.40 MiB -1 -1 0.14 18056 1 0.03 -1 -1 29704 -1 -1 27 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65948 32 32 349 284 1 222 91 17 17 289 -1 unnamed_device 24.8 MiB 1.38 2669 1235 9475 2196 6793 486 64.4 MiB 0.07 0.00 5.26295 4.39795 -133.209 -4.39795 4.39795 0.26 0.000355222 0.000316909 0.0220287 0.0202872 -1 -1 -1 -1 30 3163 30 6.89349e+06 380534 556674. 1926.21 0.62 0.0861179 0.0762636 25186 138497 -1 2521 38 1868 3138 263695 85979 3.45195 3.45195 -128.059 -3.45195 0 0 706193. 2443.58 0.03 0.08 0.07 -1 -1 0.03 0.0244879 0.0215511 146 53 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_047.v common 3.30 vpr 64.44 MiB -1 -1 0.22 17676 1 0.02 -1 -1 29788 -1 -1 27 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65988 32 32 291 230 1 175 91 17 17 289 -1 unnamed_device 24.9 MiB 0.71 1933 1092 14575 4579 7786 2210 64.4 MiB 0.08 0.00 4.84964 4.24939 -129.722 -4.24939 4.24939 0.24 0.00086745 0.000802011 0.0241679 0.0221141 -1 -1 -1 -1 32 2496 21 6.89349e+06 380534 586450. 2029.24 1.14 0.111521 0.0978012 25474 144626 -1 2102 21 1130 2260 167469 38040 3.607 3.607 -125.377 -3.607 0 0 744469. 2576.02 0.03 0.04 0.08 -1 -1 0.03 0.0144232 0.0128114 123 3 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_048.v common 4.01 vpr 64.57 MiB -1 -1 0.12 18060 1 0.03 -1 -1 29752 -1 -1 26 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66124 32 32 353 287 1 220 90 17 17 289 -1 unnamed_device 24.9 MiB 1.31 2606 1137 13959 4872 6200 2887 64.6 MiB 0.08 0.00 4.99599 4.43611 -128.994 -4.43611 4.43611 0.24 0.000337654 0.000308984 0.0250131 0.0228926 -1 -1 -1 -1 36 2583 24 6.89349e+06 366440 648988. 2245.63 1.32 0.134965 0.117841 26050 158493 -1 2080 19 1418 1940 131258 33952 3.32661 3.32661 -114.202 -3.32661 0 0 828058. 2865.25 0.03 0.04 0.09 -1 -1 0.03 0.0151167 0.0135052 143 55 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_049.v common 4.06 vpr 64.57 MiB -1 -1 0.11 17908 1 0.03 -1 -1 29788 -1 -1 26 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66116 32 32 361 291 1 231 90 17 17 289 -1 unnamed_device 24.9 MiB 1.46 2568 1471 16773 5286 9456 2031 64.6 MiB 0.11 0.00 5.07339 4.21419 -136.215 -4.21419 4.21419 0.25 0.000340656 0.000312322 0.0401428 0.0371406 -1 -1 -1 -1 26 3247 37 6.89349e+06 366440 503264. 1741.40 1.17 0.154223 0.136036 24322 120374 -1 2794 20 1750 2576 179633 42531 3.67355 3.67355 -137.947 -3.67355 0 0 618332. 2139.56 0.02 0.05 0.06 -1 -1 0.02 0.0159892 0.0142241 149 55 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_050.v common 5.10 vpr 65.05 MiB -1 -1 0.12 18444 1 0.03 -1 -1 29844 -1 -1 28 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66616 32 32 382 305 1 243 92 17 17 289 -1 unnamed_device 25.2 MiB 1.80 2705 1368 16031 4740 8553 2738 65.1 MiB 0.09 0.00 5.02847 4.40197 -141.012 -4.40197 4.40197 0.36 0.00035782 0.000328643 0.0292191 0.0267664 -1 -1 -1 -1 36 3034 44 6.89349e+06 394628 648988. 2245.63 1.76 0.173531 0.152219 26050 158493 -1 2623 21 1990 2843 215002 49630 3.41336 3.41336 -127.927 -3.41336 0 0 828058. 2865.25 0.03 0.06 0.08 -1 -1 0.03 0.0213513 0.0191552 160 62 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_051.v common 3.39 vpr 63.93 MiB -1 -1 0.11 18300 1 0.03 -1 -1 29748 -1 -1 23 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65464 32 32 306 248 1 188 87 17 17 289 -1 unnamed_device 24.7 MiB 0.98 2196 1143 14295 3709 9126 1460 63.9 MiB 0.08 0.00 5.64975 4.52825 -134.553 -4.52825 4.52825 0.25 0.000307577 0.000281552 0.0241934 0.0221636 -1 -1 -1 -1 26 2654 43 6.89349e+06 324158 503264. 1741.40 1.10 0.126441 0.110874 24322 120374 -1 2299 20 1441 2205 153221 36540 4.2106 4.2106 -141.768 -4.2106 0 0 618332. 2139.56 0.02 0.04 0.06 -1 -1 0.02 0.014174 0.012622 123 24 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_052.v common 2.59 vpr 64.79 MiB -1 -1 0.12 17912 1 0.03 -1 -1 29952 -1 -1 23 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66348 32 32 319 257 1 203 87 17 17 289 -1 unnamed_device 24.9 MiB 0.92 2220 1132 9303 2287 5956 1060 64.8 MiB 0.06 0.00 5.85178 4.86728 -141.077 -4.86728 4.86728 0.24 0.00031178 0.000285633 0.0165258 0.0151309 -1 -1 -1 -1 30 2732 27 6.89349e+06 324158 556674. 1926.21 0.37 0.0623473 0.0549675 25186 138497 -1 2302 22 1328 1944 126115 30047 3.82166 3.82166 -132.023 -3.82166 0 0 706193. 2443.58 0.03 0.04 0.07 -1 -1 0.03 0.015552 0.0138663 129 29 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_053.v common 3.46 vpr 64.98 MiB -1 -1 0.12 18056 1 0.03 -1 -1 29768 -1 -1 27 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66536 31 32 373 299 1 227 90 17 17 289 -1 unnamed_device 25.2 MiB 1.38 2459 1142 10944 2981 6313 1650 65.0 MiB 0.07 0.00 5.42896 4.77798 -141.248 -4.77798 4.77798 0.35 0.000351179 0.000321756 0.0206113 0.0188859 -1 -1 -1 -1 32 3654 30 6.89349e+06 380534 586450. 2029.24 0.54 0.0724628 0.0639195 25474 144626 -1 2569 21 1631 2555 180112 43962 4.02469 4.02469 -136.645 -4.02469 0 0 744469. 2576.02 0.03 0.05 0.13 -1 -1 0.03 0.0166904 0.0148941 154 62 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_054.v common 4.29 vpr 65.09 MiB -1 -1 0.17 18056 1 0.03 -1 -1 29528 -1 -1 27 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66652 32 32 387 315 1 247 91 17 17 289 -1 unnamed_device 25.2 MiB 1.78 2851 1347 7231 1595 5190 446 65.1 MiB 0.05 0.00 5.65933 4.38345 -134.94 -4.38345 4.38345 0.24 0.000357978 0.000328523 0.0146477 0.0134302 -1 -1 -1 -1 32 3284 25 6.89349e+06 380534 586450. 2029.24 1.09 0.112964 0.0982118 25474 144626 -1 2634 20 2010 2965 184477 44253 3.54626 3.54626 -130.981 -3.54626 0 0 744469. 2576.02 0.03 0.05 0.08 -1 -1 0.03 0.0169355 0.0150937 160 77 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_055.v common 4.33 vpr 64.33 MiB -1 -1 0.15 17676 1 0.02 -1 -1 29816 -1 -1 17 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65872 32 32 251 219 1 156 81 17 17 289 -1 unnamed_device 24.9 MiB 0.98 1772 720 12681 4996 6149 1536 64.3 MiB 0.05 0.00 4.27105 3.55383 -105.248 -3.55383 3.55383 0.35 0.000260874 0.00023824 0.0202907 0.0185529 -1 -1 -1 -1 32 2262 44 6.89349e+06 239595 586450. 2029.24 1.89 0.130372 0.113046 25474 144626 -1 1579 19 952 1380 99711 28807 2.81411 2.81411 -102.252 -2.81411 0 0 744469. 2576.02 0.03 0.03 0.08 -1 -1 0.03 0.0119485 0.0106421 93 23 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_056.v common 3.03 vpr 64.53 MiB -1 -1 0.11 18060 1 0.03 -1 -1 30208 -1 -1 24 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66080 32 32 341 285 1 219 88 17 17 289 -1 unnamed_device 24.9 MiB 1.23 2681 1141 15103 4277 8627 2199 64.5 MiB 0.09 0.00 5.91853 4.58813 -154.793 -4.58813 4.58813 0.25 0.000320476 0.000293647 0.0265283 0.0242834 -1 -1 -1 -1 32 2780 22 6.89349e+06 338252 586450. 2029.24 0.40 0.0714864 0.0634616 25474 144626 -1 2260 21 1752 2418 177496 42479 3.78384 3.78384 -143.369 -3.78384 0 0 744469. 2576.02 0.03 0.05 0.08 -1 -1 0.03 0.0157346 0.0140365 137 65 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_057.v common 3.73 vpr 65.04 MiB -1 -1 0.13 18444 1 0.03 -1 -1 29980 -1 -1 29 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66600 32 32 387 293 1 237 93 17 17 289 -1 unnamed_device 25.6 MiB 1.16 2868 1359 7443 1583 5363 497 65.0 MiB 0.06 0.00 6.45037 5.51607 -162.931 -5.51607 5.51607 0.24 0.000366596 0.000336094 0.0148177 0.0136169 -1 -1 -1 -1 32 3548 27 6.89349e+06 408721 586450. 2029.24 1.21 0.122099 0.106722 25474 144626 -1 2719 24 1840 2982 202888 48705 4.85635 4.85635 -159.726 -4.85635 0 0 744469. 2576.02 0.03 0.05 0.08 -1 -1 0.03 0.0194438 0.0173392 166 31 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_058.v common 2.75 vpr 64.23 MiB -1 -1 0.12 18060 1 0.03 -1 -1 29948 -1 -1 24 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65772 32 32 340 270 1 212 88 17 17 289 -1 unnamed_device 25.2 MiB 1.00 2505 1217 15493 4661 8456 2376 64.2 MiB 0.09 0.00 5.54276 4.5126 -143.919 -4.5126 4.5126 0.24 0.000326565 0.000298191 0.0283386 0.0259713 -1 -1 -1 -1 32 2665 26 6.89349e+06 338252 586450. 2029.24 0.38 0.0732243 0.065078 25474 144626 -1 2106 18 1333 1923 122925 29624 2.94921 2.94921 -122.833 -2.94921 0 0 744469. 2576.02 0.03 0.04 0.08 -1 -1 0.03 0.0145007 0.0129746 137 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_059.v common 2.83 vpr 64.14 MiB -1 -1 0.11 17672 1 0.02 -1 -1 29820 -1 -1 32 30 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65684 30 32 278 235 1 175 94 17 17 289 -1 unnamed_device 25.1 MiB 1.03 2250 1061 16282 4606 9784 1892 64.1 MiB 0.08 0.00 5.16569 4.37039 -131.236 -4.37039 4.37039 0.24 0.000283376 0.000255448 0.0231331 0.021189 -1 -1 -1 -1 30 2166 21 6.89349e+06 451003 556674. 1926.21 0.35 0.0595493 0.0527931 25186 138497 -1 1802 21 1102 1807 103448 25235 3.19625 3.19625 -118.702 -3.19625 0 0 706193. 2443.58 0.04 0.05 0.11 -1 -1 0.04 0.0200294 0.0177972 118 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_060.v common 5.65 vpr 64.85 MiB -1 -1 0.13 18440 1 0.03 -1 -1 29820 -1 -1 30 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66408 32 32 431 332 1 270 94 17 17 289 -1 unnamed_device 25.2 MiB 1.90 3075 1543 15004 4609 8067 2328 64.9 MiB 0.11 0.00 7.91759 6.34645 -186.607 -6.34645 6.34645 0.34 0.000416403 0.000382506 0.0312082 0.0287208 -1 -1 -1 -1 34 3953 24 6.89349e+06 422815 618332. 2139.56 2.22 0.207421 0.183112 25762 151098 -1 3259 22 2492 3991 303577 69677 5.59473 5.59473 -185.938 -5.59473 0 0 787024. 2723.27 0.03 0.07 0.08 -1 -1 0.03 0.0201136 0.017945 182 65 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_061.v common 3.31 vpr 64.80 MiB -1 -1 0.11 18060 1 0.03 -1 -1 29956 -1 -1 24 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66356 32 32 336 268 1 205 88 17 17 289 -1 unnamed_device 24.9 MiB 0.88 2530 936 7303 1455 5167 681 64.8 MiB 0.04 0.00 5.66882 4.76668 -140.932 -4.76668 4.76668 0.24 0.000324361 0.00029737 0.013727 0.0125967 -1 -1 -1 -1 34 2331 26 6.89349e+06 338252 618332. 2139.56 1.13 0.102032 0.089028 25762 151098 -1 1928 21 1515 2171 157974 39480 3.73286 3.73286 -126.515 -3.73286 0 0 787024. 2723.27 0.03 0.04 0.08 -1 -1 0.03 0.0156274 0.0139155 136 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_062.v common 2.77 vpr 63.61 MiB -1 -1 0.13 17676 1 0.02 -1 -1 29944 -1 -1 28 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65132 32 32 231 199 1 142 92 17 17 289 -1 unnamed_device 23.9 MiB 0.53 1762 895 10649 2847 7198 604 63.6 MiB 0.05 0.00 3.9244 3.74796 -105.814 -3.74796 3.74796 0.24 0.000268278 0.000244282 0.0179661 0.0166428 -1 -1 -1 -1 32 1907 18 6.89349e+06 394628 586450. 2029.24 0.90 0.0935599 0.0813927 25474 144626 -1 1683 19 741 1322 94047 22538 2.77811 2.77811 -100.732 -2.77811 0 0 744469. 2576.02 0.03 0.03 0.08 -1 -1 0.03 0.0110016 0.00974569 96 3 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_063.v common 4.11 vpr 64.88 MiB -1 -1 0.14 18056 1 0.03 -1 -1 29820 -1 -1 27 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66440 32 32 349 273 1 214 91 17 17 289 -1 unnamed_device 24.8 MiB 1.25 3131 1378 18043 5544 10561 1938 64.9 MiB 0.11 0.00 6.94676 5.55938 -147.432 -5.55938 5.55938 0.25 0.000339508 0.000310993 0.0322799 0.0295947 -1 -1 -1 -1 30 2968 27 6.89349e+06 380534 556674. 1926.21 1.36 0.143251 0.126546 25186 138497 -1 2443 20 1275 2357 162480 37915 4.27535 4.27535 -136.057 -4.27535 0 0 706193. 2443.58 0.03 0.05 0.07 -1 -1 0.03 0.0192963 0.0171527 146 29 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_064.v common 3.12 vpr 64.30 MiB -1 -1 0.10 17668 1 0.03 -1 -1 29808 -1 -1 21 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65844 32 32 247 207 1 153 85 17 17 289 -1 unnamed_device 24.9 MiB 0.71 2118 762 14407 5564 6574 2269 64.3 MiB 0.06 0.00 4.4685 3.6244 -108.803 -3.6244 3.6244 0.24 0.000261105 0.000238587 0.0216374 0.0197903 -1 -1 -1 -1 34 1873 19 6.89349e+06 295971 618332. 2139.56 1.12 0.118262 0.102525 25762 151098 -1 1576 20 1144 2018 129507 32747 2.93836 2.93836 -105.161 -2.93836 0 0 787024. 2723.27 0.03 0.04 0.08 -1 -1 0.03 0.0122186 0.0108317 99 3 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_065.v common 3.40 vpr 64.37 MiB -1 -1 0.12 17676 1 0.03 -1 -1 29832 -1 -1 24 30 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65912 30 32 278 235 1 175 86 17 17 289 -1 unnamed_device 24.7 MiB 1.03 2617 994 11426 3379 7154 893 64.4 MiB 0.06 0.00 5.48567 4.35797 -127.583 -4.35797 4.35797 0.25 0.000284282 0.000261237 0.0182379 0.0167215 -1 -1 -1 -1 30 2087 21 6.89349e+06 338252 556674. 1926.21 1.02 0.105116 0.0921757 25186 138497 -1 1740 21 1006 1535 104945 23844 3.05475 3.05475 -111.469 -3.05475 0 0 706193. 2443.58 0.03 0.03 0.07 -1 -1 0.03 0.0135113 0.011984 110 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_066.v common 4.35 vpr 64.92 MiB -1 -1 0.15 18064 1 0.03 -1 -1 30120 -1 -1 29 29 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66480 29 32 355 287 1 223 90 17 17 289 -1 unnamed_device 25.2 MiB 1.68 3036 1235 16170 4166 10388 1616 64.9 MiB 0.12 0.00 6.20943 4.65473 -135.021 -4.65473 4.65473 0.26 0.000340499 0.000312371 0.0380566 0.0352096 -1 -1 -1 -1 30 2943 33 6.89349e+06 408721 556674. 1926.21 1.24 0.150728 0.132472 25186 138497 -1 2341 19 1282 1890 114886 27835 3.41865 3.41865 -124.026 -3.41865 0 0 706193. 2443.58 0.03 0.04 0.07 -1 -1 0.03 0.0150858 0.0134617 150 62 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_067.v common 4.30 vpr 64.95 MiB -1 -1 0.12 18060 1 0.03 -1 -1 29764 -1 -1 27 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66508 32 32 358 289 1 230 91 17 17 289 -1 unnamed_device 24.9 MiB 1.53 2704 1306 16819 4681 10419 1719 64.9 MiB 0.09 0.00 6.50098 4.98955 -155.576 -4.98955 4.98955 0.32 0.000334926 0.000306435 0.0292019 0.0266694 -1 -1 -1 -1 30 2937 26 6.89349e+06 380534 556674. 1926.21 1.17 0.135449 0.118337 25186 138497 -1 2245 22 1603 2359 152417 37029 4.30739 4.30739 -148.653 -4.30739 0 0 706193. 2443.58 0.03 0.04 0.07 -1 -1 0.03 0.0166872 0.0148652 149 54 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_068.v common 4.36 vpr 64.91 MiB -1 -1 0.13 18060 1 0.03 -1 -1 30160 -1 -1 25 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66472 32 32 353 285 1 227 89 17 17 289 -1 unnamed_device 24.9 MiB 1.57 2686 1321 12959 3747 7875 1337 64.9 MiB 0.08 0.00 6.75127 5.45967 -157.239 -5.45967 5.45967 0.34 0.000333505 0.000305472 0.0233836 0.0214198 -1 -1 -1 -1 30 3232 23 6.89349e+06 352346 556674. 1926.21 1.24 0.13275 0.115861 25186 138497 -1 2671 21 1571 2337 162253 37482 4.45865 4.45865 -150.907 -4.45865 0 0 706193. 2443.58 0.03 0.05 0.12 -1 -1 0.03 0.016106 0.0143412 144 51 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_069.v common 3.50 vpr 64.39 MiB -1 -1 0.11 17676 1 0.03 -1 -1 29756 -1 -1 18 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65940 32 32 276 237 1 165 82 17 17 289 -1 unnamed_device 24.9 MiB 1.13 1895 1005 11652 3070 6952 1630 64.4 MiB 0.07 0.00 5.1192 4.9044 -138.677 -4.9044 4.9044 0.26 0.000278309 0.000254748 0.0235075 0.0216386 -1 -1 -1 -1 32 2185 33 6.89349e+06 253689 586450. 2029.24 1.01 0.115145 0.100551 25474 144626 -1 1883 14 742 1011 79811 18262 3.27225 3.27225 -119.982 -3.27225 0 0 744469. 2576.02 0.03 0.03 0.08 -1 -1 0.03 0.0114505 0.0102782 103 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_070.v common 3.91 vpr 64.19 MiB -1 -1 0.12 18060 1 0.03 -1 -1 30176 -1 -1 22 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65728 31 32 319 272 1 203 85 17 17 289 -1 unnamed_device 25.2 MiB 1.37 2292 1146 15523 5307 8105 2111 64.2 MiB 0.10 0.00 4.5444 3.67535 -123.05 -3.67535 3.67535 0.25 0.000307579 0.000282148 0.0348281 0.0320625 -1 -1 -1 -1 34 2599 23 6.89349e+06 310065 618332. 2139.56 1.15 0.134759 0.118755 25762 151098 -1 2270 20 1476 2059 153853 36261 3.29286 3.29286 -123.024 -3.29286 0 0 787024. 2723.27 0.03 0.04 0.08 -1 -1 0.03 0.0143522 0.0127744 125 64 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_071.v common 4.12 vpr 64.14 MiB -1 -1 0.12 18064 1 0.03 -1 -1 29804 -1 -1 27 30 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65684 30 32 329 273 1 213 89 17 17 289 -1 unnamed_device 24.6 MiB 1.51 2646 1203 12761 3384 8201 1176 64.1 MiB 0.07 0.00 4.5069 3.773 -110.836 -3.773 3.773 0.24 0.000311783 0.000285761 0.02181 0.0200015 -1 -1 -1 -1 28 2719 25 6.89349e+06 380534 531479. 1839.03 1.20 0.137278 0.120489 24610 126494 -1 2355 23 1698 2575 179984 42945 3.00476 3.00476 -111.209 -3.00476 0 0 648988. 2245.63 0.02 0.05 0.07 -1 -1 0.02 0.0163353 0.0144894 139 57 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_072.v common 3.37 vpr 64.45 MiB -1 -1 0.11 17676 1 0.03 -1 -1 29840 -1 -1 26 28 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66000 28 32 277 229 1 171 86 17 17 289 -1 unnamed_device 25.2 MiB 0.89 2290 995 14639 5073 7461 2105 64.5 MiB 0.07 0.00 5.43839 4.41095 -114.576 -4.41095 4.41095 0.24 0.000281419 0.000258556 0.0248781 0.0228497 -1 -1 -1 -1 30 2148 20 6.89349e+06 366440 556674. 1926.21 1.07 0.103487 0.0905008 25186 138497 -1 1844 17 968 1744 111480 25633 3.44096 3.44096 -108.289 -3.44096 0 0 706193. 2443.58 0.03 0.03 0.07 -1 -1 0.03 0.011729 0.0104772 116 27 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_073.v common 3.60 vpr 64.80 MiB -1 -1 0.12 18056 1 0.03 -1 -1 29776 -1 -1 23 30 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66352 30 32 317 269 1 202 85 17 17 289 -1 unnamed_device 24.9 MiB 1.62 2526 1178 15151 5407 7948 1796 64.8 MiB 0.08 0.00 6.03926 4.84252 -145.079 -4.84252 4.84252 0.36 0.000308102 0.00028241 0.0259855 0.0238032 -1 -1 -1 -1 32 2638 26 6.89349e+06 324158 586450. 2029.24 0.54 0.0727006 0.0644386 25474 144626 -1 2199 17 1333 1877 129448 30773 3.77919 3.77919 -132.955 -3.77919 0 0 744469. 2576.02 0.03 0.04 0.08 -1 -1 0.03 0.0129051 0.0115612 127 63 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_074.v common 3.30 vpr 64.90 MiB -1 -1 0.18 18060 1 0.04 -1 -1 29804 -1 -1 24 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66460 32 32 335 282 1 222 88 17 17 289 -1 unnamed_device 24.9 MiB 1.19 2501 1336 13543 3628 8253 1662 64.9 MiB 0.08 0.00 4.4454 3.9442 -135.714 -3.9442 3.9442 0.24 0.000315843 0.000288919 0.0231779 0.0211775 -1 -1 -1 -1 32 3103 40 6.89349e+06 338252 586450. 2029.24 0.56 0.0750108 0.066122 25474 144626 -1 2494 23 1598 2140 158708 36808 3.28651 3.28651 -129.749 -3.28651 0 0 744469. 2576.02 0.03 0.05 0.08 -1 -1 0.03 0.0160547 0.0142476 131 65 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_075.v common 2.57 vpr 64.46 MiB -1 -1 0.13 17676 1 0.03 -1 -1 29532 -1 -1 33 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66012 31 32 293 230 1 175 96 17 17 289 -1 unnamed_device 24.7 MiB 0.63 2002 1084 14769 4409 8006 2354 64.5 MiB 0.07 0.00 5.30012 4.68052 -134.297 -4.68052 4.68052 0.24 0.000295535 0.000269833 0.0214319 0.0196168 -1 -1 -1 -1 28 2586 32 6.89349e+06 465097 531479. 1839.03 0.54 0.0663218 0.0585427 24610 126494 -1 2233 21 1356 2590 184684 43970 3.7486 3.7486 -127.386 -3.7486 0 0 648988. 2245.63 0.02 0.05 0.07 -1 -1 0.02 0.01425 0.0126423 130 4 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_076.v common 3.30 vpr 64.94 MiB -1 -1 0.11 17744 1 0.03 -1 -1 30352 -1 -1 24 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66496 32 32 350 275 1 214 88 17 17 289 -1 unnamed_device 24.9 MiB 1.40 2769 1083 6718 1366 4439 913 64.9 MiB 0.05 0.00 5.69108 4.83188 -148.303 -4.83188 4.83188 0.35 0.000338842 0.000310699 0.0130856 0.0120274 -1 -1 -1 -1 32 2917 37 6.89349e+06 338252 586450. 2029.24 0.48 0.0657926 0.0578615 25474 144626 -1 2309 21 1509 2317 154492 38324 3.91029 3.91029 -139.835 -3.91029 0 0 744469. 2576.02 0.03 0.05 0.08 -1 -1 0.03 0.016088 0.0143116 142 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_077.v common 5.21 vpr 65.04 MiB -1 -1 0.13 18440 1 0.03 -1 -1 29796 -1 -1 28 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66596 32 32 385 308 1 244 92 17 17 289 -1 unnamed_device 25.7 MiB 1.48 2790 1274 17273 5734 8473 3066 65.0 MiB 0.12 0.00 6.85201 5.78412 -176.84 -5.78412 5.78412 0.26 0.000597265 0.000566774 0.0414682 0.0383639 -1 -1 -1 -1 34 3863 36 6.89349e+06 394628 618332. 2139.56 2.28 0.215964 0.190586 25762 151098 -1 2559 23 1887 2646 185724 45717 4.97334 4.97334 -162.157 -4.97334 0 0 787024. 2723.27 0.03 0.06 0.08 -1 -1 0.03 0.0215156 0.0190645 162 65 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_078.v common 3.67 vpr 64.65 MiB -1 -1 0.12 18056 1 0.03 -1 -1 29836 -1 -1 29 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66200 32 32 387 309 1 248 93 17 17 289 -1 unnamed_device 25.2 MiB 1.66 3405 1313 11223 3015 7022 1186 64.6 MiB 0.07 0.00 6.15614 4.85896 -154.704 -4.85896 4.85896 0.24 0.000355317 0.000325773 0.0210931 0.0192759 -1 -1 -1 -1 32 3310 32 6.89349e+06 408721 586450. 2029.24 0.54 0.0745848 0.0659313 25474 144626 -1 2572 19 1527 2333 153538 35602 3.68845 3.68845 -137.066 -3.68845 0 0 744469. 2576.02 0.03 0.04 0.13 -1 -1 0.03 0.0166105 0.0147769 163 65 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_079.v common 3.71 vpr 64.38 MiB -1 -1 0.11 17672 1 0.03 -1 -1 29856 -1 -1 22 30 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65920 30 32 272 232 1 175 84 17 17 289 -1 unnamed_device 25.2 MiB 1.31 2272 918 14724 4804 7694 2226 64.4 MiB 0.07 0.00 5.36037 4.39377 -130.219 -4.39377 4.39377 0.24 0.000287341 0.000264486 0.0234956 0.0215251 -1 -1 -1 -1 30 2227 25 6.89349e+06 310065 556674. 1926.21 1.10 0.108014 0.0941904 25186 138497 -1 1897 16 970 1436 106281 24291 3.2479 3.2479 -115.807 -3.2479 0 0 706193. 2443.58 0.03 0.03 0.07 -1 -1 0.03 0.0114634 0.010241 108 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_080.v common 4.51 vpr 64.62 MiB -1 -1 0.12 18060 1 0.04 -1 -1 30192 -1 -1 29 30 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66172 30 32 375 299 1 236 91 17 17 289 -1 unnamed_device 25.2 MiB 1.55 3003 1114 16819 5989 7667 3163 64.6 MiB 0.09 0.00 6.38211 5.54961 -163.139 -5.54961 5.54961 0.25 0.000340617 0.000311648 0.0301202 0.0275803 -1 -1 -1 -1 34 2922 32 6.89349e+06 408721 618332. 2139.56 1.39 0.156699 0.137371 25762 151098 -1 2293 19 1618 2268 162682 39870 4.68838 4.68838 -154.58 -4.68838 0 0 787024. 2723.27 0.03 0.05 0.08 -1 -1 0.03 0.015856 0.0141856 159 63 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_081.v common 3.54 vpr 64.86 MiB -1 -1 0.13 17916 1 0.03 -1 -1 29880 -1 -1 25 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66420 32 32 340 270 1 204 89 17 17 289 -1 unnamed_device 24.9 MiB 0.94 2652 1098 15731 5114 8768 1849 64.9 MiB 0.09 0.00 5.91759 5.21145 -150.283 -5.21145 5.21145 0.24 0.000328416 0.000300997 0.028151 0.0258108 -1 -1 -1 -1 32 2768 22 6.89349e+06 352346 586450. 2029.24 1.20 0.135819 0.119475 25474 144626 -1 2250 20 1419 2440 185945 44358 4.03336 4.03336 -132.792 -4.03336 0 0 744469. 2576.02 0.03 0.05 0.08 -1 -1 0.03 0.0152433 0.0136056 137 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_082.v common 4.27 vpr 64.33 MiB -1 -1 0.12 18060 1 0.03 -1 -1 29652 -1 -1 25 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65872 31 32 340 275 1 211 88 17 17 289 -1 unnamed_device 24.7 MiB 1.65 2743 1182 11788 3318 7484 986 64.3 MiB 0.07 0.00 6.23744 5.09779 -147.137 -5.09779 5.09779 0.24 0.000321184 0.000294656 0.021254 0.0194531 -1 -1 -1 -1 32 2731 26 6.89349e+06 352346 586450. 2029.24 1.07 0.113692 0.0993541 25474 144626 -1 2290 19 1442 2154 142174 34243 4.42139 4.42139 -145.725 -4.42139 0 0 744469. 2576.02 0.03 0.04 0.09 -1 -1 0.03 0.0147709 0.0132276 139 47 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_083.v common 4.19 vpr 64.57 MiB -1 -1 0.15 18060 1 0.03 -1 -1 30520 -1 -1 30 30 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66120 30 32 377 310 1 239 92 17 17 289 -1 unnamed_device 24.9 MiB 1.58 3065 1308 17480 5851 9201 2428 64.6 MiB 0.11 0.00 6.31486 5.04907 -145.771 -5.04907 5.04907 0.25 0.000363407 0.000333582 0.034511 0.0317521 -1 -1 -1 -1 34 2995 23 6.89349e+06 422815 618332. 2139.56 1.11 0.131067 0.115037 25762 151098 -1 2440 29 2151 3033 223442 62433 3.98754 3.98754 -132.06 -3.98754 0 0 787024. 2723.27 0.03 0.07 0.08 -1 -1 0.03 0.0212267 0.0187147 160 83 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_084.v common 4.21 vpr 64.60 MiB -1 -1 0.14 18444 1 0.03 -1 -1 30172 -1 -1 25 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66148 32 32 365 294 1 230 89 17 17 289 -1 unnamed_device 25.1 MiB 1.54 2903 1193 13553 4146 6698 2709 64.6 MiB 0.09 0.00 6.82527 5.54847 -159.396 -5.54847 5.54847 0.24 0.000340769 0.000311467 0.0254812 0.0233158 -1 -1 -1 -1 36 2667 24 6.89349e+06 352346 648988. 2245.63 1.27 0.129417 0.113035 26050 158493 -1 2183 22 1623 2400 146356 36675 4.41775 4.41775 -145.775 -4.41775 0 0 828058. 2865.25 0.03 0.05 0.08 -1 -1 0.03 0.0172307 0.0153579 150 57 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_085.v common 4.61 vpr 64.64 MiB -1 -1 0.13 18060 1 0.03 -1 -1 30156 -1 -1 31 29 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66188 29 32 378 310 1 246 92 17 17 289 -1 unnamed_device 25.2 MiB 1.49 2857 1221 11684 3249 7028 1407 64.6 MiB 0.07 0.00 5.69689 4.40161 -128.825 -4.40161 4.40161 0.24 0.000347187 0.000318839 0.0212948 0.0195102 -1 -1 -1 -1 30 3093 22 6.89349e+06 436909 556674. 1926.21 1.62 0.150322 0.131694 25186 138497 -1 2297 20 1507 2044 138797 32504 3.501 3.501 -118.443 -3.501 0 0 706193. 2443.58 0.04 0.07 0.12 -1 -1 0.04 0.027885 0.0249954 162 85 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_086.v common 3.09 vpr 64.28 MiB -1 -1 0.10 17672 1 0.02 -1 -1 30312 -1 -1 18 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65820 32 32 243 205 1 149 82 17 17 289 -1 unnamed_device 24.9 MiB 0.72 1910 928 13788 4105 7638 2045 64.3 MiB 0.06 0.00 4.56098 4.02268 -121.319 -4.02268 4.02268 0.25 0.000259422 0.000237335 0.0213947 0.0196035 -1 -1 -1 -1 32 1927 19 6.89349e+06 253689 586450. 2029.24 0.99 0.101249 0.0880851 25474 144626 -1 1681 21 920 1495 107983 25474 2.89716 2.89716 -108.882 -2.89716 0 0 744469. 2576.02 0.04 0.07 0.08 -1 -1 0.04 0.0266531 0.0236216 96 3 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_087.v common 4.16 vpr 64.99 MiB -1 -1 0.13 18060 1 0.03 -1 -1 29764 -1 -1 28 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66552 32 32 373 302 1 241 92 17 17 289 -1 unnamed_device 25.2 MiB 1.26 3226 1286 16652 5101 8812 2739 65.0 MiB 0.10 0.00 7.53678 5.6817 -168.121 -5.6817 5.6817 0.25 0.000349472 0.000320694 0.0296423 0.0271629 -1 -1 -1 -1 34 3248 37 6.89349e+06 394628 618332. 2139.56 1.48 0.155596 0.136385 25762 151098 -1 2485 23 1928 2763 231875 54095 4.63118 4.63118 -153.969 -4.63118 0 0 787024. 2723.27 0.03 0.06 0.08 -1 -1 0.03 0.0185313 0.0165548 156 65 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_088.v common 3.82 vpr 64.70 MiB -1 -1 0.17 18060 1 0.03 -1 -1 29736 -1 -1 28 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66252 32 32 397 314 1 256 92 17 17 289 -1 unnamed_device 25.2 MiB 1.82 3241 1349 17066 5543 8987 2536 64.7 MiB 0.11 0.00 6.47017 5.4924 -173.425 -5.4924 5.4924 0.25 0.000365552 0.000330091 0.0320572 0.0293256 -1 -1 -1 -1 32 3371 24 6.89349e+06 394628 586450. 2029.24 0.49 0.0824342 0.0732588 25474 144626 -1 2591 21 1981 2792 182661 43773 4.46865 4.46865 -163.826 -4.46865 0 0 744469. 2576.02 0.03 0.05 0.08 -1 -1 0.03 0.017704 0.0158097 166 65 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_089.v common 3.55 vpr 64.38 MiB -1 -1 0.13 17676 1 0.02 -1 -1 30172 -1 -1 18 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65920 32 32 269 231 1 172 82 17 17 289 -1 unnamed_device 24.9 MiB 1.01 1994 1069 14144 5297 7505 1342 64.4 MiB 0.07 0.00 4.47373 3.85823 -113.356 -3.85823 3.85823 0.25 0.000269263 0.000246111 0.0229361 0.0209552 -1 -1 -1 -1 26 2405 34 6.89349e+06 253689 503264. 1741.40 1.22 0.104104 0.090382 24322 120374 -1 2118 19 1267 1650 143777 33707 3.05266 3.05266 -112.136 -3.05266 0 0 618332. 2139.56 0.02 0.04 0.06 -1 -1 0.02 0.012389 0.0110027 104 29 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_090.v common 3.15 vpr 64.09 MiB -1 -1 0.11 17672 1 0.02 -1 -1 30312 -1 -1 22 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65632 31 32 245 205 1 153 85 17 17 289 -1 unnamed_device 24.6 MiB 0.82 2028 838 14407 3892 9360 1155 64.1 MiB 0.07 0.00 4.70033 3.85018 -114.048 -3.85018 3.85018 0.24 0.000258947 0.000237202 0.0224492 0.0205414 -1 -1 -1 -1 32 1902 23 6.89349e+06 310065 586450. 2029.24 1.05 0.117197 0.101976 25474 144626 -1 1656 20 933 1613 114014 26385 2.82486 2.82486 -106.443 -2.82486 0 0 744469. 2576.02 0.03 0.03 0.08 -1 -1 0.03 0.01196 0.0105886 100 4 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_091.v common 3.10 vpr 64.52 MiB -1 -1 0.12 18056 1 0.03 -1 -1 30000 -1 -1 24 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66072 32 32 348 274 1 215 88 17 17 289 -1 unnamed_device 24.9 MiB 1.32 2676 1136 9448 2110 6726 612 64.5 MiB 0.06 0.00 5.50572 4.64652 -147.013 -4.64652 4.64652 0.25 0.000337089 0.000309156 0.0178547 0.0163613 -1 -1 -1 -1 32 2903 23 6.89349e+06 338252 586450. 2029.24 0.41 0.0621535 0.0549096 25474 144626 -1 2275 18 1479 2130 167790 37316 3.63095 3.63095 -136.052 -3.63095 0 0 744469. 2576.02 0.03 0.04 0.08 -1 -1 0.03 0.0145128 0.0129763 142 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_092.v common 4.39 vpr 64.57 MiB -1 -1 0.12 18060 1 0.03 -1 -1 29816 -1 -1 26 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66124 32 32 356 289 1 223 90 17 17 289 -1 unnamed_device 24.9 MiB 1.43 2323 1112 13758 4906 6702 2150 64.6 MiB 0.08 0.00 5.68208 4.94624 -146.779 -4.94624 4.94624 0.25 0.000331787 0.000302979 0.0262302 0.0240273 -1 -1 -1 -1 38 2572 49 6.89349e+06 366440 678818. 2348.85 1.52 0.168236 0.146876 26626 170182 -1 2205 27 1686 2316 190689 61677 4.12995 4.12995 -139.314 -4.12995 0 0 902133. 3121.57 0.03 0.06 0.09 -1 -1 0.03 0.0196348 0.0174401 145 56 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_093.v common 2.83 vpr 64.91 MiB -1 -1 0.14 18060 1 0.03 -1 -1 29788 -1 -1 37 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66464 32 32 349 260 1 204 101 17 17 289 -1 unnamed_device 24.9 MiB 0.51 2788 1276 12556 3435 8230 891 64.9 MiB 0.09 0.00 6.16499 5.16501 -145.808 -5.16501 5.16501 0.38 0.000394125 0.000363253 0.0265423 0.0244872 -1 -1 -1 -1 32 3172 25 6.89349e+06 521472 586450. 2029.24 0.72 0.0967584 0.0855786 25474 144626 -1 2570 21 1634 3205 242418 55454 4.33309 4.33309 -144.215 -4.33309 0 0 744469. 2576.02 0.03 0.06 0.08 -1 -1 0.03 0.0179264 0.0159944 158 3 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_094.v common 4.27 vpr 64.20 MiB -1 -1 0.17 18440 1 0.03 -1 -1 29780 -1 -1 28 30 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65736 30 32 316 264 1 208 90 17 17 289 -1 unnamed_device 25.2 MiB 1.21 2512 1137 8934 2329 5933 672 64.2 MiB 0.06 0.00 4.62558 3.87324 -113.147 -3.87324 3.87324 0.26 0.000430676 0.000404412 0.0194294 0.0180078 -1 -1 -1 -1 26 2997 43 6.89349e+06 394628 503264. 1741.40 1.64 0.141375 0.123852 24322 120374 -1 2387 26 1622 2422 199717 53667 3.36211 3.36211 -112.626 -3.36211 0 0 618332. 2139.56 0.02 0.06 0.07 -1 -1 0.02 0.0171514 0.0151399 133 52 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_095.v common 2.50 vpr 64.38 MiB -1 -1 0.11 17676 1 0.02 -1 -1 30560 -1 -1 24 27 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65928 27 32 255 219 1 162 83 17 17 289 -1 unnamed_device 24.9 MiB 0.89 1709 895 11423 3598 6289 1536 64.4 MiB 0.06 0.00 5.37186 4.45989 -120.873 -4.45989 4.45989 0.25 0.000258494 0.000236562 0.0197284 0.0181083 -1 -1 -1 -1 32 1885 21 6.89349e+06 338252 586450. 2029.24 0.33 0.0533561 0.0470861 25474 144626 -1 1605 17 829 1207 77343 18883 3.505 3.505 -112.859 -3.505 0 0 744469. 2576.02 0.03 0.03 0.08 -1 -1 0.03 0.0110978 0.00988432 104 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_096.v common 5.27 vpr 65.19 MiB -1 -1 0.15 18052 1 0.03 -1 -1 29756 -1 -1 31 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66756 32 32 421 327 1 271 95 17 17 289 -1 unnamed_device 25.2 MiB 1.78 3336 1650 16943 4550 10611 1782 65.2 MiB 0.17 0.00 5.75687 4.66636 -149.532 -4.66636 4.66636 0.28 0.000384059 0.000352114 0.0541153 0.0500458 -1 -1 -1 -1 32 4257 48 6.89349e+06 436909 586450. 2029.24 1.95 0.218959 0.193276 25474 144626 -1 3241 25 2181 3435 276689 69635 4.34439 4.34439 -149.479 -4.34439 0 0 744469. 2576.02 0.03 0.07 0.08 -1 -1 0.03 0.0212911 0.0189332 181 65 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_097.v common 3.79 vpr 64.60 MiB -1 -1 0.15 18060 1 0.03 -1 -1 30148 -1 -1 26 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66152 31 32 365 296 1 233 89 17 17 289 -1 unnamed_device 24.9 MiB 1.40 2877 1253 10781 3020 6724 1037 64.6 MiB 0.07 0.00 6.6941 5.817 -167.929 -5.817 5.817 0.25 0.000354766 0.00032589 0.0218487 0.0201788 -1 -1 -1 -1 30 2956 23 6.89349e+06 366440 556674. 1926.21 1.02 0.112557 0.0989778 25186 138497 -1 2341 19 1649 2421 144006 35330 4.38675 4.38675 -149.789 -4.38675 0 0 706193. 2443.58 0.03 0.04 0.07 -1 -1 0.03 0.0154389 0.0138086 151 64 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_098.v common 3.96 vpr 63.84 MiB -1 -1 0.13 18060 1 0.03 -1 -1 29908 -1 -1 23 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65376 32 32 331 280 1 221 87 17 17 289 -1 unnamed_device 24.9 MiB 1.25 2547 1197 9303 2202 6355 746 63.8 MiB 0.06 0.00 5.09387 4.28945 -141.157 -4.28945 4.28945 0.25 0.00042315 0.000395805 0.019167 0.0177577 -1 -1 -1 -1 28 3036 35 6.89349e+06 324158 531479. 1839.03 1.34 0.126513 0.110677 24610 126494 -1 2512 25 1803 2385 195350 47064 4.2519 4.2519 -146.428 -4.2519 0 0 648988. 2245.63 0.03 0.07 0.07 -1 -1 0.03 0.0238407 0.021067 132 65 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_099.v common 3.83 vpr 64.82 MiB -1 -1 0.12 18060 1 0.03 -1 -1 29904 -1 -1 24 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66380 32 32 326 263 1 203 88 17 17 289 -1 unnamed_device 25.0 MiB 1.30 2319 1186 11593 3417 7038 1138 64.8 MiB 0.07 0.00 6.11951 5.26542 -147.058 -5.26542 5.26542 0.24 0.000321945 0.000295215 0.0228394 0.0210531 -1 -1 -1 -1 30 2530 20 6.89349e+06 338252 556674. 1926.21 1.15 0.135844 0.118798 25186 138497 -1 2079 20 1172 1728 106041 25591 3.68526 3.68526 -129.365 -3.68526 0 0 706193. 2443.58 0.03 0.04 0.07 -1 -1 0.03 0.0173921 0.0156473 131 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_100.v common 3.69 vpr 65.00 MiB -1 -1 0.13 18064 1 0.03 -1 -1 30232 -1 -1 28 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66556 31 32 373 294 1 231 91 17 17 289 -1 unnamed_device 25.1 MiB 1.27 2701 1254 13759 3627 8626 1506 65.0 MiB 0.08 0.00 5.36757 4.57215 -129.401 -4.57215 4.57215 0.24 0.000371097 0.000341499 0.0274086 0.0252012 -1 -1 -1 -1 32 2893 23 6.89349e+06 394628 586450. 2029.24 1.04 0.127297 0.11159 25474 144626 -1 2390 20 1697 2539 165581 39636 3.8238 3.8238 -127.582 -3.8238 0 0 744469. 2576.02 0.03 0.05 0.08 -1 -1 0.03 0.0171484 0.0153377 158 50 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_101.v common 3.88 vpr 64.89 MiB -1 -1 0.12 18056 1 0.03 -1 -1 29868 -1 -1 27 30 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66444 30 32 325 268 1 210 89 17 17 289 -1 unnamed_device 24.9 MiB 1.36 2500 1222 15731 4428 8998 2305 64.9 MiB 0.09 0.00 5.01568 4.37438 -123.571 -4.37438 4.37438 0.24 0.000307761 0.000281755 0.0263716 0.0241537 -1 -1 -1 -1 34 2819 30 6.89349e+06 380534 618332. 2139.56 1.15 0.118553 0.103653 25762 151098 -1 2471 19 1223 1977 156412 35023 3.48615 3.48615 -117.196 -3.48615 0 0 787024. 2723.27 0.03 0.05 0.09 -1 -1 0.03 0.0169984 0.0150589 134 51 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_102.v common 4.61 vpr 64.93 MiB -1 -1 0.20 18056 1 0.03 -1 -1 29764 -1 -1 24 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66492 32 32 350 275 1 215 88 17 17 289 -1 unnamed_device 25.5 MiB 1.70 2913 1236 16468 4324 10879 1265 64.9 MiB 0.10 0.00 5.92998 4.92758 -154.078 -4.92758 4.92758 0.24 0.000375636 0.000345494 0.0296261 0.0271151 -1 -1 -1 -1 32 3235 49 6.89349e+06 338252 586450. 2029.24 1.34 0.160502 0.140912 25474 144626 -1 2641 21 1807 2827 217818 50476 3.81776 3.81776 -142.241 -3.81776 0 0 744469. 2576.02 0.03 0.05 0.08 -1 -1 0.03 0.0167762 0.0149719 143 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_103.v common 4.98 vpr 65.05 MiB -1 -1 0.12 18060 1 0.03 -1 -1 29592 -1 -1 29 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66608 32 32 386 307 1 246 93 17 17 289 -1 unnamed_device 25.2 MiB 1.63 2578 1265 14583 4645 6831 3107 65.0 MiB 0.08 0.00 4.8916 4.45823 -142.35 -4.45823 4.45823 0.24 0.000360905 0.000330749 0.0267126 0.0244643 -1 -1 -1 -1 36 3322 50 6.89349e+06 408721 648988. 2245.63 1.94 0.173141 0.15178 26050 158493 -1 2430 26 2202 3086 217671 55907 3.43671 3.43671 -127.871 -3.43671 0 0 828058. 2865.25 0.03 0.08 0.08 -1 -1 0.03 0.0275492 0.0245357 160 62 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_104.v common 2.65 vpr 64.39 MiB -1 -1 0.12 17676 1 0.02 -1 -1 29828 -1 -1 22 29 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65936 29 32 269 229 1 173 83 17 17 289 -1 unnamed_device 24.9 MiB 0.87 1941 905 12863 3695 7288 1880 64.4 MiB 0.06 0.00 4.94313 4.20923 -126.338 -4.20923 4.20923 0.28 0.000269427 0.000245811 0.0208088 0.0190655 -1 -1 -1 -1 32 1947 26 6.89349e+06 310065 586450. 2029.24 0.38 0.0634184 0.0559623 25474 144626 -1 1640 18 1223 1625 105232 25124 3.02451 3.02451 -110.783 -3.02451 0 0 744469. 2576.02 0.03 0.03 0.08 -1 -1 0.03 0.0116555 0.0103855 108 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_105.v common 3.55 vpr 64.53 MiB -1 -1 0.11 18440 1 0.02 -1 -1 30308 -1 -1 21 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66076 32 32 310 266 1 198 85 17 17 289 -1 unnamed_device 24.9 MiB 1.00 2331 1018 14593 5365 7180 2048 64.5 MiB 0.07 0.00 5.35099 4.29493 -129.187 -4.29493 4.29493 0.24 0.000296307 0.000271021 0.0248078 0.0226923 -1 -1 -1 -1 34 2466 24 6.89349e+06 295971 618332. 2139.56 1.15 0.108741 0.0947769 25762 151098 -1 1986 19 1370 1939 133873 32096 3.832 3.832 -129.652 -3.832 0 0 787024. 2723.27 0.03 0.04 0.08 -1 -1 0.03 0.0135162 0.0120723 121 58 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_106.v common 3.39 vpr 64.43 MiB -1 -1 0.12 18444 1 0.03 -1 -1 30268 -1 -1 26 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65980 31 32 326 261 1 204 89 17 17 289 -1 unnamed_device 24.9 MiB 0.97 2471 1196 14741 4167 8661 1913 64.4 MiB 0.08 0.00 5.98928 4.87948 -139.23 -4.87948 4.87948 0.24 0.000320063 0.000293836 0.024991 0.0228928 -1 -1 -1 -1 26 2979 26 6.89349e+06 366440 503264. 1741.40 1.07 0.104685 0.0918426 24322 120374 -1 2528 23 1727 2832 223076 51486 3.8639 3.8639 -135.445 -3.8639 0 0 618332. 2139.56 0.02 0.06 0.06 -1 -1 0.02 0.0164645 0.0146522 134 33 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_107.v common 3.77 vpr 63.91 MiB -1 -1 0.12 17672 1 0.03 -1 -1 29900 -1 -1 22 29 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65440 29 32 262 224 1 168 83 17 17 289 -1 unnamed_device 24.8 MiB 1.12 2013 926 8543 2203 5453 887 63.9 MiB 0.04 0.00 5.29312 4.18332 -115.535 -4.18332 4.18332 0.26 0.000268815 0.00024715 0.0138272 0.0126803 -1 -1 -1 -1 26 2277 48 6.89349e+06 310065 503264. 1741.40 1.30 0.100987 0.0875584 24322 120374 -1 2031 27 1546 2031 172833 51950 3.3714 3.3714 -109.468 -3.3714 0 0 618332. 2139.56 0.02 0.05 0.06 -1 -1 0.02 0.0154285 0.0135584 105 31 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_108.v common 3.52 vpr 63.93 MiB -1 -1 0.11 17672 1 0.03 -1 -1 29880 -1 -1 20 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65460 32 32 278 238 1 182 84 17 17 289 -1 unnamed_device 24.7 MiB 1.16 2123 1039 14358 3958 8394 2006 63.9 MiB 0.07 0.00 5.08457 4.36857 -137.465 -4.36857 4.36857 0.24 0.000278263 0.000254499 0.0233188 0.021363 -1 -1 -1 -1 30 2385 23 6.89349e+06 281877 556674. 1926.21 1.07 0.109577 0.0957306 25186 138497 -1 2017 21 1374 2007 134054 31869 3.07751 3.07751 -120.896 -3.07751 0 0 706193. 2443.58 0.03 0.04 0.07 -1 -1 0.03 0.0134373 0.0119178 109 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_109.v common 3.60 vpr 65.00 MiB -1 -1 0.13 18060 1 0.03 -1 -1 29840 -1 -1 29 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66560 31 32 373 300 1 237 92 17 17 289 -1 unnamed_device 25.6 MiB 1.50 2847 1321 9407 2126 6476 805 65.0 MiB 0.06 0.00 5.94996 4.99396 -156.415 -4.99396 4.99396 0.24 0.000346762 0.00031781 0.0173071 0.0158311 -1 -1 -1 -1 28 3256 26 6.89349e+06 408721 531479. 1839.03 0.66 0.0811964 0.0718657 24610 126494 -1 2728 22 2029 2815 203521 48201 3.81684 3.81684 -144.87 -3.81684 0 0 648988. 2245.63 0.02 0.05 0.07 -1 -1 0.02 0.0174056 0.0154965 157 64 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_110.v common 3.81 vpr 63.98 MiB -1 -1 0.18 18056 1 0.03 -1 -1 29852 -1 -1 20 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65512 31 32 265 230 1 175 83 17 17 289 -1 unnamed_device 24.9 MiB 1.23 1998 822 6203 1282 4444 477 64.0 MiB 0.04 0.00 4.0554 3.59765 -110.566 -3.59765 3.59765 0.26 0.000325594 0.000302519 0.0132653 0.0122948 -1 -1 -1 -1 34 2076 24 6.89349e+06 281877 618332. 2139.56 1.12 0.115819 0.100786 25762 151098 -1 1723 20 1130 1580 102110 25750 2.82336 2.82336 -104.389 -2.82336 0 0 787024. 2723.27 0.03 0.03 0.08 -1 -1 0.03 0.0126467 0.0112452 103 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_111.v common 3.63 vpr 64.95 MiB -1 -1 0.12 18060 1 0.03 -1 -1 30136 -1 -1 24 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66508 32 32 349 286 1 221 88 17 17 289 -1 unnamed_device 24.9 MiB 1.25 2652 1326 9253 2409 6050 794 64.9 MiB 0.07 0.00 4.83964 4.21314 -126.908 -4.21314 4.21314 0.26 0.000335167 0.000307637 0.02296 0.0211984 -1 -1 -1 -1 32 2832 23 6.89349e+06 338252 586450. 2029.24 1.03 0.113834 0.099746 25474 144626 -1 2356 20 1336 1987 129392 30987 3.4009 3.4009 -123.821 -3.4009 0 0 744469. 2576.02 0.03 0.04 0.08 -1 -1 0.03 0.0155457 0.0138799 141 57 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_112.v common 4.76 vpr 64.70 MiB -1 -1 0.13 18060 1 0.03 -1 -1 29572 -1 -1 31 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66252 31 32 396 325 1 259 94 17 17 289 -1 unnamed_device 25.2 MiB 1.76 2853 1403 14578 4264 8207 2107 64.7 MiB 0.10 0.00 5.59288 4.8279 -156.525 -4.8279 4.8279 0.26 0.000369837 0.000335668 0.0333882 0.0308902 -1 -1 -1 -1 30 3242 26 6.89349e+06 436909 556674. 1926.21 1.56 0.142469 0.12585 25186 138497 -1 2649 19 1916 2730 173100 41045 4.05069 4.05069 -152.083 -4.05069 0 0 706193. 2443.58 0.03 0.05 0.07 -1 -1 0.03 0.0168232 0.0150458 168 91 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_113.v common 3.26 vpr 64.76 MiB -1 -1 0.11 18060 1 0.03 -1 -1 29756 -1 -1 22 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66316 32 32 303 262 1 200 86 17 17 289 -1 unnamed_device 24.9 MiB 1.33 2386 1003 8213 1905 5885 423 64.8 MiB 0.07 0.00 5.08019 3.80489 -115.807 -3.80489 3.80489 0.25 0.000384058 0.000353865 0.0240162 0.0223341 -1 -1 -1 -1 26 2751 41 6.89349e+06 310065 503264. 1741.40 0.56 0.0757766 0.067046 24322 120374 -1 2325 35 2024 2740 201705 49859 3.37141 3.37141 -124.682 -3.37141 0 0 618332. 2139.56 0.03 0.07 0.07 -1 -1 0.03 0.0273323 0.0239382 121 57 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_114.v common 3.46 vpr 63.79 MiB -1 -1 0.12 18444 1 0.03 -1 -1 30148 -1 -1 19 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65324 32 32 290 244 1 176 83 17 17 289 -1 unnamed_device 24.6 MiB 0.81 2269 837 15023 5167 6942 2914 63.8 MiB 0.08 0.00 5.43847 4.34657 -130.295 -4.34657 4.34657 0.24 0.000423514 0.000388067 0.0296063 0.0270771 -1 -1 -1 -1 36 2125 20 6.89349e+06 267783 648988. 2245.63 1.29 0.13798 0.120975 26050 158493 -1 1708 21 1250 1889 158472 38821 3.16246 3.16246 -117.696 -3.16246 0 0 828058. 2865.25 0.03 0.04 0.08 -1 -1 0.03 0.0138878 0.0123302 111 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_115.v common 3.92 vpr 64.39 MiB -1 -1 0.16 18056 1 0.03 -1 -1 29808 -1 -1 23 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65940 32 32 318 257 1 197 87 17 17 289 -1 unnamed_device 24.9 MiB 1.51 2206 1061 15255 5362 7838 2055 64.4 MiB 0.12 0.00 5.66222 4.93863 -135.261 -4.93863 4.93863 0.38 0.000465778 0.000424965 0.0394743 0.0360442 -1 -1 -1 -1 32 2576 20 6.89349e+06 324158 586450. 2029.24 0.55 0.10291 0.0916188 25474 144626 -1 2067 20 1241 1762 109322 26595 3.75376 3.75376 -127.245 -3.75376 0 0 744469. 2576.02 0.03 0.04 0.12 -1 -1 0.03 0.014591 0.0129818 130 30 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_116.v common 2.99 vpr 64.83 MiB -1 -1 0.13 18060 1 0.03 -1 -1 30232 -1 -1 28 29 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66388 29 32 324 268 1 205 89 17 17 289 -1 unnamed_device 25.2 MiB 1.21 2470 1190 15335 4895 8484 1956 64.8 MiB 0.12 0.00 4.7462 4.04278 -114.91 -4.04278 4.04278 0.25 0.000470059 0.000430443 0.0387134 0.0355344 -1 -1 -1 -1 32 2572 19 6.89349e+06 394628 586450. 2029.24 0.37 0.0791568 0.070506 25474 144626 -1 2079 21 1060 1535 114324 26106 3.1022 3.1022 -107.005 -3.1022 0 0 744469. 2576.02 0.03 0.04 0.08 -1 -1 0.03 0.0151094 0.0134471 136 55 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_117.v common 3.77 vpr 65.06 MiB -1 -1 0.14 18056 1 0.03 -1 -1 29764 -1 -1 26 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66620 32 32 393 312 1 243 90 17 17 289 -1 unnamed_device 25.2 MiB 1.77 2982 1296 15567 4292 8859 2416 65.1 MiB 0.11 0.00 6.82244 5.69986 -179.713 -5.69986 5.69986 0.26 0.000519859 0.000488808 0.0338423 0.0310508 -1 -1 -1 -1 32 3149 23 6.89349e+06 366440 586450. 2029.24 0.50 0.0977618 0.086857 25474 144626 -1 2680 23 2091 3202 214974 51581 4.45265 4.45265 -163.975 -4.45265 0 0 744469. 2576.02 0.03 0.06 0.11 -1 -1 0.03 0.0183996 0.016371 162 65 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_118.v common 3.84 vpr 64.24 MiB -1 -1 0.12 17672 1 0.02 -1 -1 29940 -1 -1 18 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65784 31 32 229 197 1 143 81 17 17 289 -1 unnamed_device 24.9 MiB 1.21 1779 858 10231 2722 6503 1006 64.2 MiB 0.07 0.00 3.8889 3.28224 -101.713 -3.28224 3.28224 0.45 0.000385879 0.000354379 0.0241506 0.0220973 -1 -1 -1 -1 30 1861 20 6.89349e+06 253689 556674. 1926.21 0.74 0.0892488 0.0792797 25186 138497 -1 1517 18 846 1343 70273 18201 2.62851 2.62851 -97.2865 -2.62851 0 0 706193. 2443.58 0.04 0.04 0.11 -1 -1 0.04 0.0159301 0.0141792 93 4 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_119.v common 7.04 vpr 65.12 MiB -1 -1 0.16 18680 1 0.03 -1 -1 30100 -1 -1 31 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66684 32 32 412 334 1 269 95 17 17 289 -1 unnamed_device 25.6 MiB 2.35 3112 1429 7871 1651 5611 609 65.1 MiB 0.06 0.00 7.06988 5.66654 -175.904 -5.66654 5.66654 0.34 0.000375537 0.000339759 0.0156753 0.0143834 -1 -1 -1 -1 24 4306 40 6.89349e+06 436909 470940. 1629.55 3.01 0.164231 0.144271 24034 113901 -1 3379 35 3463 4537 442158 133615 5.55244 5.55244 -193.596 -5.55244 0 0 586450. 2029.24 0.02 0.11 0.06 -1 -1 0.02 0.0262324 0.0232024 172 90 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_120.v common 3.77 vpr 65.05 MiB -1 -1 0.13 18060 1 0.03 -1 -1 30196 -1 -1 27 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66616 32 32 376 318 1 259 91 17 17 289 -1 unnamed_device 25.2 MiB 1.60 2995 1457 17227 5058 10064 2105 65.1 MiB 0.20 0.00 6.59283 5.06664 -170.928 -5.06664 5.06664 0.28 0.00033737 0.000308852 0.0723416 0.0671243 -1 -1 -1 -1 32 3389 24 6.89349e+06 380534 586450. 2029.24 0.53 0.118774 0.107591 25474 144626 -1 2826 20 2173 2713 238525 51366 4.42408 4.42408 -166.095 -4.42408 0 0 744469. 2576.02 0.03 0.05 0.08 -1 -1 0.03 0.0158806 0.0141647 154 96 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_121.v common 4.46 vpr 64.99 MiB -1 -1 0.16 18056 1 0.04 -1 -1 30148 -1 -1 26 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66548 32 32 360 293 1 226 90 17 17 289 -1 unnamed_device 24.9 MiB 1.76 2575 1188 14361 4167 7345 2849 65.0 MiB 0.14 0.00 4.49365 4.14004 -127.133 -4.14004 4.14004 0.44 0.000619044 0.000567785 0.0472235 0.0432217 -1 -1 -1 -1 32 2842 27 6.89349e+06 366440 586450. 2029.24 0.75 0.140806 0.125491 25474 144626 -1 2167 18 1381 1988 128583 31532 3.26765 3.26765 -116.85 -3.26765 0 0 744469. 2576.02 0.03 0.04 0.08 -1 -1 0.03 0.0154305 0.0137976 147 60 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_122.v common 4.23 vpr 65.05 MiB -1 -1 0.12 18060 1 0.03 -1 -1 29792 -1 -1 27 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66616 32 32 396 299 1 240 91 17 17 289 -1 unnamed_device 25.2 MiB 1.61 2868 1421 16615 5234 8988 2393 65.1 MiB 0.10 0.00 6.7782 5.7937 -174.554 -5.7937 5.7937 0.24 0.000377195 0.000345698 0.0328161 0.0301431 -1 -1 -1 -1 32 3522 22 6.89349e+06 380534 586450. 2029.24 1.21 0.139004 0.122484 25474 144626 -1 2816 20 1940 3057 243941 59443 4.77005 4.77005 -160.085 -4.77005 0 0 744469. 2576.02 0.03 0.07 0.08 -1 -1 0.03 0.0206995 0.0185208 167 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_123.v common 2.39 vpr 63.83 MiB -1 -1 0.11 17672 1 0.02 -1 -1 30220 -1 -1 17 30 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65364 30 32 224 207 1 138 79 17 17 289 -1 unnamed_device 24.9 MiB 0.67 1877 553 12416 4327 6159 1930 63.8 MiB 0.05 0.00 3.67846 3.05196 -89.5454 -3.05196 3.05196 0.24 0.000240967 0.000220771 0.0184976 0.0169233 -1 -1 -1 -1 32 1600 50 6.89349e+06 239595 586450. 2029.24 0.41 0.0589787 0.0516028 25474 144626 -1 1097 15 520 670 46236 12957 2.13076 2.13076 -83.1557 -2.13076 0 0 744469. 2576.02 0.03 0.02 0.08 -1 -1 0.03 0.00913946 0.00819187 79 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_124.v common 2.61 vpr 64.39 MiB -1 -1 0.12 17676 1 0.02 -1 -1 29772 -1 -1 23 30 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65936 30 32 286 239 1 176 85 17 17 289 -1 unnamed_device 25.0 MiB 0.95 1847 961 11617 2788 7841 988 64.4 MiB 0.06 0.00 5.09505 4.48403 -138.191 -4.48403 4.48403 0.24 0.000279345 0.000255614 0.018968 0.0173529 -1 -1 -1 -1 32 1983 22 6.89349e+06 324158 586450. 2029.24 0.36 0.0566188 0.0499704 25474 144626 -1 1730 24 1374 2089 138709 33546 3.26135 3.26135 -120.882 -3.26135 0 0 744469. 2576.02 0.03 0.04 0.08 -1 -1 0.03 0.0151238 0.0133003 120 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_125.v common 3.15 vpr 64.11 MiB -1 -1 0.12 18064 1 0.02 -1 -1 30120 -1 -1 22 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65644 32 32 296 247 1 187 86 17 17 289 -1 unnamed_device 24.9 MiB 1.47 2379 1099 6512 1400 4709 403 64.1 MiB 0.04 0.00 5.39489 4.40387 -142.112 -4.40387 4.40387 0.24 0.000297099 0.000272253 0.0116876 0.0106979 -1 -1 -1 -1 32 2461 22 6.89349e+06 310065 586450. 2029.24 0.38 0.049722 0.04369 25474 144626 -1 2000 16 1036 1938 114017 27700 3.4032 3.4032 -130.786 -3.4032 0 0 744469. 2576.02 0.03 0.03 0.08 -1 -1 0.03 0.0118866 0.0106258 117 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_126.v common 2.54 vpr 64.23 MiB -1 -1 0.11 17676 1 0.02 -1 -1 29744 -1 -1 22 25 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65776 25 32 216 194 1 138 79 17 17 289 -1 unnamed_device 24.9 MiB 0.81 1444 623 8698 3045 3646 2007 64.2 MiB 0.04 0.00 4.2673 3.669 -85.1281 -3.669 3.669 0.24 0.000223849 0.000204642 0.0128618 0.011782 -1 -1 -1 -1 34 1477 40 6.89349e+06 310065 618332. 2139.56 0.48 0.0554996 0.0482709 25762 151098 -1 1167 17 675 1007 65080 17606 2.74431 2.74431 -76.9396 -2.74431 0 0 787024. 2723.27 0.03 0.02 0.08 -1 -1 0.03 0.00963225 0.00859939 88 29 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_127.v common 4.70 vpr 64.68 MiB -1 -1 0.13 18056 1 0.03 -1 -1 30176 -1 -1 26 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66232 32 32 376 307 1 242 90 17 17 289 -1 unnamed_device 25.2 MiB 1.91 3246 1394 13155 3589 8227 1339 64.7 MiB 0.10 0.00 5.69179 4.38685 -135.96 -4.38685 4.38685 0.27 0.00035587 0.000326364 0.0317988 0.0292838 -1 -1 -1 -1 28 3647 48 6.89349e+06 366440 531479. 1839.03 1.37 0.175343 0.154197 24610 126494 -1 2835 24 2070 3115 222959 51695 3.94436 3.94436 -138.765 -3.94436 0 0 648988. 2245.63 0.02 0.06 0.07 -1 -1 0.02 0.0182264 0.0161589 155 72 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_128.v common 3.95 vpr 64.75 MiB -1 -1 0.21 18056 1 0.03 -1 -1 29792 -1 -1 33 31 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66304 31 32 409 331 1 264 96 17 17 289 -1 unnamed_device 25.2 MiB 1.66 3421 1405 9951 2248 6876 827 64.8 MiB 0.07 0.00 6.59166 4.95446 -159.482 -4.95446 4.95446 0.26 0.000368094 0.000337513 0.0186641 0.0170676 -1 -1 -1 -1 26 4013 41 6.89349e+06 465097 503264. 1741.40 0.83 0.0913258 0.0808566 24322 120374 -1 3056 21 2358 3239 221980 53983 4.35939 4.35939 -160.133 -4.35939 0 0 618332. 2139.56 0.02 0.06 0.06 -1 -1 0.02 0.0179468 0.0160232 174 90 -1 -1 -1 -1 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/arithmetic_tasks/open_cores/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/arithmetic_tasks/open_cores/config/golden_results.txt index 2aa73474bd1..d3a8f8c6f9c 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/arithmetic_tasks/open_cores/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/arithmetic_tasks/open_cores/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 ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time num_le num_luts num_add_blocks max_add_chain_length num_sub_blocks max_sub_chain_length - k6_N8_gate_boost_0.2V_22nm.xml Md5Core.v common 346.85 vpr 1.15 GiB -1 -1 34.22 328308 27 15.05 -1 -1 138296 -1 -1 6514 641 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 1202304 641 128 52026 52154 1 22211 7283 96 96 9216 clb auto 299.9 MiB 22.55 298865 9039475 3705368 5259409 74698 1174.1 MiB 99.58 0.80 15.6652 -38327.4 -15.6652 15.6652 30.26 0.094057 0.0773765 12.1503 10.1571 -1 -1 -1 -1 52 436843 31 2.87242e+08 7.85314e+07 3.22264e+07 3496.79 84.03 34.4054 28.6501 876764 7891077 -1 405234 17 92350 208771 15162225 3092956 14.5295 14.5295 -35310.2 -14.5295 0 0 3.95636e+07 4292.92 2.28 8.25 6.87 -1 -1 2.28 3.81485 3.27893 44137 14777 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml cordic.v common 4.27 vpr 64.04 MiB -1 -1 0.87 26712 11 0.25 -1 -1 33516 -1 -1 51 54 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65580 54 51 461 512 1 281 156 11 11 121 clb auto 24.7 MiB 0.16 2356 11469 1919 8714 836 64.0 MiB 0.12 0.00 5.64506 -244.834 -5.64506 5.64506 0.13 0.00146196 0.00133342 0.0458162 0.0422569 -1 -1 -1 -1 48 5066 26 2.09946e+06 614805 317060. 2620.33 1.31 0.36651 0.319953 10252 71876 -1 4625 16 1697 8023 407060 95904 5.13857 5.13857 -230.591 -5.13857 0 0 382250. 3159.09 0.01 0.15 0.06 -1 -1 0.01 0.0499744 0.0448408 351 351 -1 -1 -1 -1 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml Md5Core.v common 399.84 vpr 1.07 GiB -1 -1 21.81 218380 1 3.70 -1 -1 145176 -1 -1 5511 641 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 1117152 641 128 55563 47815 1 19087 6280 89 89 7921 clb auto 300.2 MiB 18.05 230047 8461724 3459022 4875110 127592 1091.0 MiB 204.82 1.70 7.09259 -24894.9 -7.09259 7.09259 27.46 0.0722137 0.0620773 11.1205 9.22983 -1 -1 -1 -1 66 309563 40 2.46893e+08 6.92128e+07 3.31523e+07 4185.37 68.55 29.6499 24.5503 846610 8512169 -1 289933 30 70505 114345 10785585 2091912 4.98188 4.98188 -21717.1 -4.98188 0 0 4.13768e+07 5223.69 2.61 7.93 7.55 -1 -1 2.61 4.60052 3.86111 40340 2050 -1 -1 -1 -1 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml cordic.v common 5.46 vpr 64.67 MiB -1 -1 0.88 25784 4 0.13 -1 -1 33088 -1 -1 47 54 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 66224 54 51 503 502 1 293 152 10 10 100 clb auto 25.4 MiB 1.53 2207 8657 1268 6725 664 64.7 MiB 0.12 0.00 4.72142 -243.243 -4.72142 4.72142 0.10 0.00138683 0.00126889 0.0371909 0.0344533 -1 -1 -1 -1 44 4688 46 1.94278e+06 590226 231289. 2312.89 1.36 0.376354 0.326721 8470 54129 -1 4028 17 1662 7146 368098 92041 3.78868 3.78868 -208.146 -3.78868 0 0 291571. 2915.71 0.01 0.14 0.05 -1 -1 0.01 0.0559049 0.0498459 310 281 -1 -1 -1 -1 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml Md5Core.v common 415.20 vpr 1.04 GiB -1 -1 21.75 218308 1 4.05 -1 -1 145180 -1 -1 5620 641 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 1088640 641 128 55563 47815 1 19638 6389 89 89 7921 clb auto 308.1 MiB 52.99 226704 9072863 3788850 5116203 167810 1063.1 MiB 189.74 1.45 7.32093 -25503.3 -7.32093 7.32093 27.00 0.0695794 0.0596563 11.1854 9.32085 -1 -1 -1 -1 62 301435 41 2.47551e+08 7.12563e+07 3.13221e+07 3954.32 64.63 30.1669 25.0298 822850 7925305 -1 280695 33 74632 110486 9460418 1906659 4.74051 4.74051 -21753 -4.74051 0 0 3.86383e+07 4877.96 2.36 8.35 6.62 -1 -1 2.36 5.11529 4.30965 40780 2050 -1 -1 -1 -1 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml cordic.v common 5.14 vpr 64.61 MiB -1 -1 0.49 25988 4 0.16 -1 -1 33144 -1 -1 50 54 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 66164 54 51 503 502 1 302 155 11 11 121 clb auto 25.5 MiB 0.55 2264 11803 2091 8793 919 64.6 MiB 0.15 0.01 4.6074 -231.734 -4.6074 4.6074 0.13 0.00143538 0.00131584 0.0463156 0.0428406 -1 -1 -1 -1 46 4761 36 2.13871e+06 633900 304223. 2514.24 1.58 0.37716 0.328993 10384 69934 -1 4032 15 1433 6356 300467 73316 3.80829 3.80829 -202.73 -3.80829 0 0 371547. 3070.64 0.01 0.12 0.06 -1 -1 0.01 0.0507242 0.0453634 307 281 -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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time num_le num_luts num_add_blocks max_add_chain_length num_sub_blocks max_sub_chain_length +k6_N8_gate_boost_0.2V_22nm.xml Md5Core.v common 285.87 vpr 1.07 GiB -1 -1 21.15 328044 27 17.19 -1 -1 136772 -1 -1 6530 641 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 1127196 641 128 52026 52154 1 22146 7299 96 96 9216 clb auto 332.2 MiB 15.82 1 293360 9065987 3711370 5281819 72798 1100.8 MiB 87.32 0.64 63.9835 15.6932 -38098.7 -15.6932 15.6932 27.45 0.0673124 0.0602963 10.1706 8.43326 -1 -1 -1 -1 52 432440 35 2.87242e+08 7.87243e+07 3.22264e+07 3496.79 70.10 28.8986 24.6513 876764 7891077 -1 399137 17 95401 216864 15038479 3106649 13.6903 13.6903 -35069.4 -13.6903 0 0 3.95636e+07 4292.92 2.24 7.32 5.18 -1 -1 2.24 3.2763 2.91469 44106 14777 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml cordic.v common 2.47 vpr 65.25 MiB -1 -1 0.45 26432 11 0.21 -1 -1 33212 -1 -1 50 54 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66820 54 51 461 512 1 279 155 11 11 121 clb auto 26.2 MiB 0.08 3521 2357 11387 1976 8700 711 65.3 MiB 0.07 0.00 6.1966 5.68811 -245.341 -5.68811 5.68811 0.09 0.000716615 0.0006463 0.0243569 0.0221714 -1 -1 -1 -1 46 5194 30 2.09946e+06 602750 304223. 2514.24 0.73 0.182335 0.162552 10132 69752 -1 4547 19 1747 8058 386967 94105 5.17977 5.17977 -229.771 -5.17977 0 0 371547. 3070.64 0.01 0.10 0.04 -1 -1 0.01 0.0385667 0.0352693 351 351 -1 -1 -1 -1 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml Md5Core.v common 339.81 vpr 953.70 MiB -1 -1 13.28 218372 1 3.24 -1 -1 144528 -1 -1 5506 641 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 976588 641 128 55563 47815 1 19075 6275 89 89 7921 clb auto 330.3 MiB 10.44 1 214102 8568519 3563555 4885647 119317 953.7 MiB 169.32 1.12 17.4207 6.98821 -24570.4 -6.98821 6.98821 25.47 0.0471077 0.041108 9.13248 7.51499 -1 -1 -1 -1 64 294624 49 2.46893e+08 6.915e+07 3.22737e+07 4074.44 78.53 27.676 23.1791 838690 8307980 -1 274225 28 72425 118832 10979794 2166804 4.60329 4.60329 -21219.4 -4.60329 0 0 4.04365e+07 5104.97 2.30 5.71 5.61 -1 -1 2.30 2.97998 2.59225 40344 2050 -1 -1 -1 -1 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml cordic.v common 4.44 vpr 65.57 MiB -1 -1 0.41 25348 4 0.13 -1 -1 32876 -1 -1 48 54 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 67144 54 51 503 502 1 293 153 10 10 100 clb auto 26.7 MiB 1.29 3063 2216 11196 1953 8114 1129 65.6 MiB 0.14 0.01 5.24197 4.75513 -244.6 -4.75513 4.75513 0.09 0.00169788 0.00158536 0.0530931 0.0496201 -1 -1 -1 -1 50 4239 34 1.94278e+06 602784 264954. 2649.54 1.48 0.359688 0.32242 8770 59529 -1 3822 16 1455 6320 297317 74232 3.99954 3.99954 -212.879 -3.99954 0 0 317040. 3170.40 0.01 0.18 0.04 -1 -1 0.01 0.0756285 0.0693569 310 281 -1 -1 -1 -1 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml Md5Core.v common 357.91 vpr 981.56 MiB -1 -1 12.96 218396 1 4.88 -1 -1 144524 -1 -1 5615 641 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 1005120 641 128 55563 47815 1 19621 6384 89 89 7921 clb auto 336.8 MiB 44.88 1 218506 8826737 3646134 5035828 144775 981.6 MiB 155.92 1.22 19.4565 7.31966 -25233.7 -7.31966 7.31966 24.82 0.0474495 0.0415552 8.20397 6.77827 -1 -1 -1 -1 60 294604 45 2.47551e+08 7.11929e+07 3.04132e+07 3839.56 73.27 27.1474 22.801 814930 7734163 -1 276739 33 78983 115921 10759440 2250313 4.51897 4.51897 -21514.2 -4.51897 0 0 3.78426e+07 4777.50 2.27 6.83 4.86 -1 -1 2.27 3.77776 3.25281 40785 2050 -1 -1 -1 -1 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml cordic.v common 3.71 vpr 65.89 MiB -1 -1 0.41 25352 4 0.13 -1 -1 32860 -1 -1 49 54 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 67476 54 51 503 502 1 301 154 11 11 121 clb auto 26.8 MiB 0.37 3371 2219 12102 2212 9004 886 65.9 MiB 0.08 0.00 5.48793 4.4172 -224.447 -4.4172 4.4172 0.09 0.000674884 0.000607414 0.0249059 0.0227895 -1 -1 -1 -1 46 4716 45 2.13871e+06 621222 304223. 2514.24 1.64 0.233573 0.207329 10384 69934 -1 3942 18 1779 7182 348702 84785 3.54243 3.54243 -193.203 -3.54243 0 0 371547. 3070.64 0.01 0.09 0.04 -1 -1 0.01 0.0361351 0.0331666 307 281 -1 -1 -1 -1 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/arithmetic_tasks/open_cores_frac/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/arithmetic_tasks/open_cores_frac/config/golden_results.txt index e0e23492818..10684a36519 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/arithmetic_tasks/open_cores_frac/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/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 ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time num_le num_luts num_add_blocks max_add_chain_length num_sub_blocks max_sub_chain_length - k6_frac_2ripple_N8_22nm.xml Md5Core.v common 541.33 vpr 770.48 MiB -1 -1 21.57 219052 1 3.94 -1 -1 145160 -1 -1 2904 641 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 788976 641 128 55563 47815 1 17837 3673 65 65 4225 clb auto 278.4 MiB 280.64 186842 4139415 1628153 2426823 84439 770.5 MiB 80.11 0.65 6.85172 -24425.5 -6.85172 6.85172 17.37 0.0707807 0.0606116 10.8556 9.00171 -1 -1 -1 -1 86 266896 42 1.34217e+08 4.20381e+07 2.31978e+07 5490.61 95.85 37.0767 30.5473 551762 6310377 -1 239670 19 85960 107325 12022295 2121435 5.37037 5.37037 -22498.9 -5.37037 0 0 2.90884e+07 6884.83 1.53 5.92 5.28 -1 -1 1.53 3.24584 2.77988 21038 2050 -1 -1 -1 -1 - k6_frac_2ripple_N8_22nm.xml cordic.v common 7.58 vpr 65.10 MiB -1 -1 0.88 26100 4 0.16 -1 -1 33024 -1 -1 33 54 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 66664 54 51 503 502 1 316 138 9 9 81 clb auto 26.1 MiB 3.78 1956 11174 2060 8307 807 65.1 MiB 0.13 0.00 4.40854 -233.833 -4.40854 4.40854 0.09 0.00139097 0.00128641 0.0504025 0.0467374 -1 -1 -1 -1 56 4041 27 1.45065e+06 477698 231774. 2861.41 1.17 0.353028 0.308187 7704 54090 -1 3517 18 1771 6187 313268 82102 4.02896 4.02896 -216.237 -4.02896 0 0 286113. 3532.26 0.01 0.13 0.05 -1 -1 0.01 0.0573414 0.0511544 225 281 -1 -1 -1 -1 - k6_frac_2uripple_N8_22nm.xml Md5Core.v common 445.49 vpr 768.55 MiB -1 -1 21.93 218372 1 4.17 -1 -1 145216 -1 -1 2904 641 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 787000 641 128 55563 47815 1 17906 3673 65 65 4225 clb auto 273.5 MiB 187.96 185308 3941126 1565098 2300167 75861 768.6 MiB 89.53 0.80 6.8947 -23916.3 -6.8947 6.8947 17.72 0.0715102 0.0611769 10.6329 8.87437 -1 -1 -1 -1 86 262207 37 1.34928e+08 4.2735e+07 2.31978e+07 5490.61 81.66 34.9922 28.9773 551762 6310377 -1 236506 17 80887 101963 10950479 1939027 5.59715 5.59715 -21989.7 -5.59715 0 0 2.90884e+07 6884.83 1.64 5.62 5.31 -1 -1 1.64 3.04009 2.59505 20989 2050 -1 -1 -1 -1 - k6_frac_2uripple_N8_22nm.xml cordic.v common 5.96 vpr 64.87 MiB -1 -1 0.87 26208 4 0.16 -1 -1 33076 -1 -1 33 54 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 66424 54 51 503 502 1 318 138 9 9 81 clb auto 25.9 MiB 0.40 1964 10462 1843 7559 1060 64.9 MiB 0.13 0.00 4.28518 -225.617 -4.28518 4.28518 0.09 0.00139646 0.00129195 0.0476616 0.0441834 -1 -1 -1 -1 56 4128 31 1.45905e+06 485618 231774. 2861.41 2.57 0.547183 0.474234 7704 54090 -1 3583 18 1731 6262 331465 85566 3.8968 3.8968 -212.026 -3.8968 0 0 286113. 3532.26 0.01 0.14 0.05 -1 -1 0.01 0.058103 0.0518196 225 281 -1 -1 -1 -1 - k6_frac_N8_22nm.xml Md5Core.v common 523.72 vpr 809.32 MiB -1 -1 35.88 328152 27 14.52 -1 -1 138636 -1 -1 3446 641 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 828744 641 128 52026 52154 1 22420 4215 70 70 4900 clb auto 269.8 MiB 211.66 265423 4326406 1648229 2614689 63488 809.3 MiB 79.80 0.65 14.952 -39387.3 -14.952 14.952 20.28 0.0925834 0.0810563 12.6496 10.7217 -1 -1 -1 -1 84 394620 43 1.54829e+08 4.64245e+07 2.64571e+07 5399.40 108.95 44.8309 37.5465 624050 7235563 -1 356794 20 108067 230531 16879775 3154299 13.0725 13.0725 -36269.1 -13.0725 0 0 3.34846e+07 6833.59 1.94 9.36 5.72 -1 -1 1.94 4.65498 4.01829 24663 14777 -1 -1 -1 -1 - k6_frac_N8_22nm.xml cordic.v common 4.95 vpr 64.28 MiB -1 -1 0.95 26424 11 0.25 -1 -1 33660 -1 -1 34 54 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65824 54 51 461 512 1 317 139 9 9 81 clb auto 25.0 MiB 0.23 2204 9473 1828 7093 552 64.3 MiB 0.12 0.00 6.42199 -256.014 -6.42199 6.42199 0.09 0.00144714 0.00133734 0.0443724 0.0410787 -1 -1 -1 -1 62 4693 48 1.41552e+06 458048 249781. 3083.72 1.55 0.41392 0.360399 7884 59488 -1 3923 19 2092 8192 403186 97926 5.39904 5.39904 -231.32 -5.39904 0 0 310465. 3832.90 0.01 0.10 0.04 -1 -1 0.01 0.0365187 0.0331706 252 351 -1 -1 -1 -1 - k6_frac_ripple_N8_22nm.xml Md5Core.v common 968.02 vpr 871.61 MiB -1 -1 22.34 218328 1 3.90 -1 -1 145312 -1 -1 3580 641 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 892524 641 128 55563 47815 1 19465 4349 71 71 5041 clb auto 262.5 MiB 670.29 210279 5114045 1917429 3043210 153406 871.6 MiB 143.83 0.80 7.61884 -24559.3 -7.61884 7.61884 21.38 0.0719772 0.0594682 10.7407 8.89088 -1 -1 -1 -1 72 286581 46 1.58244e+08 5.00245e+07 2.39867e+07 4758.32 62.14 31.0052 25.5746 615390 6416121 -1 266321 24 92304 125385 12396060 2405052 4.93927 4.93927 -21502.9 -4.93927 0 0 3.00078e+07 5952.75 1.71 7.10 5.50 -1 -1 1.71 3.83741 3.21004 25723 2050 -1 -1 -1 -1 - k6_frac_ripple_N8_22nm.xml cordic.v common 5.83 vpr 64.57 MiB -1 -1 0.88 26136 4 0.16 -1 -1 33044 -1 -1 33 54 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 66124 54 51 503 502 1 304 138 9 9 81 clb auto 25.3 MiB 2.08 2002 12954 2480 9062 1412 64.6 MiB 0.20 0.01 4.43013 -227.708 -4.43013 4.43013 0.09 0.001451 0.0013363 0.0685664 0.0632597 -1 -1 -1 -1 56 4228 32 1.43308e+06 461137 231774. 2861.41 1.26 0.391145 0.341818 7704 54090 -1 3725 17 1917 7166 373067 93632 3.65072 3.65072 -196.427 -3.65072 0 0 286113. 3532.26 0.01 0.09 0.03 -1 -1 0.01 0.0324143 0.0294926 234 281 -1 -1 -1 -1 - k6_frac_uripple_N8_22nm.xml Md5Core.v common 472.40 vpr 866.96 MiB -1 -1 22.33 218376 1 4.13 -1 -1 145204 -1 -1 3485 641 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 887772 641 128 55563 47815 1 18425 4254 71 71 5041 clb auto 256.6 MiB 191.79 205408 4896722 1844424 2914068 138230 867.0 MiB 129.30 1.04 8.03131 -25587.9 -8.03131 8.03131 21.08 0.0733517 0.0590529 10.6832 8.73949 -1 -1 -1 -1 64 273108 50 1.5868e+08 4.91153e+07 2.16513e+07 4295.04 61.30 30.7872 25.3336 590190 5755241 -1 250871 18 71120 89065 8566793 1619750 5.5524 5.5524 -21928.1 -5.5524 0 0 2.72404e+07 5403.77 1.82 6.19 4.71 -1 -1 1.82 3.42355 2.88442 25749 2050 -1 -1 -1 -1 - k6_frac_uripple_N8_22nm.xml cordic.v common 4.49 vpr 64.21 MiB -1 -1 0.92 26136 4 0.16 -1 -1 33152 -1 -1 35 54 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65752 54 51 503 502 1 303 140 9 9 81 clb auto 25.4 MiB 0.68 1940 13934 2921 9841 1172 64.2 MiB 0.17 0.00 4.47128 -234.847 -4.47128 4.47128 0.09 0.00140285 0.00129011 0.0597002 0.0551005 -1 -1 -1 -1 56 3999 30 1.43728e+06 493284 231774. 2861.41 1.11 0.375638 0.327858 7704 54090 -1 3545 17 1758 6326 315468 81095 3.68106 3.68106 -203.624 -3.68106 0 0 286113. 3532.26 0.01 0.13 0.05 -1 -1 0.01 0.0539124 0.0479125 251 281 -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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time num_le num_luts num_add_blocks max_add_chain_length num_sub_blocks max_sub_chain_length +k6_frac_2ripple_N8_22nm.xml Md5Core.v common 477.93 vpr 699.03 MiB -1 -1 15.73 218396 1 3.59 -1 -1 144908 -1 -1 2893 641 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 715804 641 128 55563 47815 1 17875 3662 65 65 4225 clb auto 307.3 MiB 229.77 653595 188180 4010050 1589381 2339755 80914 698.8 MiB 74.46 0.60 15.2096 7.56088 -24817.3 -7.56088 7.56088 15.68 0.0492048 0.042965 7.99151 6.70431 -1 -1 -1 -1 92 259836 45 1.34217e+08 4.18788e+07 2.45933e+07 5820.91 106.38 34.176 28.8777 568658 6739433 -1 238307 25 84571 105591 11115783 1991214 6.27776 6.27776 -22967 -6.27776 0 0 3.06352e+07 7250.94 1.72 5.76 4.59 -1 -1 1.72 3.18855 2.77683 20993 2050 -1 -1 -1 -1 +k6_frac_2ripple_N8_22nm.xml cordic.v common 5.88 vpr 66.43 MiB -1 -1 0.42 25312 4 0.13 -1 -1 32620 -1 -1 34 54 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 68024 54 51 503 502 1 316 139 9 9 81 clb auto 27.1 MiB 2.92 2831 1984 7678 1282 5509 887 66.4 MiB 0.06 0.00 4.51901 4.18969 -226.44 -4.18969 4.18969 0.06 0.000666802 0.000609419 0.0195881 0.0180803 -1 -1 -1 -1 58 4540 50 1.45065e+06 492173 237595. 2933.27 1.32 0.289584 0.254751 7864 57025 -1 3555 20 1939 7105 362500 91101 3.89871 3.89871 -212.35 -3.89871 0 0 298762. 3688.42 0.01 0.10 0.03 -1 -1 0.01 0.0438049 0.0398469 226 281 -1 -1 -1 -1 +k6_frac_2uripple_N8_22nm.xml Md5Core.v common 370.63 vpr 696.85 MiB -1 -1 13.58 217508 1 3.90 -1 -1 144528 -1 -1 2897 641 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 713572 641 128 55563 47815 1 17888 3666 65 65 4225 clb auto 301.8 MiB 158.38 643219 185056 4072386 1563668 2435367 73351 696.8 MiB 66.14 0.59 16.3713 7.04442 -24207.9 -7.04442 7.04442 16.43 0.055064 0.0485492 7.86424 6.61941 -1 -1 -1 -1 86 262236 34 1.34928e+08 4.2632e+07 2.31978e+07 5490.61 81.10 27.3467 23.1128 551762 6310377 -1 236085 23 81064 102545 11776128 2047879 6.1643 6.1643 -22374.2 -6.1643 0 0 2.90884e+07 6884.83 1.62 5.64 4.36 -1 -1 1.62 3.20849 2.80174 20965 2050 -1 -1 -1 -1 +k6_frac_2uripple_N8_22nm.xml cordic.v common 3.07 vpr 66.24 MiB -1 -1 0.43 25360 4 0.20 -1 -1 32860 -1 -1 33 54 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 67832 54 51 503 502 1 318 138 9 9 81 clb auto 27.1 MiB 0.36 2931 2050 13310 2770 9570 970 66.2 MiB 0.09 0.00 4.3236 4.15816 -225.982 -4.15816 4.15816 0.06 0.000742946 0.000682425 0.0328962 0.0301738 -1 -1 -1 -1 56 4421 38 1.45905e+06 485618 231774. 2861.41 0.93 0.244522 0.218208 7704 54090 -1 3718 18 1920 6861 352217 88853 3.68306 3.68306 -206.395 -3.68306 0 0 286113. 3532.26 0.01 0.09 0.05 -1 -1 0.01 0.03847 0.0354053 227 281 -1 -1 -1 -1 +k6_frac_N8_22nm.xml Md5Core.v common 451.99 vpr 788.38 MiB -1 -1 21.29 328008 27 14.03 -1 -1 137544 -1 -1 3471 641 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 807304 641 128 52026 52154 1 22539 4240 71 71 5041 clb auto 302.9 MiB 198.91 971668 249965 4292115 1627870 2599391 64854 788.4 MiB 59.25 0.47 52.2374 15.4038 -39114.5 -15.4038 15.4038 28.59 0.0690838 0.0616158 10.1516 8.54447 -1 -1 -1 -1 82 376055 32 1.56446e+08 4.67613e+07 2.66411e+07 5284.89 89.69 34.2976 29.2554 631278 7194181 -1 345823 16 104618 223290 16671777 3186307 13.7481 13.7481 -36094 -13.7481 0 0 3.32761e+07 6601.10 1.86 7.39 4.64 -1 -1 1.86 3.26381 2.92376 24649 14777 -1 -1 -1 -1 +k6_frac_N8_22nm.xml cordic.v common 3.05 vpr 65.40 MiB -1 -1 0.46 26504 11 0.21 -1 -1 33124 -1 -1 33 54 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66972 54 51 461 512 1 307 138 9 9 81 clb auto 26.1 MiB 0.13 3103 2218 10462 2076 7758 628 65.4 MiB 0.07 0.00 6.80674 6.00424 -251.72 -6.00424 6.00424 0.06 0.000725644 0.000663618 0.0277173 0.0254463 -1 -1 -1 -1 60 4772 48 1.41552e+06 444576 242836. 2997.97 1.31 0.311025 0.277224 7804 58296 -1 4045 19 1952 7820 394587 97023 5.48514 5.48514 -233.228 -5.48514 0 0 304930. 3764.57 0.01 0.10 0.04 -1 -1 0.01 0.0390285 0.035773 250 351 -1 -1 -1 -1 +k6_frac_ripple_N8_22nm.xml Md5Core.v common 880.65 vpr 786.22 MiB -1 -1 12.64 217632 1 3.52 -1 -1 144524 -1 -1 3573 641 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 805092 641 128 55563 47815 1 19435 4342 71 71 5041 clb auto 289.0 MiB 580.57 819752 209041 5067686 1879984 3018557 169145 786.2 MiB 123.00 0.77 15.3089 8.61024 -24476.7 -8.61024 8.61024 19.39 0.0540455 0.0439781 8.09228 6.53093 -1 -1 -1 -1 74 282704 34 1.58244e+08 4.99267e+07 2.44980e+07 4859.74 108.08 34.8268 29.2592 620430 6551051 -1 266640 25 86742 116693 12206521 2336167 5.88317 5.88317 -21677.4 -5.88317 0 0 3.04825e+07 6046.92 1.75 5.63 4.53 -1 -1 1.75 2.84807 2.46262 25727 2050 -1 -1 -1 -1 +k6_frac_ripple_N8_22nm.xml cordic.v common 4.85 vpr 65.68 MiB -1 -1 0.75 25352 4 0.19 -1 -1 32876 -1 -1 33 54 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 67252 54 51 503 502 1 305 138 9 9 81 clb auto 26.7 MiB 1.90 2824 1925 10818 2107 7677 1034 65.7 MiB 0.09 0.00 4.87184 4.35815 -225.348 -4.35815 4.35815 0.06 0.000770335 0.000672667 0.0289517 0.0267081 -1 -1 -1 -1 54 4063 43 1.43308e+06 461137 226270. 2793.45 0.99 0.2461 0.216024 7624 52756 -1 3291 17 1788 6579 287632 74898 3.83626 3.83626 -198.879 -3.83626 0 0 280165. 3458.82 0.01 0.09 0.03 -1 -1 0.01 0.0383915 0.0351202 234 281 -1 -1 -1 -1 +k6_frac_uripple_N8_22nm.xml Md5Core.v common 388.87 vpr 781.73 MiB -1 -1 13.78 217608 1 3.59 -1 -1 144908 -1 -1 3472 641 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 800492 641 128 55563 47815 1 18248 4241 71 71 5041 clb auto 285.5 MiB 160.70 748459 205594 4842515 1817314 2868610 156591 781.7 MiB 103.27 0.79 17.6617 8.00284 -25797.5 -8.00284 8.00284 22.43 0.0525316 0.041828 7.49622 6.1714 -1 -1 -1 -1 60 281470 45 1.5868e+08 4.89321e+07 2.04516e+07 4057.04 56.14 22.8967 19.2291 575070 5378021 -1 255823 17 76566 95763 9476991 1821430 5.31054 5.31054 -22200.8 -5.31054 0 0 2.55408e+07 5066.62 1.34 4.26 3.31 -1 -1 1.34 2.0631 1.81096 25722 2050 -1 -1 -1 -1 +k6_frac_uripple_N8_22nm.xml cordic.v common 3.50 vpr 65.62 MiB -1 -1 0.45 25356 4 0.14 -1 -1 32508 -1 -1 35 54 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 67200 54 51 503 502 1 301 140 9 9 81 clb auto 26.4 MiB 0.52 2717 2105 7763 1290 5799 674 65.6 MiB 0.06 0.00 4.88573 4.50668 -234.843 -4.50668 4.50668 0.06 0.000670214 0.000611502 0.01904 0.0174694 -1 -1 -1 -1 60 4031 25 1.43728e+06 493284 242836. 2997.97 1.34 0.287424 0.253314 7944 58396 -1 3718 20 1983 8095 422416 104597 3.58761 3.58761 -202.534 -3.58761 0 0 304930. 3764.57 0.01 0.14 0.05 -1 -1 0.01 0.0558313 0.0505463 250 281 -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 bc4a9702b59..9e219b5070f 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 ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time total_power routing_power_perc clock_power_perc tile_power_perc -k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml ch_intrinsics.v common 3.41 vpr 66.85 MiB -1 -1 0.34 22268 3 0.10 -1 -1 37000 -1 54240 68 99 1 0 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 68452 99 130 344 474 1 226 298 12 12 144 clb auto 27.2 MiB 0.07 661 69948 21317 34488 14143 66.8 MiB 0.19 0.00 1.84343 -120.716 -1.84343 1.84343 0.15 0.000836305 0.000777868 0.0624432 0.0579886 -1 -1 -1 -1 48 1234 11 5.66058e+06 4.21279e+06 394078. 2736.65 1.13 0.388411 0.354166 13382 75762 -1 1152 12 449 726 34037 10619 1.91136 1.91136 -134.16 -1.91136 -1.28997 -0.320482 503207. 3494.49 0.02 0.04 0.08 -1 -1 0.02 0.0268156 0.0249636 0.01041 0.2485 0.08202 0.6695 -k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml diffeq1.v common 11.54 vpr 70.42 MiB -1 -1 0.52 27052 15 0.44 -1 -1 37612 -1 56036 39 162 0 5 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 72112 162 96 1009 950 1 709 302 16 16 256 mult_36 auto 30.4 MiB 0.30 5587 92394 30880 53838 7676 70.4 MiB 0.63 0.01 21.0975 -1536.06 -21.0975 21.0975 0.31 0.00264219 0.0024523 0.255431 0.237213 -1 -1 -1 -1 54 12491 42 1.21132e+07 4.08187e+06 835850. 3265.04 5.79 1.11973 1.03745 26248 167850 -1 9804 18 3129 6329 829951 256686 22.2714 22.2714 -1674.4 -22.2714 0 0 1.08614e+06 4242.72 0.05 0.30 0.16 -1 -1 0.05 0.123137 0.115878 0.007816 0.3726 0.01778 0.6096 -k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml LU8PEEng.v common 445.10 vpr 422.13 MiB -1 -1 69.38 368528 123 78.20 -1 -1 82692 -1 118888 1375 114 45 8 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 432260 114 102 21994 21904 1 11802 1644 50 50 2500 memory auto 156.2 MiB 22.97 160790 1049136 374899 655277 18960 422.1 MiB 26.05 0.23 78.4871 -53143.2 -78.4871 78.4871 11.24 0.052813 0.0462077 6.2757 5.24155 -1 -1 -1 -1 94 237421 37 1.47946e+08 1.01935e+08 1.55181e+07 6207.23 158.08 25.6908 21.7243 341268 3271592 -1 217663 19 44811 172250 10215733 1905978 81.238 81.238 -63088.5 -81.238 -14.6885 -0.29436 1.95446e+07 7817.85 1.30 6.17 3.55 -1 -1 1.30 3.3903 2.9824 0.08135 0.4303 0.01138 0.5584 -k6_N10_I40_Fi6_L4_frac1_ff2_45nm.xml ch_intrinsics.v common 3.52 vpr 67.00 MiB -1 -1 0.34 22060 3 0.09 -1 -1 37120 -1 54184 68 99 1 0 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 68612 99 130 344 474 1 226 298 12 12 144 clb auto 27.4 MiB 0.11 716 68953 19729 34143 15081 67.0 MiB 0.20 0.00 1.84343 -118.985 -1.84343 1.84343 0.16 0.000884793 0.00082197 0.0659105 0.0611015 -1 -1 -1 -1 50 1307 17 5.66058e+06 4.21279e+06 406292. 2821.48 1.16 0.290646 0.265392 13526 77840 -1 1223 12 430 705 34827 10711 2.03591 2.03591 -135.117 -2.03591 -0.536858 -0.172926 520805. 3616.70 0.02 0.04 0.08 -1 -1 0.02 0.0279279 0.0259917 0.01127 0.2362 0.07017 0.6936 -k6_N10_I40_Fi6_L4_frac1_ff2_45nm.xml diffeq1.v common 11.30 vpr 70.10 MiB -1 -1 0.54 27172 15 0.44 -1 -1 38168 -1 56116 39 162 0 5 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 71784 162 96 1009 950 1 709 302 16 16 256 mult_36 auto 30.1 MiB 0.39 5587 92394 30879 53839 7676 70.1 MiB 0.66 0.01 21.0975 -1536.12 -21.0975 21.0975 0.31 0.00286543 0.00265289 0.276055 0.256826 -1 -1 -1 -1 56 11626 33 1.21132e+07 4.08187e+06 870502. 3400.40 5.32 1.27718 1.18421 26504 172068 -1 9678 21 2911 5904 758117 233537 22.3178 22.3178 -1651.57 -22.3178 0 0 1.11200e+06 4343.75 0.05 0.32 0.17 -1 -1 0.05 0.141995 0.133696 0.008142 0.3626 0.01671 0.6207 -k6_N10_I40_Fi6_L4_frac1_ff2_45nm.xml LU8PEEng.v common 454.81 vpr 426.46 MiB -1 -1 71.31 367564 123 81.62 -1 -1 82248 -1 118536 1291 114 45 8 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 436700 114 102 21994 21904 1 11352 1560 50 50 2500 memory auto 158.3 MiB 61.05 152483 987356 362069 607612 17675 426.5 MiB 26.52 0.22 79.1367 -50547.3 -79.1367 79.1367 11.72 0.0513453 0.0448586 6.66942 5.5865 -1 -1 -1 -1 92 232994 28 1.47946e+08 9.74075e+07 1.52089e+07 6083.58 120.41 24.0133 20.3765 338772 3221652 -1 208917 21 44965 172666 10235030 1916854 80.0387 80.0387 -62312.2 -80.0387 -21.5187 -0.29436 1.93279e+07 7731.17 1.18 6.37 3.45 -1 -1 1.18 3.59895 3.14915 0.08251 0.4177 0.01128 0.571 -k6_N10_I47_Fi7_L4_frac1_ff1_45nm.xml ch_intrinsics.v common 3.65 vpr 67.00 MiB -1 -1 0.50 22252 3 0.10 -1 -1 36688 -1 54376 68 99 1 0 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 68612 99 130 344 474 1 226 298 12 12 144 clb auto 27.4 MiB 0.18 657 69948 21799 34316 13833 67.0 MiB 0.21 0.00 1.84343 -120.64 -1.84343 1.84343 0.18 0.000886209 0.000824463 0.0692794 0.0642267 -1 -1 -1 -1 32 1388 26 5.66058e+06 4.21279e+06 295695. 2053.44 1.01 0.371976 0.339221 12440 56522 -1 1281 8 406 621 30008 10252 1.97803 1.97803 -144.136 -1.97803 -0.60255 -0.299894 361905. 2513.23 0.02 0.03 0.06 -1 -1 0.02 0.0222882 0.0208356 0.009961 0.2415 0.06916 0.6893 -k6_N10_I47_Fi7_L4_frac1_ff1_45nm.xml diffeq1.v common 10.92 vpr 70.39 MiB -1 -1 0.54 27244 15 0.44 -1 -1 37732 -1 56248 40 162 0 5 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 72084 162 96 1009 950 1 696 303 16 16 256 mult_36 auto 30.4 MiB 0.86 5934 80646 26276 47788 6582 70.4 MiB 0.58 0.01 21.2251 -1508.83 -21.2251 21.2251 0.33 0.00283465 0.00263501 0.238888 0.222237 -1 -1 -1 -1 48 12517 33 1.21132e+07 4.13576e+06 791884. 3093.30 4.47 0.941674 0.874136 26208 159478 -1 10162 20 3211 6863 1007611 289801 22.7677 22.7677 -1634.2 -22.7677 0 0 1.01413e+06 3961.44 0.05 0.36 0.15 -1 -1 0.05 0.139248 0.131173 0.007873 0.3554 0.01647 0.6281 -k6_N10_I47_Fi7_L4_frac1_ff1_45nm.xml LU8PEEng.v common 703.20 vpr 483.03 MiB -1 -1 69.41 367768 123 81.19 -1 -1 82620 -1 118468 1295 114 45 8 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 494624 114 102 21994 21904 1 11910 1564 50 50 2500 memory auto 157.6 MiB 288.91 168628 945260 315204 610145 19911 454.5 MiB 31.50 0.29 79.1157 -53153.5 -79.1157 79.1157 14.00 0.063746 0.0514653 7.06984 5.87214 -1 -1 -1 -1 98 242849 30 1.47946e+08 9.76231e+07 1.67994e+07 6719.74 134.12 33.2889 27.9425 360864 3674624 -1 218508 19 40744 157019 9540618 1798304 79.9734 79.9734 -63262.9 -79.9734 -30.1732 -0.292146 2.12220e+07 8488.81 1.35 6.10 4.17 -1 -1 1.35 3.49121 3.08435 0.08742 0.4247 0.0114 0.5639 -k6_N10_I47_Fi7_L4_frac1_ff2_45nm.xml ch_intrinsics.v common 2.71 vpr 67.07 MiB -1 -1 0.35 21868 3 0.09 -1 -1 36956 -1 54424 68 99 1 0 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 68676 99 130 344 474 1 226 298 12 12 144 clb auto 27.2 MiB 0.15 708 68953 19077 35256 14620 67.1 MiB 0.19 0.00 1.84675 -120.418 -1.84675 1.84675 0.16 0.000896212 0.000833184 0.0639544 0.0592867 -1 -1 -1 -1 32 1546 17 5.66058e+06 4.21279e+06 295695. 2053.44 0.32 0.170676 0.156606 12440 56522 -1 1380 11 395 551 27778 8974 2.00702 2.00702 -146.809 -2.00702 -0.360519 -0.100806 361905. 2513.23 0.02 0.04 0.05 -1 -1 0.02 0.0259164 0.0241103 0.01128 0.2266 0.06022 0.7132 -k6_N10_I47_Fi7_L4_frac1_ff2_45nm.xml diffeq1.v common 10.36 vpr 70.66 MiB -1 -1 0.53 27052 15 0.44 -1 -1 37896 -1 56252 38 162 0 5 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 72360 162 96 1009 950 1 695 301 16 16 256 mult_36 auto 30.6 MiB 0.96 5610 94045 31257 55412 7376 70.7 MiB 0.66 0.01 21.0415 -1518.59 -21.0415 21.0415 0.32 0.00263298 0.00244415 0.272234 0.253005 -1 -1 -1 -1 46 12438 44 1.21132e+07 4.02797e+06 761464. 2974.47 3.78 0.861417 0.798378 25952 154797 -1 10002 19 3159 6571 902884 257450 22.3413 22.3413 -1646.84 -22.3413 0 0 979054. 3824.43 0.05 0.34 0.14 -1 -1 0.05 0.135868 0.128087 0.008214 0.3392 0.01581 0.645 -k6_N10_I47_Fi7_L4_frac1_ff2_45nm.xml LU8PEEng.v common 744.82 vpr 455.62 MiB -1 -1 69.63 367688 123 80.93 -1 -1 82244 -1 118696 1204 114 45 8 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 466560 114 102 21994 21904 1 11268 1473 50 50 2500 memory auto 158.4 MiB 282.82 156364 872681 296759 559651 16271 455.6 MiB 29.99 0.27 78.504 -53005.8 -78.504 78.504 13.96 0.0619622 0.0510826 7.13214 5.89212 -1 -1 -1 -1 94 233798 34 1.47946e+08 9.27186e+07 1.62379e+07 6495.14 184.08 27.3186 22.8787 353364 3504872 -1 209981 21 41328 165352 10516220 1993935 81.0151 81.0151 -67028.4 -81.0151 -12.5546 -0.197657 2.03897e+07 8155.87 1.25 6.43 3.72 -1 -1 1.25 3.61333 3.17146 0.08732 0.4072 0.01132 0.5815 -k6_N10_I53_Fi8_L4_frac1_ff1_45nm.xml ch_intrinsics.v common 2.79 vpr 67.08 MiB -1 -1 0.34 22252 3 0.10 -1 -1 36952 -1 54144 68 99 1 0 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 68688 99 130 344 474 1 224 298 12 12 144 clb auto 27.6 MiB 0.19 716 70943 21060 35397 14486 67.1 MiB 0.20 0.00 1.84896 -120.96 -1.84896 1.84896 0.17 0.000862946 0.000802462 0.0670346 0.0622019 -1 -1 -1 -1 32 1428 10 5.66058e+06 4.21279e+06 307825. 2137.67 0.32 0.1682 0.154726 12860 59602 -1 1442 8 364 510 28016 9494 2.05066 2.05066 -148.698 -2.05066 -0.675425 -0.245041 375846. 2610.04 0.02 0.03 0.06 -1 -1 0.02 0.0215026 0.020136 0.009933 0.2641 0.06746 0.6684 -k6_N10_I53_Fi8_L4_frac1_ff1_45nm.xml diffeq1.v common 11.92 vpr 70.45 MiB -1 -1 0.53 27052 15 0.44 -1 -1 37680 -1 56060 37 162 0 5 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 72144 162 96 1009 950 1 707 300 16 16 256 mult_36 auto 30.3 MiB 0.74 5704 81543 25784 48359 7400 70.5 MiB 0.57 0.01 20.9352 -1494.36 -20.9352 20.9352 0.33 0.00259033 0.00240721 0.234272 0.217801 -1 -1 -1 -1 52 12533 39 1.21132e+07 3.97408e+06 875283. 3419.07 5.55 0.936518 0.866387 27812 183157 -1 9653 22 3476 7386 893863 290905 21.9608 21.9608 -1590.11 -21.9608 0 0 1.15281e+06 4503.17 0.05 0.35 0.17 -1 -1 0.05 0.148456 0.139689 0.008189 0.3582 0.01716 0.6246 -k6_N10_I53_Fi8_L4_frac1_ff1_45nm.xml LU8PEEng.v common 852.03 vpr 480.05 MiB -1 -1 68.54 368380 123 82.03 -1 -1 82692 -1 118908 1295 114 45 8 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 491576 114 102 21994 21904 1 11667 1564 50 50 2500 memory auto 156.9 MiB 348.48 159445 999704 349840 626772 23092 480.1 MiB 33.85 0.28 79.5508 -52717.5 -79.5508 79.5508 16.45 0.0643799 0.0538614 7.57281 6.24305 -1 -1 -1 -1 94 235648 38 1.47946e+08 9.76231e+07 1.68500e+07 6739.98 216.13 27.8936 23.4976 363732 3705320 -1 209176 21 38146 152658 9364243 1833644 80.2012 80.2012 -65372.2 -80.2012 -24.7714 -0.29436 2.11127e+07 8445.07 1.37 6.17 4.09 -1 -1 1.37 3.64236 3.22927 0.08909 0.4064 0.01173 0.5819 -k6_N10_I53_Fi8_L4_frac1_ff2_45nm.xml ch_intrinsics.v common 3.38 vpr 67.24 MiB -1 -1 0.34 22252 3 0.10 -1 -1 36940 -1 54184 68 99 1 0 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 68856 99 130 344 474 1 224 298 12 12 144 clb auto 27.6 MiB 0.17 685 71938 21956 34416 15566 67.2 MiB 0.20 0.00 1.86702 -120.567 -1.86702 1.86702 0.17 0.000840139 0.000780054 0.0661233 0.0614189 -1 -1 -1 -1 40 1341 11 5.66058e+06 4.21279e+06 362583. 2517.93 0.94 0.32969 0.301046 13576 72659 -1 1205 8 379 625 31544 10360 1.93189 1.93189 -137.973 -1.93189 -0.445929 -0.145548 454087. 3153.38 0.02 0.03 0.07 -1 -1 0.02 0.0218132 0.0204371 0.0117 0.221 0.06779 0.7112 -k6_N10_I53_Fi8_L4_frac1_ff2_45nm.xml diffeq1.v common 10.17 vpr 70.94 MiB -1 -1 0.52 27052 15 0.43 -1 -1 37788 -1 56252 37 162 0 5 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 72640 162 96 1009 950 1 707 300 16 16 256 mult_36 auto 31.0 MiB 0.92 5704 81543 25785 48357 7401 70.9 MiB 0.56 0.01 20.9352 -1494.22 -20.9352 20.9352 0.34 0.00276197 0.00257238 0.229602 0.213333 -1 -1 -1 -1 56 11092 31 1.21132e+07 3.97408e+06 945639. 3693.90 3.68 0.8882 0.822144 28324 193488 -1 9420 19 3060 6353 811233 266976 22.1753 22.1753 -1612.49 -22.1753 0 0 1.20516e+06 4707.66 0.06 0.32 0.18 -1 -1 0.06 0.132099 0.124397 0.008508 0.351 0.01643 0.6325 -k6_N10_I53_Fi8_L4_frac1_ff2_45nm.xml LU8PEEng.v common 800.27 vpr 480.31 MiB -1 -1 66.50 369244 123 80.51 -1 -1 82696 -1 118696 1188 114 45 8 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 491836 114 102 21994 21904 1 10835 1457 50 50 2500 memory auto 157.2 MiB 367.81 151297 893105 311026 558202 23877 480.3 MiB 30.19 0.25 79.0799 -49383.5 -79.0799 79.0799 16.49 0.0623296 0.0509202 7.31405 6.03031 -1 -1 -1 -1 90 226742 49 1.47946e+08 9.18562e+07 1.62125e+07 6485.01 151.43 27.118 22.6334 356236 3531108 -1 200460 19 37141 154241 9363659 1835408 78.6011 78.6011 -58698.9 -78.6011 -16.4075 -0.295467 2.01810e+07 8072.38 1.27 5.81 3.63 -1 -1 1.27 3.34286 2.96487 0.08925 0.3871 0.01177 0.6011 -k6_N10_I40_Fi7_L4_frac1_ff1_45nm.xml ch_intrinsics.v common 3.50 vpr 67.18 MiB -1 -1 0.33 21976 3 0.09 -1 -1 36952 -1 54240 68 99 1 0 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 68788 99 130 344 474 1 226 298 12 12 144 clb auto 27.6 MiB 0.16 661 69948 21317 34488 14143 67.2 MiB 0.19 0.00 1.84343 -120.716 -1.84343 1.84343 0.15 0.000855359 0.000794451 0.0626095 0.0580899 -1 -1 -1 -1 48 1202 11 5.66058e+06 4.21279e+06 394078. 2736.65 1.13 0.39306 0.358389 13382 75762 -1 1134 10 422 645 32033 10158 1.91136 1.91136 -130.644 -1.91136 -1.28997 -0.320482 503207. 3494.49 0.02 0.03 0.08 -1 -1 0.02 0.0244373 0.0228444 0.01049 0.2493 0.08136 0.6693 -k6_N10_I40_Fi7_L4_frac1_ff1_45nm.xml diffeq1.v common 9.57 vpr 70.58 MiB -1 -1 0.51 26860 15 0.44 -1 -1 37852 -1 56252 39 162 0 5 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 72276 162 96 1009 950 1 697 302 16 16 256 mult_36 auto 30.6 MiB 0.83 5715 95430 31310 57647 6473 70.6 MiB 0.66 0.01 20.8518 -1552.97 -20.8518 20.8518 0.30 0.00258218 0.00239459 0.273595 0.254193 -1 -1 -1 -1 48 12084 29 1.21132e+07 4.08187e+06 756778. 2956.16 3.27 0.921586 0.854152 25228 149258 -1 9656 18 3121 6355 884412 237055 21.9917 21.9917 -1682.46 -21.9917 0 0 968034. 3781.38 0.05 0.31 0.14 -1 -1 0.05 0.127578 0.120363 0.007812 0.3548 0.01692 0.6283 -k6_N10_I40_Fi7_L4_frac1_ff1_45nm.xml LU8PEEng.v common 593.80 vpr 464.46 MiB -1 -1 65.86 368140 123 80.41 -1 -1 82500 -1 118312 1347 114 45 8 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 475612 114 102 21994 21904 1 11941 1616 50 50 2500 memory auto 156.5 MiB 202.98 161581 1053785 380004 651181 22600 415.9 MiB 30.32 0.25 80.4223 -52301.6 -80.4223 80.4223 11.61 0.0557918 0.0487136 7.05681 5.85434 -1 -1 -1 -1 98 236041 20 1.47946e+08 1.00426e+08 1.60641e+07 6425.63 115.52 29.836 25.0276 348768 3430976 -1 215161 19 44817 170245 9640319 1795085 80.5561 80.5561 -67031.5 -80.5561 -22.6598 -0.295467 2.03677e+07 8147.07 1.37 6.20 3.86 -1 -1 1.37 3.53842 3.13834 0.08366 0.4323 0.01148 0.5562 -k6_N10_I40_Fi7_L4_frac1_ff2_45nm.xml ch_intrinsics.v common 3.48 vpr 66.52 MiB -1 -1 0.33 22064 3 0.09 -1 -1 36964 -1 54760 68 99 1 0 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 68120 99 130 344 474 1 226 298 12 12 144 clb auto 27.2 MiB 0.14 716 68953 19729 34143 15081 66.5 MiB 0.19 0.00 1.84343 -118.985 -1.84343 1.84343 0.15 0.000850742 0.000790759 0.0619281 0.0573987 -1 -1 -1 -1 50 1303 17 5.66058e+06 4.21279e+06 406292. 2821.48 1.13 0.284861 0.260317 13526 77840 -1 1233 9 409 653 33632 10437 2.03591 2.03591 -135.721 -2.03591 -0.536858 -0.172926 520805. 3616.70 0.02 0.03 0.08 -1 -1 0.02 0.0227263 0.0212214 0.01137 0.2373 0.06958 0.6931 -k6_N10_I40_Fi7_L4_frac1_ff2_45nm.xml diffeq1.v common 9.16 vpr 70.54 MiB -1 -1 0.52 27100 15 0.44 -1 -1 37852 -1 56252 38 162 0 5 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 72236 162 96 1009 950 1 698 301 16 16 256 mult_36 auto 30.6 MiB 0.93 5743 95053 31171 56566 7316 70.5 MiB 0.65 0.01 20.8747 -1519.77 -20.8747 20.8747 0.30 0.00265626 0.00247508 0.263667 0.244952 -1 -1 -1 -1 50 11584 21 1.21132e+07 4.02797e+06 780512. 3048.87 2.75 0.873367 0.809368 25484 153448 -1 9840 19 3115 6410 830429 238282 22.4175 22.4175 -1627.45 -22.4175 0 0 1.00276e+06 3917.05 0.05 0.29 0.14 -1 -1 0.05 0.127592 0.120101 0.008086 0.3483 0.01585 0.6359 -k6_N10_I40_Fi7_L4_frac1_ff2_45nm.xml LU8PEEng.v common 642.74 vpr 424.46 MiB -1 -1 67.05 367476 123 81.67 -1 -1 82216 -1 118696 1233 114 45 8 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 434644 114 102 21994 21904 1 11346 1502 50 50 2500 memory auto 157.1 MiB 204.08 152608 947282 342361 587666 17255 424.5 MiB 26.93 0.23 77.9707 -50234.9 -77.9707 77.9707 11.47 0.0552588 0.0485277 6.75993 5.66432 -1 -1 -1 -1 94 230710 41 1.47946e+08 9.42816e+07 1.55181e+07 6207.23 165.50 28.1624 23.7769 341268 3271592 -1 207523 20 44227 170381 10330402 1943997 78.529 78.529 -62339.6 -78.529 -13.269 -0.296573 1.95446e+07 7817.85 1.31 6.28 3.59 -1 -1 1.31 3.54084 3.11642 0.08416 0.4117 0.01161 0.5767 -k6_N10_I40_Fi8_L4_frac1_ff1_45nm.xml ch_intrinsics.v common 2.92 vpr 67.10 MiB -1 -1 0.34 21976 3 0.10 -1 -1 36508 -1 54432 68 99 1 0 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 68712 99 130 344 474 1 224 298 12 12 144 clb auto 27.2 MiB 0.17 706 70943 20941 35477 14525 67.1 MiB 0.20 0.00 1.84453 -119.21 -1.84453 1.84453 0.16 0.000828297 0.000769099 0.0639434 0.0592965 -1 -1 -1 -1 48 1237 11 5.66058e+06 4.21279e+06 394078. 2736.65 0.48 0.179327 0.164594 13382 75762 -1 1171 9 372 557 25031 7824 1.88715 1.88715 -132.438 -1.88715 -0.22767 -0.0807994 503207. 3494.49 0.02 0.03 0.08 -1 -1 0.02 0.0229381 0.0214536 0.01087 0.265 0.07954 0.6554 -k6_N10_I40_Fi8_L4_frac1_ff1_45nm.xml diffeq1.v common 10.27 vpr 70.63 MiB -1 -1 0.53 27188 15 0.44 -1 -1 37784 -1 55936 39 162 0 5 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 72328 162 96 1009 950 1 696 302 16 16 256 mult_36 auto 30.6 MiB 0.67 5628 84298 25487 51591 7220 70.6 MiB 0.59 0.01 20.5614 -1538.13 -20.5614 20.5614 0.30 0.0027231 0.00253236 0.238571 0.221802 -1 -1 -1 -1 46 12426 32 1.21132e+07 4.08187e+06 727248. 2840.81 4.16 0.909927 0.842865 24972 144857 -1 10162 19 3458 7319 913728 258180 21.8808 21.8808 -1652.95 -21.8808 0 0 934704. 3651.19 0.05 0.32 0.14 -1 -1 0.05 0.131367 0.123688 0.007933 0.3493 0.01655 0.6342 -k6_N10_I40_Fi8_L4_frac1_ff1_45nm.xml LU8PEEng.v common 743.04 vpr 413.75 MiB -1 -1 65.30 368232 123 80.19 -1 -1 82500 -1 118368 1321 114 45 8 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 423676 114 102 21994 21904 1 11865 1590 50 50 2500 memory auto 157.0 MiB 234.23 159962 1012674 360995 632974 18705 413.7 MiB 28.65 0.24 80.0347 -53799.9 -80.0347 80.0347 11.56 0.0584029 0.048305 6.87553 5.75603 -1 -1 -1 -1 98 236251 50 1.47946e+08 9.90244e+07 1.60641e+07 6425.63 236.89 27.583 23.3765 348768 3430976 -1 213518 19 44437 171946 9945264 1846943 82.1489 82.1489 -66738.4 -82.1489 -32.5879 -0.295467 2.03677e+07 8147.07 1.31 6.03 3.88 -1 -1 1.31 3.45254 3.05529 0.0845 0.427 0.01145 0.5616 -k6_N10_I40_Fi8_L4_frac1_ff2_45nm.xml ch_intrinsics.v common 2.93 vpr 67.35 MiB -1 -1 0.33 22060 3 0.09 -1 -1 36884 -1 54528 68 99 1 0 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 68968 99 130 344 474 1 224 298 12 12 144 clb auto 27.6 MiB 0.15 687 68953 19356 33866 15731 67.4 MiB 0.19 0.00 1.84343 -121.129 -1.84343 1.84343 0.16 0.00085163 0.000776737 0.0614238 0.0570225 -1 -1 -1 -1 50 1252 13 5.66058e+06 4.21279e+06 406292. 2821.48 0.55 0.231719 0.212206 13526 77840 -1 1181 11 369 581 25228 7706 1.92695 1.92695 -132.699 -1.92695 -0.484167 -0.178238 520805. 3616.70 0.02 0.04 0.08 -1 -1 0.02 0.0260129 0.0241858 0.01196 0.2348 0.06986 0.6954 -k6_N10_I40_Fi8_L4_frac1_ff2_45nm.xml diffeq1.v common 10.78 vpr 70.93 MiB -1 -1 0.50 27244 15 0.44 -1 -1 37616 -1 56252 39 162 0 5 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 72628 162 96 1009 950 1 696 302 16 16 256 mult_36 auto 30.6 MiB 0.82 5628 84298 25487 51591 7220 70.9 MiB 0.61 0.01 20.5614 -1538.13 -20.5614 20.5614 0.31 0.00277962 0.00258393 0.2467 0.229461 -1 -1 -1 -1 48 11900 27 1.21132e+07 4.08187e+06 756778. 2956.16 4.46 1.13654 1.0514 25228 149258 -1 9893 20 3407 7154 882105 254608 22.0311 22.0311 -1692.99 -22.0311 0 0 968034. 3781.38 0.05 0.34 0.14 -1 -1 0.05 0.137752 0.129626 0.008223 0.3385 0.01605 0.6455 -k6_N10_I40_Fi8_L4_frac1_ff2_45nm.xml LU8PEEng.v common 690.94 vpr 425.08 MiB -1 -1 65.25 367856 123 79.72 -1 -1 82696 -1 118676 1206 114 45 8 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 435280 114 102 21994 21904 1 11136 1475 50 50 2500 memory auto 157.9 MiB 235.02 149552 916312 318253 574633 23426 425.1 MiB 26.64 0.23 79.6388 -49613.8 -79.6388 79.6388 11.39 0.057808 0.048017 6.8334 5.67923 -1 -1 -1 -1 96 228699 35 1.47946e+08 9.28264e+07 1.58254e+07 6330.17 187.06 28.054 23.6791 343768 3324272 -1 203782 21 43588 169952 10265906 1938967 79.9409 79.9409 -62955.8 -79.9409 -22.6241 -0.295467 1.97871e+07 7914.84 1.28 6.23 3.62 -1 -1 1.28 3.53958 3.11283 0.08518 0.4086 0.01162 0.5798 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time total_power routing_power_perc clock_power_perc tile_power_perc +k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml ch_intrinsics.v common 2.60 vpr 66.07 MiB -1 -1 0.32 18744 3 0.07 -1 -1 32732 -1 52608 68 99 1 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 67656 99 130 344 474 1 225 298 12 12 144 clb auto 26.7 MiB 0.04 1615 746 67958 18270 34570 15118 66.1 MiB 0.11 0.00 2.01486 1.59858 -123.171 -1.59858 1.59858 0.10 0.000562968 0.000526938 0.0414092 0.0386945 -1 -1 -1 -1 38 1499 18 5.66058e+06 4.21279e+06 319130. 2216.18 0.87 0.28413 0.259627 12522 62564 -1 1252 9 384 592 28238 9313 1.91586 1.91586 -140.767 -1.91586 -0.519581 -0.320482 406292. 2821.48 0.01 0.02 0.04 -1 -1 0.01 0.0164233 0.0153724 0.0104 0.2593 0.07351 0.6672 +k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml diffeq1.v common 9.51 vpr 69.40 MiB -1 -1 0.34 23352 15 0.44 -1 -1 33440 -1 54336 39 162 0 5 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 71068 162 96 1009 950 1 708 302 16 16 256 mult_36 auto 29.7 MiB 0.16 9283 5447 78226 20759 50449 7018 69.4 MiB 0.34 0.01 23.1618 21.0975 -1526.6 -21.0975 21.0975 0.20 0.00209238 0.00197803 0.148124 0.138194 -1 -1 -1 -1 46 12326 45 1.21132e+07 4.08187e+06 727248. 2840.81 5.12 1.07781 0.997837 24972 144857 -1 9837 18 3344 6799 857275 248767 22.0372 22.0372 -1631.88 -22.0372 0 0 934704. 3651.19 0.03 0.22 0.09 -1 -1 0.03 0.0898012 0.0847425 0.007635 0.3555 0.01709 0.6274 +k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml LU8PEEng.v common 525.59 vpr 405.41 MiB -1 -1 52.92 340880 123 61.28 -1 -1 77464 -1 116400 1382 114 45 8 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 415140 114 102 21994 21904 1 11821 1651 50 50 2500 memory auto 175.3 MiB 13.56 552678 151396 1064837 378372 663631 22834 394.6 MiB 23.58 0.21 205.795 79.0262 -52621 -79.0262 79.0262 8.95 0.0621295 0.0474182 8.07382 6.45975 -1 -1 -1 -1 84 236453 45 1.47946e+08 1.02312e+08 1.39795e+07 5591.78 306.02 28.888 23.7324 326276 2968264 -1 209371 19 45363 173487 10455005 1964601 80.3198 80.3198 -64807.2 -80.3198 -16.7054 -0.295467 1.77686e+07 7107.43 1.07 5.40 2.50 -1 -1 1.07 2.77363 2.40175 0.07831 0.407 0.01163 0.5813 +k6_N10_I40_Fi6_L4_frac1_ff2_45nm.xml ch_intrinsics.v common 2.40 vpr 66.13 MiB -1 -1 0.22 18748 3 0.07 -1 -1 32724 -1 52608 68 99 1 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 67720 99 130 344 474 1 225 298 12 12 144 clb auto 26.3 MiB 0.09 1559 664 64973 19384 31587 14002 66.1 MiB 0.16 0.00 1.91921 1.59858 -120.912 -1.59858 1.59858 0.15 0.000805737 0.000744572 0.0568112 0.0529754 -1 -1 -1 -1 48 1136 11 5.66058e+06 4.21279e+06 394078. 2736.65 0.46 0.168562 0.154618 13382 75762 -1 1198 9 439 695 31976 9664 1.94957 1.94957 -133.778 -1.94957 -1.10762 -0.29768 503207. 3494.49 0.01 0.02 0.05 -1 -1 0.01 0.0162107 0.0151848 0.01175 0.2361 0.07125 0.6926 +k6_N10_I40_Fi6_L4_frac1_ff2_45nm.xml diffeq1.v common 7.87 vpr 69.52 MiB -1 -1 0.34 23352 15 0.31 -1 -1 33708 -1 54340 39 162 0 5 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 71188 162 96 1009 950 1 708 302 16 16 256 mult_36 auto 30.0 MiB 0.21 9283 5447 78226 20759 50449 7018 69.5 MiB 0.33 0.01 23.1618 21.0975 -1526.6 -21.0975 21.0975 0.19 0.00171406 0.00159821 0.138978 0.129516 -1 -1 -1 -1 46 12193 37 1.21132e+07 4.08187e+06 727248. 2840.81 3.91 0.78903 0.730341 24972 144857 -1 9711 18 3313 6815 851570 248117 22.1603 22.1603 -1670.18 -22.1603 0 0 934704. 3651.19 0.03 0.22 0.09 -1 -1 0.03 0.0895456 0.0844129 0.007898 0.3409 0.01643 0.6427 +k6_N10_I40_Fi6_L4_frac1_ff2_45nm.xml LU8PEEng.v common 398.12 vpr 442.76 MiB -1 -1 54.12 340028 123 67.76 -1 -1 77572 -1 116492 1282 114 45 8 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 453388 114 102 21994 21904 1 11311 1551 50 50 2500 memory auto 176.8 MiB 37.63 527891 152473 961769 343404 598984 19381 395.1 MiB 22.16 0.26 188.143 78.619 -52094.9 -78.619 78.619 8.49 0.0880813 0.0718688 7.76816 6.30967 -1 -1 -1 -1 96 230097 37 1.47946e+08 9.69225e+07 1.58254e+07 6330.17 146.76 34.5737 28.6409 343768 3324272 -1 205895 21 41994 164446 9667422 1829878 79.5395 79.5395 -63191.9 -79.5395 -18.2976 -0.296573 1.97871e+07 7914.84 0.86 5.21 2.46 -1 -1 0.86 3.20712 2.74314 0.08309 0.4204 0.01144 0.5681 +k6_N10_I47_Fi7_L4_frac1_ff1_45nm.xml ch_intrinsics.v common 1.91 vpr 66.28 MiB -1 -1 0.23 18360 3 0.07 -1 -1 32736 -1 52608 68 99 1 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 67872 99 130 344 474 1 225 298 12 12 144 clb auto 26.3 MiB 0.10 1615 739 67958 20256 33438 14264 66.3 MiB 0.12 0.00 2.01929 1.59858 -120.502 -1.59858 1.59858 0.11 0.000557558 0.000521981 0.0411842 0.038502 -1 -1 -1 -1 32 1638 22 5.66058e+06 4.21279e+06 295695. 2053.44 0.22 0.118546 0.109119 12440 56522 -1 1436 9 375 579 29706 10063 1.98015 1.98015 -145.204 -1.98015 -0.629583 -0.296573 361905. 2513.23 0.01 0.02 0.03 -1 -1 0.01 0.0161662 0.0151379 0.01017 0.2587 0.06764 0.6737 +k6_N10_I47_Fi7_L4_frac1_ff1_45nm.xml diffeq1.v common 6.74 vpr 69.04 MiB -1 -1 0.33 23356 15 0.40 -1 -1 33440 -1 54340 38 162 0 5 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 70696 162 96 1009 950 1 700 301 16 16 256 mult_36 auto 29.7 MiB 0.47 9504 5751 92029 29345 55557 7127 69.0 MiB 0.38 0.01 25.1574 21.4416 -1522.86 -21.4416 21.4416 0.20 0.00166215 0.00153914 0.166428 0.154929 -1 -1 -1 -1 46 12599 35 1.21132e+07 4.02797e+06 761464. 2974.47 2.16 0.63689 0.590691 25952 154797 -1 9895 19 3064 6567 851943 250422 22.8964 22.8964 -1711.52 -22.8964 0 0 979054. 3824.43 0.03 0.22 0.10 -1 -1 0.03 0.0911635 0.0860046 0.007797 0.3514 0.01629 0.6323 +k6_N10_I47_Fi7_L4_frac1_ff1_45nm.xml LU8PEEng.v common 632.30 vpr 425.63 MiB -1 -1 52.65 342488 123 67.76 -1 -1 77000 -1 116408 1290 114 45 8 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 435844 114 102 21994 21904 1 11883 1559 50 50 2500 memory auto 174.3 MiB 154.90 542801 148542 977447 334536 618400 24511 425.6 MiB 20.03 0.16 165.745 79.9647 -51541.2 -79.9647 79.9647 9.85 0.0462859 0.0415889 6.23686 4.93392 -1 -1 -1 -1 88 223852 29 1.47946e+08 9.73536e+07 1.53362e+07 6134.50 265.99 24.631 20.2444 343368 3288204 -1 200471 19 40596 158712 8780039 1707271 81.2246 81.2246 -65781.9 -81.2246 -28.6315 -0.293253 1.91856e+07 7674.24 0.82 4.73 2.31 -1 -1 0.82 2.75841 2.39016 0.08323 0.3989 0.01155 0.5895 +k6_N10_I47_Fi7_L4_frac1_ff2_45nm.xml ch_intrinsics.v common 2.21 vpr 66.36 MiB -1 -1 0.22 18748 3 0.07 -1 -1 32732 -1 52608 68 99 1 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 67956 99 130 344 474 1 225 298 12 12 144 clb auto 27.0 MiB 0.11 1559 673 64973 19033 31510 14430 66.4 MiB 0.11 0.00 1.92212 1.59858 -121.022 -1.59858 1.59858 0.10 0.000565603 0.000528419 0.039478 0.0369081 -1 -1 -1 -1 34 1378 15 5.66058e+06 4.21279e+06 307677. 2136.65 0.51 0.155075 0.14217 12584 59343 -1 1235 7 408 642 24760 8827 1.98319 1.98319 -142.192 -1.98319 -0.318236 -0.295467 377431. 2621.05 0.01 0.02 0.04 -1 -1 0.01 0.0143727 0.0135086 0.01125 0.2144 0.06278 0.7228 +k6_N10_I47_Fi7_L4_frac1_ff2_45nm.xml diffeq1.v common 8.10 vpr 69.72 MiB -1 -1 0.36 23352 15 0.30 -1 -1 33820 -1 54340 38 162 0 5 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 71392 162 96 1009 950 1 696 301 16 16 256 mult_36 auto 30.0 MiB 0.52 9113 5761 84973 28251 50600 6122 69.7 MiB 0.35 0.01 23.8418 21.6725 -1535.01 -21.6725 21.6725 0.20 0.00167188 0.00155658 0.151533 0.141298 -1 -1 -1 -1 48 12122 33 1.21132e+07 4.02797e+06 791884. 3093.30 3.54 0.808887 0.74702 26208 159478 -1 9984 19 3201 6676 954607 275743 23.0792 23.0792 -1746.36 -23.0792 0 0 1.01413e+06 3961.44 0.03 0.23 0.09 -1 -1 0.03 0.0901325 0.0849653 0.008091 0.3418 0.01583 0.6424 +k6_N10_I47_Fi7_L4_frac1_ff2_45nm.xml LU8PEEng.v common 638.49 vpr 425.22 MiB -1 -1 53.11 340704 123 75.20 -1 -1 77572 -1 116408 1198 114 45 8 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 435424 114 102 21994 21904 1 11199 1467 50 50 2500 memory auto 173.7 MiB 160.18 498306 142361 884659 311124 554810 18725 425.2 MiB 18.63 0.17 175.7 78.9128 -49795.1 -78.9128 78.9128 9.86 0.0494021 0.0446317 6.20357 4.97966 -1 -1 -1 -1 86 212684 30 1.47946e+08 9.23952e+07 1.49824e+07 5992.98 257.20 25.7378 21.2495 340872 3235144 -1 192023 18 37543 153253 8529801 1673802 79.8203 79.8203 -61388.2 -79.8203 -28.4501 -0.29436 1.89069e+07 7562.76 0.79 4.41 2.28 -1 -1 0.79 2.59244 2.28805 0.08429 0.3846 0.01159 0.6038 +k6_N10_I53_Fi8_L4_frac1_ff1_45nm.xml ch_intrinsics.v common 2.13 vpr 66.50 MiB -1 -1 0.23 18748 3 0.07 -1 -1 32700 -1 52608 68 99 1 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 68096 99 130 344 474 1 224 298 12 12 144 clb auto 26.7 MiB 0.10 1602 677 71938 23237 33899 14802 66.5 MiB 0.15 0.00 2.12998 1.84564 -120.965 -1.84564 1.84564 0.11 0.000760103 0.000723485 0.0543791 0.0512037 -1 -1 -1 -1 32 1650 13 5.66058e+06 4.21279e+06 307825. 2137.67 0.36 0.184989 0.171256 12860 59602 -1 1400 11 452 691 34201 11876 1.88346 1.88346 -144.078 -1.88346 -0.484813 -0.296573 375846. 2610.04 0.01 0.03 0.04 -1 -1 0.01 0.0208013 0.0193133 0.01053 0.2499 0.06921 0.6809 +k6_N10_I53_Fi8_L4_frac1_ff1_45nm.xml diffeq1.v common 8.05 vpr 69.89 MiB -1 -1 0.49 23352 15 0.30 -1 -1 33476 -1 53996 38 162 0 5 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 71568 162 96 1009 950 1 704 301 16 16 256 mult_36 auto 30.4 MiB 0.40 9299 5715 87997 27573 53784 6640 69.9 MiB 0.38 0.01 22.6764 20.6663 -1473.39 -20.6663 20.6663 0.22 0.00359067 0.00347295 0.165973 0.155071 -1 -1 -1 -1 46 12065 29 1.21132e+07 4.02797e+06 791147. 3090.42 3.64 0.803986 0.743326 26792 163197 -1 9651 15 2919 6056 796294 221717 22.291 22.291 -1649.91 -22.291 0 0 1.01637e+06 3970.19 0.03 0.20 0.09 -1 -1 0.03 0.0802319 0.0758941 0.008006 0.3497 0.01632 0.6339 +k6_N10_I53_Fi8_L4_frac1_ff1_45nm.xml LU8PEEng.v common 485.23 vpr 463.73 MiB -1 -1 54.58 342120 123 73.41 -1 -1 77576 -1 116408 1282 114 45 8 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 474864 114 102 21994 21904 1 11706 1551 50 50 2500 memory auto 172.6 MiB 183.20 537524 153309 952795 327484 605097 20214 463.7 MiB 19.91 0.17 159.734 79.8376 -52451.3 -79.8376 79.8376 11.27 0.0471696 0.0423752 6.07508 4.93741 -1 -1 -1 -1 88 231712 31 1.47946e+08 9.69225e+07 1.59255e+07 6370.18 72.63 20.3706 16.975 353736 3474828 -1 204409 17 37217 148875 9022956 1757872 82.3976 82.3976 -63664.5 -82.3976 -18.5878 -0.293253 1.98712e+07 7948.47 0.88 4.72 2.47 -1 -1 0.88 2.8584 2.53156 0.08644 0.3925 0.01163 0.5959 +k6_N10_I53_Fi8_L4_frac1_ff2_45nm.xml ch_intrinsics.v common 2.62 vpr 66.47 MiB -1 -1 0.30 18364 3 0.07 -1 -1 32368 -1 52608 68 99 1 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 68068 99 130 344 474 1 223 298 12 12 144 clb auto 26.6 MiB 0.12 1533 730 65968 20449 32015 13504 66.5 MiB 0.11 0.00 1.95115 1.59969 -121.376 -1.59969 1.59969 0.11 0.000570251 0.000533369 0.0418153 0.0391856 -1 -1 -1 -1 44 1340 10 5.66058e+06 4.21279e+06 391831. 2721.05 0.74 0.205628 0.188191 14004 80442 -1 1168 5 262 386 15138 4773 1.99374 1.99374 -136.225 -1.99374 -1.02957 -0.29768 509951. 3541.33 0.02 0.02 0.05 -1 -1 0.02 0.0138025 0.0130231 0.01157 0.2322 0.06868 0.6991 +k6_N10_I53_Fi8_L4_frac1_ff2_45nm.xml diffeq1.v common 8.39 vpr 69.99 MiB -1 -1 0.56 23356 15 0.45 -1 -1 33808 -1 54340 38 162 0 5 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 71672 162 96 1009 950 1 704 301 16 16 256 mult_36 auto 30.4 MiB 0.48 9299 5715 87997 27573 53784 6640 70.0 MiB 0.38 0.01 22.6764 20.6663 -1473.39 -20.6663 20.6663 0.21 0.00167207 0.00155769 0.162554 0.151353 -1 -1 -1 -1 46 12397 31 1.21132e+07 4.02797e+06 791147. 3090.42 3.53 0.754145 0.697395 26792 163197 -1 9805 17 3101 6515 893935 246691 22.3382 22.3382 -1672.66 -22.3382 0 0 1.01637e+06 3970.19 0.03 0.22 0.09 -1 -1 0.03 0.0855505 0.0808185 0.008312 0.3386 0.01569 0.6458 +k6_N10_I53_Fi8_L4_frac1_ff2_45nm.xml LU8PEEng.v common 514.51 vpr 468.14 MiB -1 -1 54.59 340880 123 66.74 -1 -1 77192 -1 116412 1189 114 45 8 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 479372 114 102 21994 21904 1 10803 1458 50 50 2500 memory auto 173.6 MiB 205.93 506208 141993 860914 287837 555087 17990 468.1 MiB 19.97 0.18 173.854 77.809 -53343.1 -77.809 77.809 11.37 0.058387 0.052435 6.55994 5.25064 -1 -1 -1 -1 86 210901 20 1.47946e+08 9.19101e+07 1.55613e+07 6224.53 95.11 21.2605 17.5729 351240 3418312 -1 189357 19 34668 146207 8378386 1660456 79.4888 79.4888 -63710.1 -79.4888 -20.6468 -0.292146 1.95825e+07 7833.01 0.82 4.66 2.29 -1 -1 0.82 2.8036 2.44094 0.08776 0.3779 0.01182 0.6103 +k6_N10_I40_Fi7_L4_frac1_ff1_45nm.xml ch_intrinsics.v common 2.92 vpr 66.19 MiB -1 -1 0.31 18744 3 0.10 -1 -1 32740 -1 52608 68 99 1 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 67776 99 130 344 474 1 225 298 12 12 144 clb auto 26.3 MiB 0.10 1615 746 67958 18270 34570 15118 66.2 MiB 0.11 0.00 2.01486 1.59858 -123.171 -1.59858 1.59858 0.10 0.000556701 0.000520594 0.0409336 0.0382267 -1 -1 -1 -1 38 1453 18 5.66058e+06 4.21279e+06 319130. 2216.18 0.84 0.240772 0.219266 12522 62564 -1 1256 9 390 597 28390 9347 1.91586 1.91586 -139.414 -1.91586 -0.519581 -0.320482 406292. 2821.48 0.02 0.04 0.07 -1 -1 0.02 0.0249994 0.0232439 0.01048 0.2589 0.07296 0.6681 +k6_N10_I40_Fi7_L4_frac1_ff1_45nm.xml diffeq1.v common 7.44 vpr 69.52 MiB -1 -1 0.35 23352 15 0.30 -1 -1 33448 -1 54344 38 162 0 5 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 71192 162 96 1009 950 1 700 301 16 16 256 mult_36 auto 29.7 MiB 0.45 9328 5492 86989 27657 51981 7351 69.5 MiB 0.37 0.01 24.0124 21.2051 -1567.83 -21.2051 21.2051 0.19 0.00168462 0.001571 0.159436 0.148658 -1 -1 -1 -1 48 12122 34 1.21132e+07 4.02797e+06 756778. 2956.16 2.79 0.668469 0.620661 25228 149258 -1 9821 21 3409 7006 953600 270168 22.4255 22.4255 -1694.34 -22.4255 0 0 968034. 3781.38 0.03 0.24 0.09 -1 -1 0.03 0.0968556 0.0912177 0.007714 0.3551 0.01683 0.628 +k6_N10_I40_Fi7_L4_frac1_ff1_45nm.xml LU8PEEng.v common 617.65 vpr 395.10 MiB -1 -1 59.81 339204 123 70.26 -1 -1 77108 -1 116408 1325 114 45 8 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 404580 114 102 21994 21904 1 11955 1594 50 50 2500 memory auto 175.0 MiB 120.88 545909 151828 1053285 379121 652784 21380 393.1 MiB 22.00 0.18 211.344 80.3034 -52037 -80.3034 80.3034 8.39 0.0493259 0.0426176 6.56156 5.30077 -1 -1 -1 -1 88 232639 46 1.47946e+08 9.924e+07 1.46563e+07 5862.50 274.59 25.8876 21.3956 331272 3068748 -1 207629 21 45022 171190 9772327 1836347 81.5961 81.5961 -64327.1 -81.5961 -24.5559 -0.29436 1.83775e+07 7351.00 0.80 5.09 2.23 -1 -1 0.80 2.88577 2.49127 0.0801 0.4096 0.01157 0.5789 +k6_N10_I40_Fi7_L4_frac1_ff2_45nm.xml ch_intrinsics.v common 2.09 vpr 66.26 MiB -1 -1 0.25 18744 3 0.07 -1 -1 32736 -1 52608 68 99 1 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 67848 99 130 344 474 1 225 298 12 12 144 clb auto 26.3 MiB 0.08 1559 664 64973 19384 31587 14002 66.3 MiB 0.11 0.00 1.91921 1.59858 -120.912 -1.59858 1.59858 0.10 0.000570431 0.000533463 0.0398962 0.0373491 -1 -1 -1 -1 48 1146 11 5.66058e+06 4.21279e+06 394078. 2736.65 0.33 0.121566 0.111929 13382 75762 -1 1214 9 433 677 31444 9588 1.94957 1.94957 -134.318 -1.94957 -1.10762 -0.29768 503207. 3494.49 0.01 0.03 0.05 -1 -1 0.01 0.0208467 0.0194099 0.01183 0.2373 0.07076 0.692 +k6_N10_I40_Fi7_L4_frac1_ff2_45nm.xml diffeq1.v common 7.46 vpr 69.05 MiB -1 -1 0.34 23360 15 0.46 -1 -1 33808 -1 54344 38 162 0 5 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 70704 162 96 1009 950 1 700 301 16 16 256 mult_36 auto 29.6 MiB 0.82 9328 5492 86989 27657 51981 7351 69.0 MiB 0.41 0.01 24.0124 21.2051 -1567.83 -21.2051 21.2051 0.19 0.00457576 0.0042881 0.184297 0.172051 -1 -1 -1 -1 48 12614 43 1.21132e+07 4.02797e+06 756778. 2956.16 2.05 0.671949 0.62339 25228 149258 -1 9813 21 3311 6933 923000 260867 22.3848 22.3848 -1667.23 -22.3848 0 0 968034. 3781.38 0.04 0.38 0.15 -1 -1 0.04 0.162403 0.15266 0.008004 0.3409 0.01625 0.6428 +k6_N10_I40_Fi7_L4_frac1_ff2_45nm.xml LU8PEEng.v common 417.50 vpr 407.57 MiB -1 -1 51.36 340776 123 65.72 -1 -1 77944 -1 116408 1237 114 45 8 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 417356 114 102 21994 21904 1 11319 1506 50 50 2500 memory auto 174.6 MiB 117.47 510273 146262 916180 316752 580447 18981 392.9 MiB 29.07 0.18 165.87 79.0039 -52422.3 -79.0039 79.0039 8.86 0.06359 0.0575998 10.4538 8.54795 -1 -1 -1 -1 88 228519 39 1.47946e+08 9.44971e+07 1.46563e+07 5862.50 80.09 30.4837 25.1306 331272 3068748 -1 202165 20 43563 170190 10468459 1963493 80.5091 80.5091 -64425 -80.5091 -28.7444 -0.217304 1.83775e+07 7351.00 0.78 5.22 2.53 -1 -1 0.78 2.88415 2.48287 0.08172 0.3986 0.01152 0.5898 +k6_N10_I40_Fi8_L4_frac1_ff1_45nm.xml ch_intrinsics.v common 2.51 vpr 66.29 MiB -1 -1 0.35 18748 3 0.07 -1 -1 32164 -1 52608 68 99 1 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 67884 99 130 344 474 1 224 298 12 12 144 clb auto 26.3 MiB 0.16 1602 666 71938 23977 33264 14697 66.3 MiB 0.18 0.00 2.12112 1.84343 -121.24 -1.84343 1.84343 0.11 0.000569735 0.000533646 0.0633907 0.0590458 -1 -1 -1 -1 48 1355 18 5.66058e+06 4.21279e+06 394078. 2736.65 0.37 0.185219 0.170081 13382 75762 -1 1110 12 455 720 27368 8107 1.92497 1.92497 -135.097 -1.92497 -1.55249 -0.320482 503207. 3494.49 0.01 0.03 0.05 -1 -1 0.01 0.0195482 0.0182461 0.01038 0.2431 0.0817 0.6752 +k6_N10_I40_Fi8_L4_frac1_ff1_45nm.xml diffeq1.v common 9.87 vpr 69.59 MiB -1 -1 0.43 23360 15 0.45 -1 -1 33444 -1 54344 37 162 0 5 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 71260 162 96 1009 950 1 700 300 16 16 256 mult_36 auto 30.0 MiB 0.37 9485 5610 94582 32807 54533 7242 69.6 MiB 0.52 0.01 23.4051 20.8518 -1522.69 -20.8518 20.8518 0.19 0.0017459 0.00162984 0.238561 0.22249 -1 -1 -1 -1 56 11497 31 1.21132e+07 3.97408e+06 870502. 3400.40 4.78 1.06486 0.985301 26504 172068 -1 9372 19 3152 6553 767916 254054 22.0135 22.0135 -1616.86 -22.0135 0 0 1.11200e+06 4343.75 0.03 0.26 0.11 -1 -1 0.03 0.121125 0.114779 0.008056 0.36 0.0171 0.6229 +k6_N10_I40_Fi8_L4_frac1_ff1_45nm.xml LU8PEEng.v common 431.79 vpr 403.17 MiB -1 -1 57.52 340456 123 73.46 -1 -1 77196 -1 116412 1313 114 45 8 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 412844 114 102 21994 21904 1 11874 1582 50 50 2500 memory auto 175.5 MiB 127.72 524305 149710 996694 350454 623863 22377 393.6 MiB 26.24 0.20 203.639 80.9643 -51545.9 -80.9643 80.9643 8.39 0.0657084 0.0526311 8.69857 7.16568 -1 -1 -1 -1 94 223929 33 1.47946e+08 9.85932e+07 1.55181e+07 6207.23 67.00 26.1341 21.847 341268 3271592 -1 206441 20 44988 173109 9748126 1854113 82.7058 82.7058 -65880.3 -82.7058 -20.8209 -0.193384 1.95446e+07 7817.85 1.28 7.30 4.37 -1 -1 1.28 4.23242 3.61957 0.08268 0.4153 0.01156 0.5731 +k6_N10_I40_Fi8_L4_frac1_ff2_45nm.xml ch_intrinsics.v common 2.50 vpr 66.00 MiB -1 -1 0.22 17984 3 0.07 -1 -1 32052 -1 52608 68 99 1 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 67588 99 130 344 474 1 223 298 12 12 144 clb auto 26.7 MiB 0.09 1533 708 65968 20934 31709 13325 66.0 MiB 0.11 0.00 1.94397 1.59858 -119.385 -1.59858 1.59858 0.10 0.000559731 0.000523779 0.0400831 0.0375076 -1 -1 -1 -1 46 1248 19 5.66058e+06 4.21279e+06 378970. 2631.74 0.79 0.311108 0.284597 13238 73581 -1 1204 9 412 659 29582 9323 1.90944 1.90944 -132.99 -1.90944 -1.05698 -0.322548 486261. 3376.82 0.01 0.03 0.05 -1 -1 0.01 0.0177437 0.0167297 0.01201 0.2303 0.07038 0.6994 +k6_N10_I40_Fi8_L4_frac1_ff2_45nm.xml diffeq1.v common 10.58 vpr 69.70 MiB -1 -1 0.58 22696 15 0.47 -1 -1 33808 -1 54340 37 162 0 5 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 71368 162 96 1009 950 1 700 300 16 16 256 mult_36 auto 30.0 MiB 0.55 9485 5610 94582 32808 54547 7227 69.7 MiB 0.39 0.01 23.4051 20.8518 -1522.66 -20.8518 20.8518 0.19 0.00166218 0.00154141 0.169989 0.158279 -1 -1 -1 -1 56 11809 46 1.21132e+07 3.97408e+06 870502. 3400.40 5.43 1.03813 0.961056 26504 172068 -1 9483 23 3566 7596 912328 301551 22.4383 22.4383 -1675.76 -22.4383 0 0 1.11200e+06 4343.75 0.03 0.25 0.11 -1 -1 0.03 0.104618 0.0981207 0.008278 0.3493 0.01636 0.6344 +k6_N10_I40_Fi8_L4_frac1_ff2_45nm.xml LU8PEEng.v common 567.43 vpr 394.45 MiB -1 -1 51.45 339968 123 70.70 -1 -1 76424 -1 116412 1207 114 45 8 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 403920 114 102 21994 21904 1 11085 1476 50 50 2500 memory auto 173.7 MiB 130.64 491408 141971 866676 294452 552810 19414 391.9 MiB 17.82 0.15 158.585 79.1521 -48519.8 -79.1521 79.1521 8.23 0.0453742 0.0406504 5.90749 4.79132 -1 -1 -1 -1 86 219171 50 1.47946e+08 9.28803e+07 1.43148e+07 5725.91 226.89 25.5151 20.9431 328776 3019144 -1 195661 23 42037 165667 9419021 1798243 80.1516 80.1516 -60422.3 -80.1516 -31.1111 -0.295467 1.81111e+07 7244.46 0.94 6.49 2.12 -1 -1 0.94 3.85264 3.3137 0.08223 0.3879 0.01173 0.6003 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/power_extended_circuit_list/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/power_extended_circuit_list/config/golden_results.txt index 8d6884970eb..276468e2908 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/power_extended_circuit_list/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/power_extended_circuit_list/config/golden_results.txt @@ -1,15 +1,15 @@ - arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time total_power routing_power_perc clock_power_perc tile_power_perc - k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml bgm.v common 98.48 parmys 238.48 MiB -1 -1 62.65 244200 13 8.25 -1 -1 47788 -1 49624 326 257 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 95576 257 32 5008 5040 1 2954 615 23 23 529 clb auto 50.5 MiB 2.76 20267 220191 65143 146065 8983 93.3 MiB 2.97 0.04 8.82032 -3904.7 -8.82032 8.82032 0.54 0.0109643 0.0098333 1.02884 0.902188 -1 -1 -1 -1 56 33645 24 2.70004e+07 1.75694e+07 1.92373e+06 3636.54 6.22 3.27588 2.85668 56706 387443 -1 30010 16 11550 36095 972511 199422 9.40635 9.40635 -3964.62 -9.40635 0 0 2.45466e+06 4640.18 0.09 0.82 0.33 -1 -1 0.09 0.508209 0.459137 0.01648 0.4272 0.03377 0.5391 - k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml blob_merge.v common 94.21 parmys 306.69 MiB -1 -1 21.16 314052 7 13.24 -1 -1 60844 -1 50612 549 36 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 136868 36 100 6778 6878 1 3144 685 30 30 900 clb auto 67.3 MiB 3.50 42466 287395 83633 184471 19291 113.8 MiB 5.19 0.06 5.74861 -2247.23 -5.74861 5.74861 1.03 0.0222208 0.0200972 1.955 1.66503 -1 -1 -1 -1 66 68658 45 4.8774e+07 2.95878e+07 3.99156e+06 4435.07 27.65 7.52931 6.32406 104036 803752 -1 60922 16 14883 67597 2789200 373708 5.76735 5.76735 -2377.78 -5.76735 0 0 4.95347e+06 5503.86 0.20 1.71 0.69 -1 -1 0.20 0.908064 0.803825 0.02605 0.351 0.06511 0.5839 - k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml boundtop.v common 24.14 vpr 68.57 MiB -1 -1 17.73 31664 4 0.24 -1 -1 34328 -1 55248 53 195 1 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 70220 195 193 1087 1280 1 610 442 15 15 225 io auto 28.4 MiB 0.31 3111 131716 33861 86359 11496 68.6 MiB 0.67 0.01 2.49928 -1087.72 -2.49928 2.49928 0.23 0.00362287 0.00338275 0.298018 0.277768 -1 -1 -1 -1 40 5849 18 1.03862e+07 3.40438e+06 568276. 2525.67 1.78 1.09849 1.00863 21262 112936 -1 5416 11 1616 2529 155491 45590 2.72859 2.72859 -1209.59 -2.72859 -0.959406 -0.246 712852. 3168.23 0.02 0.09 0.07 -1 -1 0.02 0.0607763 0.057325 0.01365 0.3769 0.05606 0.567 - k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml ch_intrinsics.v common 4.23 vpr 63.89 MiB -1 -1 0.49 18176 3 0.10 -1 -1 33044 -1 53092 68 99 1 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65428 99 130 344 474 1 226 298 12 12 144 clb auto 24.1 MiB 0.08 678 66963 19395 33485 14083 63.9 MiB 0.23 0.00 1.86362 -122.41 -1.86362 1.86362 0.14 0.00130445 0.00123497 0.0907109 0.085881 -1 -1 -1 -1 52 1254 11 5.66058e+06 4.21279e+06 419432. 2912.72 0.65 0.338628 0.310581 13810 82561 -1 1175 7 368 599 29659 8862 1.9806 1.9806 -135.825 -1.9806 -0.309826 -0.0782318 551878. 3832.49 0.02 0.04 0.08 -1 -1 0.02 0.0250196 0.0231993 0.01031 0.263 0.08354 0.6535 - k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml diffeq1.v common 10.16 vpr 68.16 MiB -1 -1 0.74 23332 15 0.35 -1 -1 34092 -1 54824 39 162 0 5 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 69796 162 96 1009 950 1 709 302 16 16 256 mult_36 auto 28.2 MiB 0.19 5587 92394 30880 53838 7676 68.2 MiB 0.69 0.01 21.0975 -1536.06 -21.0975 21.0975 0.26 0.00337966 0.00317219 0.323022 0.303359 -1 -1 -1 -1 56 11812 30 1.21132e+07 4.08187e+06 870502. 3400.40 4.17 1.16452 1.07293 26504 172068 -1 9609 16 2935 5927 775463 239759 22.3005 22.3005 -1636.88 -22.3005 0 0 1.11200e+06 4343.75 0.04 0.29 0.15 -1 -1 0.04 0.13141 0.122082 0.007854 0.3765 0.01734 0.6061 - k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml diffeq2.v common 7.88 vpr 65.00 MiB -1 -1 0.61 21868 16 0.27 -1 -1 33428 -1 53744 25 66 0 5 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 66560 66 96 616 557 1 415 192 16 16 256 mult_36 auto 25.5 MiB 0.17 3625 36690 9459 22826 4405 65.0 MiB 0.32 0.01 17.203 -935.064 -17.203 17.203 0.26 0.00236496 0.0022302 0.166486 0.157037 -1 -1 -1 -1 40 8373 37 1.21132e+07 3.32735e+06 642278. 2508.90 3.53 0.766237 0.703647 23952 127161 -1 7217 17 2534 5167 951988 292757 18.0101 18.0101 -1019.64 -18.0101 0 0 805949. 3148.24 0.02 0.19 0.08 -1 -1 0.02 0.05209 0.0486566 0.007411 0.3353 0.01978 0.6449 - k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml LU8PEEng.v common 440.60 vpr 461.59 MiB -1 -1 84.00 349248 123 64.46 -1 -1 78572 -1 117272 1375 114 45 8 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 472672 114 102 21994 21904 1 11802 1644 50 50 2500 memory auto 155.4 MiB 20.55 160790 1049136 374899 655277 18960 461.6 MiB 26.29 0.22 78.4871 -53143.2 -78.4871 78.4871 9.75 0.0621978 0.0545143 7.35439 6.13837 -1 -1 -1 -1 94 240662 29 1.47946e+08 1.01935e+08 1.55181e+07 6207.23 162.29 28.9908 23.8912 341268 3271592 -1 217509 21 44132 167614 9994098 1867129 81.2261 81.2261 -64082.4 -81.2261 -12.841 -0.29436 1.95446e+07 7817.85 0.86 6.13 3.06 -1 -1 0.86 3.42933 2.93557 0.08134 0.4302 0.01139 0.5585 - k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml mkDelayWorker32B.v common 70.13 vpr 332.00 MiB -1 -1 18.29 128412 5 3.25 -1 -1 56812 -1 73340 470 506 47 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 339964 506 553 3055 3608 1 2790 1576 50 50 2500 memory auto 45.7 MiB 4.81 15429 1147451 561958 401565 183928 332.0 MiB 5.51 0.07 7.14518 -1819.3 -7.14518 7.14518 9.87 0.0227758 0.020582 2.93349 2.63053 -1 -1 -1 -1 38 22365 17 1.47946e+08 5.10868e+07 6.86584e+06 2746.33 11.85 8.32526 7.54939 251304 1421084 -1 21433 18 3916 5150 995348 263030 7.69019 7.69019 -2049.85 -7.69019 -5.04137 -0.293253 8.69095e+06 3476.38 0.41 1.18 1.23 -1 -1 0.41 0.985049 0.907039 0.1604 0.1419 0.03923 0.8189 - k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml mkPktMerge.v common 13.31 vpr 71.36 MiB -1 -1 1.63 25356 2 0.13 -1 -1 33796 -1 60140 29 311 15 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 73068 311 156 972 1128 1 953 511 28 28 784 memory auto 29.5 MiB 0.51 9032 192459 70202 112997 9260 71.4 MiB 1.14 0.02 4.00429 -4585.85 -4.00429 4.00429 0.90 0.00569369 0.00505114 0.564395 0.499447 -1 -1 -1 -1 36 14754 13 4.25198e+07 9.78293e+06 1.94918e+06 2486.20 3.93 1.82677 1.61944 74338 387760 -1 13894 15 2784 3327 698932 209763 4.39426 4.39426 -5070.29 -4.39426 -12.8598 -0.360359 2.40571e+06 3068.51 0.10 0.36 0.33 -1 -1 0.10 0.20904 0.188673 0.0833 0.1522 0.01727 0.8306 - k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml mkSMAdapter4B.v common 28.03 vpr 76.09 MiB -1 -1 9.24 55960 7 2.30 -1 -1 37416 -1 59040 157 193 5 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 77920 193 205 2234 2439 1 1179 560 20 20 400 memory auto 35.6 MiB 1.10 9842 228953 80249 124571 24133 76.1 MiB 1.72 0.02 5.08439 -2926.08 -5.08439 5.08439 0.43 0.00685575 0.00620383 0.738776 0.665656 -1 -1 -1 -1 48 17744 33 2.07112e+07 1.12014e+07 1.23055e+06 3076.38 6.37 2.5483 2.26983 40448 245963 -1 15329 16 4566 11562 627458 139494 5.47739 5.47739 -3135.16 -5.47739 -11.584 -0.360359 1.57502e+06 3937.55 0.06 0.44 0.22 -1 -1 0.06 0.280677 0.254763 0.02856 0.2221 0.02552 0.7523 - k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml or1200.v common 63.07 vpr 106.00 MiB -1 -1 7.93 68908 27 4.13 -1 -1 38580 -1 61144 234 385 2 1 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 108548 385 394 3906 4237 1 2373 1016 27 27 729 io auto 46.0 MiB 2.92 31525 572776 227317 322407 23052 88.3 MiB 5.07 0.06 14.4133 -13461.7 -14.4133 14.4133 0.83 0.0160926 0.0150256 1.89286 1.74364 -1 -1 -1 -1 78 51645 44 3.93038e+07 1.41032e+07 3.65949e+06 5019.88 29.17 7.69214 7.06424 90401 760319 -1 44396 14 10279 35511 1944665 349659 14.8103 14.8103 -13960.4 -14.8103 0 0 4.63207e+06 6354.00 0.16 1.07 0.66 -1 -1 0.16 0.591618 0.549921 0.02224 0.4637 0.02666 0.5097 - k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml raygentop.v common 25.27 vpr 77.84 MiB -1 -1 6.25 46808 8 0.90 -1 -1 37872 -1 60796 133 235 1 6 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 79708 235 305 2600 2761 1 1501 680 19 19 361 io auto 36.8 MiB 2.09 12500 263712 91208 158948 13556 77.8 MiB 1.99 0.03 5.38636 -2731.89 -5.38636 5.38636 0.39 0.00825643 0.00765916 0.774605 0.712384 -1 -1 -1 -1 56 23995 47 1.72706e+07 1.00919e+07 1.27879e+06 3542.35 6.04 2.65451 2.42437 38159 255829 -1 20300 15 5879 16147 1393547 361528 5.87661 5.87661 -3009.11 -5.87661 -1.26427 -0.201639 1.63234e+06 4521.70 0.07 0.66 0.22 -1 -1 0.07 0.333764 0.30935 0.02386 0.4083 0.02598 0.5657 - k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml sha.v common 19.44 vpr 78.34 MiB -1 -1 4.20 47476 21 2.24 -1 -1 40644 -1 45784 147 38 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 80220 38 36 2570 2606 1 1050 221 17 17 289 clb auto 37.3 MiB 1.10 9478 36239 7889 25786 2564 78.3 MiB 0.76 0.01 14.6977 -2591.44 -14.6977 14.6977 0.30 0.00627054 0.00560905 0.378906 0.335347 -1 -1 -1 -1 46 16543 25 1.34605e+07 7.92242e+06 830882. 2875.03 3.43 1.51759 1.31374 28231 166010 -1 13884 15 4024 11917 367875 68444 15.3347 15.3347 -2866.69 -15.3347 0 0 1.06831e+06 3696.59 0.04 0.39 0.14 -1 -1 0.04 0.261218 0.233045 0.006476 0.3635 0.02972 0.6068 - k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml mcml.v common 5304.23 vpr 1.66 GiB -1 -1 692.05 1442556 64 3350.31 -1 -1 347144 -1 317188 6851 36 159 27 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 1741944 36 356 125423 124208 1 34881 7429 98 98 9604 clb auto 660.2 MiB 73.61 461903 10223866 4318975 5823833 81058 1701.1 MiB 186.47 1.32 63.3139 -299631 -63.3139 63.3139 39.62 0.235404 0.202231 35.8753 30.2278 -1 -1 -1 -1 80 612389 32 5.9175e+08 4.67016e+08 5.28775e+07 5505.77 350.18 119.658 98.779 1236252 11146124 -1 575490 18 116226 373166 21552241 4233065 64.9427 64.9427 -370561 -64.9427 0 0 6.66202e+07 6936.71 3.07 14.93 8.56 -1 -1 3.07 9.99565 8.64031 0.27 0.3629 0.01392 0.6231 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time total_power routing_power_perc clock_power_perc tile_power_perc +k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml bgm.v common 73.91 parmys 233.23 MiB -1 -1 39.47 238824 13 7.95 -1 -1 46764 -1 48996 327 257 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 96536 257 32 5008 5040 1 2943 616 23 23 529 clb auto 54.8 MiB 2.79 65213 20720 212836 62576 141404 8856 94.3 MiB 2.16 0.03 15.6864 8.68111 -3946.45 -8.68111 8.68111 0.47 0.00900431 0.00825416 0.809596 0.685169 -1 -1 -1 -1 54 36711 43 2.70004e+07 1.76233e+07 1.84580e+06 3489.22 7.98 3.562 3.08331 56178 377761 -1 31514 18 12398 38406 1049777 214372 9.02421 9.02421 -4006.96 -9.02421 0 0 2.39736e+06 4531.87 0.08 0.66 0.23 -1 -1 0.08 0.416736 0.377988 0.01687 0.4307 0.035 0.5343 +k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml blob_merge.v common 84.17 parmys 301.52 MiB -1 -1 12.62 308752 7 12.18 -1 -1 60036 -1 50488 549 36 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 150732 36 100 6778 6878 1 3174 685 30 30 900 clb auto 74.4 MiB 2.46 100415 43091 287395 84241 184732 18422 122.8 MiB 4.40 0.04 10.787 5.93521 -2226.9 -5.93521 5.93521 0.88 0.0156921 0.0138472 1.85917 1.49809 -1 -1 -1 -1 68 69536 47 4.8774e+07 2.95878e+07 4.08678e+06 4540.87 32.68 11.9422 9.93511 104936 820930 -1 62040 16 15562 69635 2878029 387059 5.92616 5.92616 -2305.97 -5.92616 0 0 5.07014e+06 5633.48 0.28 1.64 0.84 -1 -1 0.28 0.904982 0.807567 0.02624 0.3631 0.0623 0.5746 +k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml boundtop.v common 15.19 vpr 70.11 MiB -1 -1 10.61 30332 4 0.19 -1 -1 34124 -1 54840 52 195 1 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 71796 195 193 1087 1280 1 610 441 15 15 225 io auto 30.0 MiB 0.19 7614 3059 146427 37859 95262 13306 70.1 MiB 0.42 0.01 3.20593 2.49928 -1069.9 -2.49928 2.49928 0.17 0.00182089 0.00169146 0.184374 0.171367 -1 -1 -1 -1 38 6113 40 1.03862e+07 3.35049e+06 544128. 2418.35 1.13 0.604765 0.560239 21038 109288 -1 5298 14 1719 2545 149969 42488 2.49938 2.49938 -1173.25 -2.49938 -0.366048 -0.154403 690492. 3068.85 0.02 0.12 0.06 -1 -1 0.02 0.0807398 0.0762167 0.01471 0.3796 0.05512 0.5653 +k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml ch_intrinsics.v common 2.53 vpr 65.32 MiB -1 -1 0.23 18360 3 0.08 -1 -1 32348 -1 52608 68 99 1 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66884 99 130 344 474 1 225 298 12 12 144 clb auto 25.9 MiB 0.05 1615 746 67958 18270 34570 15118 65.3 MiB 0.13 0.00 2.01486 1.59858 -123.171 -1.59858 1.59858 0.11 0.000556191 0.000520549 0.0495332 0.0464577 -1 -1 -1 -1 38 1499 18 5.66058e+06 4.21279e+06 319130. 2216.18 0.69 0.227149 0.207861 12522 62564 -1 1252 9 384 592 28238 9313 1.91586 1.91586 -140.767 -1.91586 -0.519581 -0.320482 406292. 2821.48 0.02 0.05 0.08 -1 -1 0.02 0.0293074 0.0273435 0.0104 0.2593 0.07351 0.6672 +k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml diffeq1.v common 8.38 vpr 69.14 MiB -1 -1 0.36 22972 15 0.30 -1 -1 33488 -1 54344 39 162 0 5 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 70796 162 96 1009 950 1 708 302 16 16 256 mult_36 auto 30.0 MiB 0.17 9283 5447 78226 20759 50449 7018 69.1 MiB 0.55 0.01 23.1618 21.0975 -1526.6 -21.0975 21.0975 0.21 0.00330278 0.00307022 0.260633 0.24323 -1 -1 -1 -1 46 12326 45 1.21132e+07 4.08187e+06 727248. 2840.81 4.06 0.987618 0.914723 24972 144857 -1 9837 18 3344 6799 857275 248767 22.0372 22.0372 -1631.88 -22.0372 0 0 934704. 3651.19 0.03 0.25 0.09 -1 -1 0.03 0.105117 0.0992267 0.007635 0.3555 0.01709 0.6274 +k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml diffeq2.v common 6.01 vpr 66.57 MiB -1 -1 0.28 21820 16 0.30 -1 -1 33456 -1 53260 25 66 0 5 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 68172 66 96 616 557 1 413 192 16 16 256 mult_36 auto 27.8 MiB 0.16 5839 3600 33925 8855 22033 3037 66.6 MiB 0.16 0.00 18.5797 17.3962 -922.324 -17.3962 17.3962 0.19 0.00117398 0.00109916 0.0799091 0.0749224 -1 -1 -1 -1 42 8401 30 1.21132e+07 3.32735e+06 666210. 2602.38 2.88 0.529946 0.4903 24208 131534 -1 7297 20 2245 4601 911103 273230 18.2437 18.2437 -1021.13 -18.2437 0 0 835850. 3265.04 0.03 0.19 0.08 -1 -1 0.03 0.0644744 0.0606047 0.007431 0.3429 0.01978 0.6373 +k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml LU8PEEng.v common 522.10 vpr 405.85 MiB -1 -1 51.98 340472 123 64.80 -1 -1 76780 -1 116408 1382 114 45 8 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 415592 114 102 21994 21904 1 11821 1651 50 50 2500 memory auto 174.6 MiB 14.96 552678 151396 1064837 378372 663631 22834 395.6 MiB 24.91 0.20 205.795 79.0262 -52621 -79.0262 79.0262 11.89 0.0788831 0.0646447 8.71447 7.02325 -1 -1 -1 -1 84 236453 45 1.47946e+08 1.02312e+08 1.39795e+07 5591.78 288.11 29.1843 24.0513 326276 2968264 -1 209371 19 45363 173487 10455005 1964601 80.3198 80.3198 -64807.2 -80.3198 -16.7054 -0.295467 1.77686e+07 7107.43 0.90 5.81 2.30 -1 -1 0.90 3.12869 2.68349 0.07831 0.407 0.01163 0.5813 +k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml mkDelayWorker32B.v common 52.70 vpr 304.03 MiB -1 -1 11.10 123576 5 4.06 -1 -1 56180 -1 72900 463 506 45 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 311328 506 553 3055 3608 1 2790 1567 50 50 2500 memory auto 51.4 MiB 2.49 38121 16032 1138817 560483 396028 182306 304.0 MiB 4.30 0.05 10.0192 8.1793 -1876.61 -8.1793 8.1793 8.82 0.0151622 0.014182 2.36885 2.18985 -1 -1 -1 -1 38 23425 15 1.47946e+08 4.96135e+07 6.86584e+06 2746.33 9.51 6.26379 5.86537 251304 1421084 -1 22431 19 3940 5274 1035253 269611 8.62851 8.62851 -2150.71 -8.62851 -2.64826 -0.292146 8.69095e+06 3476.38 0.52 0.87 1.07 -1 -1 0.52 0.67084 0.634949 0.1419 0.1545 0.03969 0.8058 +k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml mkPktMerge.v common 11.14 vpr 71.76 MiB -1 -1 0.89 25268 2 0.13 -1 -1 33312 -1 59472 29 311 15 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 73484 311 156 972 1128 1 953 511 28 28 784 memory auto 31.5 MiB 0.32 19380 8779 212879 80847 122346 9686 70.8 MiB 0.75 0.01 4.64689 4.01099 -4636.11 -4.01099 4.01099 0.72 0.00267918 0.00237848 0.370373 0.330948 -1 -1 -1 -1 46 13615 18 4.25198e+07 9.78293e+06 2.40571e+06 3068.51 4.48 1.46611 1.31834 79818 491339 -1 13091 12 2437 2782 609856 172667 4.39426 4.39426 -4975.9 -4.39426 -18.8574 -0.359474 3.09729e+06 3950.62 0.11 0.22 0.30 -1 -1 0.11 0.114983 0.106778 0.08453 0.1621 0.01936 0.8185 +k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml mkSMAdapter4B.v common 20.19 vpr 77.92 MiB -1 -1 5.94 52388 7 2.11 -1 -1 38364 -1 58368 156 193 5 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 79792 193 205 2234 2439 1 1179 559 20 20 400 memory auto 38.3 MiB 0.70 19798 9243 232960 80121 128094 24745 77.9 MiB 1.37 0.01 6.68534 4.93811 -2978.4 -4.93811 4.93811 0.33 0.003984 0.00362373 0.591618 0.530389 -1 -1 -1 -1 48 17116 41 2.07112e+07 1.11475e+07 1.23055e+06 3076.38 4.08 1.8516 1.65979 40448 245963 -1 15026 17 4638 11384 567227 126883 5.14369 5.14369 -3220.63 -5.14369 -9.04127 -0.360359 1.57502e+06 3937.55 0.05 0.37 0.15 -1 -1 0.05 0.268917 0.249398 0.02986 0.2145 0.02596 0.7596 +k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml or1200.v common 44.90 vpr 97.20 MiB -1 -1 4.85 67128 27 4.33 -1 -1 41292 -1 60432 239 385 2 1 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 99528 385 394 3906 4237 1 2372 1021 27 27 729 io auto 50.3 MiB 1.86 62812 31588 571450 225577 322746 23127 89.5 MiB 3.55 0.04 20.8327 14.4872 -13369.2 -14.4872 14.4872 0.67 0.0121619 0.0113765 1.35407 1.22514 -1 -1 -1 -1 74 52438 48 3.93038e+07 1.43727e+07 3.51708e+06 4824.52 18.39 4.96637 4.54914 88217 717307 -1 45207 16 10797 38297 2240291 399545 15.587 15.587 -13991.8 -15.587 0 0 4.41327e+06 6053.86 0.17 0.96 0.47 -1 -1 0.17 0.489497 0.455404 0.02143 0.4567 0.02564 0.5177 +k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml raygentop.v common 21.43 vpr 79.10 MiB -1 -1 3.27 45264 8 1.18 -1 -1 38148 -1 60352 133 235 1 6 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 80996 235 305 2600 2761 1 1486 680 19 19 361 io auto 39.4 MiB 2.00 26051 12689 254745 87597 153775 13373 79.1 MiB 1.38 0.04 7.908 5.29959 -2839.7 -5.29959 5.29959 0.29 0.012127 0.011067 0.525997 0.479113 -1 -1 -1 -1 58 24404 36 1.72706e+07 1.00919e+07 1.32783e+06 3678.19 7.31 2.15982 1.97301 38879 268173 -1 20459 16 5974 16694 1375263 341705 5.25495 5.25495 -3023.54 -5.25495 0 0 1.69263e+06 4688.74 0.05 0.45 0.16 -1 -1 0.05 0.221912 0.208508 0.02626 0.4113 0.02791 0.5608 +k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml sha.v common 15.61 vpr 80.29 MiB -1 -1 2.33 46604 21 2.08 -1 -1 40588 -1 44928 147 38 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 82220 38 36 2570 2606 1 1047 221 17 17 289 clb auto 40.5 MiB 0.69 18019 8908 39574 9690 26848 3036 80.3 MiB 0.53 0.01 21.1511 14.3355 -2466.66 -14.3355 14.3355 0.22 0.00360612 0.00322534 0.263315 0.232003 -1 -1 -1 -1 48 15040 24 1.34605e+07 7.92242e+06 864508. 2991.38 3.70 1.49854 1.31021 28519 171069 -1 12978 12 3830 11571 346206 65034 15.2896 15.2896 -2704.54 -15.2896 0 0 1.10659e+06 3829.03 0.05 0.37 0.16 -1 -1 0.05 0.271424 0.248723 0.006497 0.3637 0.03004 0.6063 +k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml mcml.v common 5092.02 vpr 1.53 GiB -1 -1 463.82 1402996 65 3505.00 -1 -1 351932 -1 316376 6857 36 159 27 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 1606748 36 356 125571 124356 1 35021 7435 98 98 9604 clb auto 758.6 MiB 44.19 2 441443 10017265 4132627 5827470 57168 1569.1 MiB 178.80 1.37 172.807 64.2278 -293929 -64.2278 64.2278 33.55 0.203257 0.163777 30.6282 24.8932 -1 -1 -1 -1 78 591086 48 5.9175e+08 4.6734e+08 5.17038e+07 5383.57 240.84 97.3599 80.2169 1226648 10944044 -1 553448 19 118693 385257 20226886 3989619 65.0797 65.0797 -378350 -65.0797 -0.256508 -0.0326169 6.54025e+07 6809.92 3.27 14.83 7.78 -1 -1 3.27 9.82532 8.5296 0.2679 0.3573 0.01398 0.6288 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 afc7702ee1c..15ab4719c9e 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 total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - k6_frac_N10_40nm.xml alu4.pre-vpr.blif common 4.59 vpr 64.32 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 78 14 -1 -1 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65868 14 8 926 934 0 490 100 11 11 121 clb auto 24.6 MiB 0.91 4639 5668 847 4419 402 64.3 MiB 0.16 0.01 4.54815 -31.8355 -4.54815 nan 0.11 0.00249412 0.00221472 0.083083 0.0754962 -1 -1 -1 -1 48 7214 49 4.36541e+06 4.20373e+06 357017. 2950.55 2.04 0.729015 0.623693 12171 71069 -1 6577 19 3324 15359 408061 81134 4.87162 nan -34.7178 -4.87162 0 0 455885. 3767.64 0.01 0.26 0.06 -1 -1 0.01 0.140142 0.125126 - k6_frac_N10_40nm.xml apex2.pre-vpr.blif common 6.95 vpr 65.87 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 103 38 -1 -1 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 67448 38 3 1113 1116 0 662 144 13 13 169 clb auto 26.3 MiB 1.53 7442 11831 1926 8689 1216 65.9 MiB 0.29 0.01 5.59822 -16.3249 -5.59822 nan 0.16 0.00306728 0.00270237 0.126883 0.113876 -1 -1 -1 -1 64 12841 39 6.52117e+06 5.55108e+06 687872. 4070.25 3.20 0.976549 0.840439 19211 138678 -1 11425 17 4712 23613 728373 121323 5.82519 nan -16.8677 -5.82519 0 0 856291. 5066.81 0.03 0.36 0.11 -1 -1 0.03 0.160453 0.144609 - k6_frac_N10_40nm.xml apex4.pre-vpr.blif common 5.91 vpr 64.35 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 82 9 -1 -1 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65892 9 19 897 916 0 556 110 12 12 144 clb auto 24.8 MiB 1.46 6252 7474 1266 5720 488 64.3 MiB 0.20 0.01 4.74237 -77.8307 -4.74237 nan 0.14 0.00271417 0.00242922 0.0925149 0.0843887 -1 -1 -1 -1 62 10739 47 5.3894e+06 4.41931e+06 554770. 3852.57 2.59 0.760237 0.654515 15940 110000 -1 9728 17 4391 21118 675575 120995 5.20821 nan -84.4166 -5.20821 0 0 687181. 4772.09 0.02 0.31 0.09 -1 -1 0.02 0.1315 0.118528 - k6_frac_N10_40nm.xml bigkey.pre-vpr.blif common 6.12 vpr 65.81 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 71 229 -1 -1 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 67388 229 197 1364 1561 1 539 497 16 16 256 io auto 26.1 MiB 0.83 4504 148022 42306 97632 8084 65.8 MiB 0.82 0.01 2.97254 -656.061 -2.97254 2.97254 0.27 0.00439332 0.00408702 0.35847 0.333653 -1 -1 -1 -1 36 7822 26 1.05632e+07 3.82647e+06 638738. 2495.07 2.60 1.40665 1.28851 24820 128426 -1 7098 11 1611 3987 187232 44731 3.15649 3.15649 -738.429 -3.15649 0 0 786978. 3074.13 0.03 0.19 0.08 -1 -1 0.03 0.132772 0.123936 - k6_frac_N10_40nm.xml clma.pre-vpr.blif common 28.51 vpr 89.36 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 316 62 -1 -1 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 91500 62 82 3672 3754 1 2348 460 20 20 400 clb auto 45.2 MiB 3.83 29602 121160 32274 82250 6636 89.4 MiB 2.46 0.04 7.97523 -360.045 -7.97523 7.97523 0.44 0.0115817 0.00968577 0.858962 0.732885 -1 -1 -1 -1 92 48575 45 1.74617e+07 1.70305e+07 2.37849e+06 5946.23 16.44 4.93267 4.15445 54288 506964 -1 43403 17 15069 65645 2357098 375873 8.16272 8.16272 -366.296 -8.16272 0 0 3.01539e+06 7538.48 0.10 1.28 0.42 -1 -1 0.10 0.57067 0.510695 - k6_frac_N10_40nm.xml des.pre-vpr.blif common 5.68 vpr 62.96 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 51 256 -1 -1 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64476 256 245 954 1199 0 578 552 18 18 324 io auto 23.6 MiB 0.23 5523 134069 36344 90454 7271 63.0 MiB 0.66 0.01 3.66288 -710.092 -3.66288 nan 0.35 0.00435575 0.00415707 0.270866 0.258189 -1 -1 -1 -1 36 9376 41 1.37969e+07 2.74859e+06 824466. 2544.65 2.93 1.43298 1.34768 31748 166456 -1 8164 13 2250 4803 238712 56339 4.07339 nan -791.038 -4.07339 0 0 1.01518e+06 3133.28 0.04 0.21 0.14 -1 -1 0.04 0.139599 0.132291 - k6_frac_N10_40nm.xml diffeq.pre-vpr.blif common 3.71 vpr 64.52 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 64 64 -1 -1 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 66072 64 39 1371 1410 1 541 167 10 10 100 clb auto 25.0 MiB 0.50 3623 18986 4100 13819 1067 64.5 MiB 0.29 0.01 5.32461 -1004.72 -5.32461 5.32461 0.09 0.00297013 0.00265425 0.142744 0.129291 -1 -1 -1 -1 50 5495 30 3.44922e+06 3.44922e+06 295697. 2956.97 1.53 0.822979 0.71402 10016 58256 -1 4877 17 1881 5375 141590 30815 5.49357 5.49357 -1059.83 -5.49357 0 0 379824. 3798.24 0.01 0.18 0.05 -1 -1 0.01 0.130986 0.117787 - k6_frac_N10_40nm.xml dsip.pre-vpr.blif common 6.57 vpr 65.39 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 70 229 -1 -1 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 66956 229 197 1362 1559 1 570 496 16 16 256 io auto 25.8 MiB 0.92 5066 137836 36889 92766 8181 65.4 MiB 0.78 0.01 2.91431 -671.379 -2.91431 2.91431 0.27 0.00438808 0.00409538 0.327876 0.305574 -1 -1 -1 -1 36 8862 27 1.05632e+07 3.77258e+06 638738. 2495.07 2.96 1.41434 1.29776 24820 128426 -1 7675 13 1986 5211 265646 63312 3.18697 3.18697 -739.19 -3.18697 0 0 786978. 3074.13 0.03 0.23 0.10 -1 -1 0.03 0.155656 0.14507 - k6_frac_N10_40nm.xml elliptic.pre-vpr.blif common 12.40 vpr 77.56 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 171 131 -1 -1 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 79424 131 114 3421 3535 1 1164 416 16 16 256 clb auto 36.2 MiB 3.40 10474 95088 26501 63930 4657 77.6 MiB 1.19 0.02 7.51043 -4391.12 -7.51043 7.51043 0.26 0.00746347 0.00670247 0.527413 0.462699 -1 -1 -1 -1 56 18313 31 1.05632e+07 9.21587e+06 942187. 3680.42 4.59 2.05209 1.78067 28136 192436 -1 15484 16 5183 22017 710369 128360 7.51944 7.51944 -4543.65 -7.51944 0 0 1.20185e+06 4694.72 0.04 0.55 0.15 -1 -1 0.04 0.349204 0.315387 - k6_frac_N10_40nm.xml ex1010.pre-vpr.blif common 24.75 vpr 82.02 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 285 10 -1 -1 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 83992 10 10 2659 2669 0 1401 305 19 19 361 clb auto 39.3 MiB 4.57 26220 51605 13492 36245 1868 82.0 MiB 1.25 0.02 6.59302 -61.9652 -6.59302 nan 0.39 0.00827542 0.00731978 0.484089 0.41329 -1 -1 -1 -1 90 42829 31 1.55754e+07 1.53598e+07 2.09179e+06 5794.43 14.00 3.32602 2.79995 48131 439069 -1 39158 17 9518 58062 2365838 328796 6.83753 nan -64.8858 -6.83753 0 0 2.60973e+06 7229.16 0.08 1.03 0.29 -1 -1 0.08 0.41705 0.373851 - k6_frac_N10_40nm.xml ex5p.pre-vpr.blif common 3.76 vpr 63.07 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 63 8 -1 -1 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64588 8 63 761 824 0 435 134 10 10 100 clb auto 23.7 MiB 0.68 3999 11420 2063 8488 869 63.1 MiB 0.20 0.01 3.77984 -169.82 -3.77984 nan 0.09 0.00233479 0.00210219 0.0905659 0.0824737 -1 -1 -1 -1 58 6565 28 3.44922e+06 3.39532e+06 342720. 3427.20 1.56 0.557203 0.48462 10608 68480 -1 5918 16 2541 10577 323005 63220 4.22288 nan -188.35 -4.22288 0 0 435638. 4356.38 0.01 0.19 0.05 -1 -1 0.01 0.102623 0.0927145 - k6_frac_N10_40nm.xml frisc.pre-vpr.blif common 13.58 vpr 77.36 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 167 20 -1 -1 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 79220 20 116 3175 3291 1 1338 303 15 15 225 clb auto 36.1 MiB 3.06 14602 62340 15718 42273 4349 77.4 MiB 1.17 0.02 8.56273 -4519.63 -8.56273 8.56273 0.22 0.00757247 0.0068348 0.522644 0.463063 -1 -1 -1 -1 80 24018 43 9.10809e+06 9.0003e+06 1.12687e+06 5008.33 6.06 2.41987 2.10801 28171 234221 -1 21050 15 6703 26493 1041429 176822 9.09101 9.09101 -4756.62 -9.09101 0 0 1.41774e+06 6301.08 0.04 0.63 0.19 -1 -1 0.04 0.342199 0.310175 - k6_frac_N10_40nm.xml misex3.pre-vpr.blif common 4.84 vpr 63.70 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 71 14 -1 -1 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65224 14 14 828 842 0 475 99 11 11 121 clb auto 24.1 MiB 0.91 4532 5343 748 4219 376 63.7 MiB 0.15 0.01 4.39029 -57.6027 -4.39029 nan 0.11 0.00227799 0.00202987 0.0718845 0.0655562 -1 -1 -1 -1 52 7728 41 4.36541e+06 3.82647e+06 379421. 3135.71 2.05 0.703343 0.603899 12531 77429 -1 6634 16 3040 13763 383785 71279 4.69105 nan -60.7462 -4.69105 0 0 499620. 4129.09 0.01 0.15 0.04 -1 -1 0.01 0.0814211 0.0751261 - k6_frac_N10_40nm.xml pdc.pre-vpr.blif common 26.16 vpr 82.44 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 272 16 -1 -1 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 84416 16 40 2839 2879 0 1511 328 19 19 361 clb auto 39.8 MiB 3.52 23598 55698 13292 40268 2138 82.4 MiB 1.28 0.02 6.48626 -238.484 -6.48626 nan 0.44 0.00886302 0.00735171 0.491212 0.417579 -1 -1 -1 -1 82 38584 40 1.55754e+07 1.46592e+07 1.91630e+06 5308.30 16.27 3.50905 2.95866 46331 403357 -1 35281 17 9680 52085 1891572 294823 6.8403 nan -243.508 -6.8403 0 0 2.40187e+06 6653.38 0.08 1.01 0.33 -1 -1 0.08 0.437668 0.392311 - k6_frac_N10_40nm.xml s298.pre-vpr.blif common 3.15 vpr 62.76 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 64 4 -1 -1 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64268 4 6 726 732 1 395 74 10 10 100 clb auto 23.4 MiB 0.73 3639 2709 340 2252 117 62.8 MiB 0.10 0.00 6.02711 -48.0055 -6.02711 6.02711 0.09 0.00207648 0.0018638 0.0538424 0.0494959 -1 -1 -1 -1 50 5470 24 3.44922e+06 3.44922e+06 295697. 2956.97 1.28 0.507359 0.443613 10016 58256 -1 4992 17 2195 9283 271197 50082 6.42868 6.42868 -51.2874 -6.42868 0 0 379824. 3798.24 0.01 0.12 0.03 -1 -1 0.01 0.0746748 0.0694149 - k6_frac_N10_40nm.xml s38417.pre-vpr.blif common 13.59 vpr 87.05 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 250 29 -1 -1 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 89136 29 106 4782 4888 1 1993 385 18 18 324 clb auto 44.4 MiB 2.46 13385 89985 21640 60579 7766 87.0 MiB 1.52 0.02 5.22969 -3570.14 -5.22969 5.22969 0.34 0.00938818 0.00831247 0.681949 0.588191 -1 -1 -1 -1 50 21612 42 1.37969e+07 1.34735e+07 1.08879e+06 3360.46 5.45 2.95573 2.52337 34656 222912 -1 19075 14 7130 20879 621675 127526 5.31212 5.31212 -3691.5 -5.31212 0 0 1.40279e+06 4329.61 0.05 0.59 0.17 -1 -1 0.05 0.416139 0.374046 - k6_frac_N10_40nm.xml s38584.1.pre-vpr.blif common 13.45 vpr 85.90 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 228 38 -1 -1 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 87964 38 304 4422 4726 1 1994 570 18 18 324 clb auto 43.2 MiB 2.50 13819 172996 49998 111442 11556 85.9 MiB 2.01 0.03 4.76683 -2916.88 -4.76683 4.76683 0.35 0.00939228 0.00841165 0.819185 0.712738 -1 -1 -1 -1 58 23055 36 1.37969e+07 1.22878e+07 1.26150e+06 3893.53 4.75 2.90623 2.51915 36592 261672 -1 20398 14 6469 17425 591858 126037 4.97859 4.97859 -3048.53 -4.97859 0 0 1.60510e+06 4954.00 0.05 0.63 0.21 -1 -1 0.05 0.450883 0.410575 - k6_frac_N10_40nm.xml seq.pre-vpr.blif common 5.73 vpr 65.08 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 84 41 -1 -1 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 66644 41 35 1006 1041 0 604 160 12 12 144 clb auto 25.4 MiB 1.22 6515 13180 2173 9685 1322 65.1 MiB 0.26 0.01 4.58553 -134.055 -4.58553 nan 0.14 0.00299227 0.00267516 0.112623 0.102342 -1 -1 -1 -1 64 10841 30 5.3894e+06 4.5271e+06 575115. 3993.85 2.53 0.863068 0.745904 16224 115365 -1 9534 17 3641 17204 511035 92223 4.88481 nan -140.076 -4.88481 0 0 716128. 4973.11 0.02 0.28 0.09 -1 -1 0.02 0.142307 0.128311 - k6_frac_N10_40nm.xml spla.pre-vpr.blif common 15.03 vpr 76.84 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 216 16 -1 -1 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 78680 16 46 2232 2278 0 1170 278 17 17 289 clb auto 35.0 MiB 2.88 16089 42000 9359 30203 2438 76.8 MiB 0.95 0.02 5.95204 -207.143 -5.95204 nan 0.30 0.00775355 0.00661099 0.401796 0.349405 -1 -1 -1 -1 68 27700 45 1.21262e+07 1.16411e+07 1.30851e+06 4527.71 7.55 2.17634 1.8524 34227 265321 -1 23554 19 8023 43603 1540936 228530 6.17174 nan -217.21 -6.17174 0 0 1.61843e+06 5600.10 0.05 0.82 0.21 -1 -1 0.05 0.356964 0.321301 - k6_frac_N10_40nm.xml tseng.pre-vpr.blif common 3.30 vpr 65.17 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 63 52 -1 -1 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 66732 52 122 1461 1583 1 472 237 10 10 100 clb auto 25.8 MiB 0.55 2690 30290 6635 22073 1582 65.2 MiB 0.30 0.01 4.95966 -1122.48 -4.95966 4.95966 0.09 0.00309899 0.0028239 0.143089 0.130468 -1 -1 -1 -1 46 4786 25 3.44922e+06 3.39532e+06 276332. 2763.32 1.07 0.637438 0.562157 9816 55112 -1 4250 13 1489 3922 122560 29939 5.00101 5.00101 -1209.26 -5.00101 0 0 354105. 3541.05 0.01 0.16 0.04 -1 -1 0.01 0.119116 0.108599 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +k6_frac_N10_40nm.xml alu4.pre-vpr.blif common 4.22 vpr 65.17 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 80 14 -1 -1 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66736 14 8 926 934 0 489 102 11 11 121 clb auto 25.9 MiB 0.87 5716 4667 5814 773 4648 393 65.2 MiB 0.12 0.00 5.1758 4.39004 -31.3924 -4.39004 nan 0.08 0.00178088 0.00159339 0.0633619 0.0585507 -1 -1 -1 -1 52 7329 33 4.36541e+06 4.31152e+06 379421. 3135.71 2.20 0.764911 0.665568 12531 77429 -1 6513 17 2865 12552 316734 63876 5.07045 nan -34.2643 -5.07045 0 0 499620. 4129.09 0.01 0.16 0.04 -1 -1 0.01 0.100679 0.092897 +k6_frac_N10_40nm.xml apex2.pre-vpr.blif common 6.36 vpr 67.20 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 101 38 -1 -1 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 68812 38 3 1113 1116 0 665 142 13 13 169 clb auto 28.1 MiB 1.08 10548 7468 13832 2493 9914 1425 67.2 MiB 0.23 0.01 7.37702 5.32001 -15.73 -5.32001 nan 0.12 0.00232644 0.00203595 0.107932 0.0969942 -1 -1 -1 -1 62 13388 40 6.52117e+06 5.44329e+06 663442. 3925.69 3.52 1.00129 0.877983 18875 132257 -1 11741 18 5422 26877 882518 148818 5.56885 nan -16.3181 -5.56885 0 0 821735. 4862.34 0.02 0.36 0.07 -1 -1 0.02 0.164374 0.151826 +k6_frac_N10_40nm.xml apex4.pre-vpr.blif common 6.24 vpr 65.14 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 81 9 -1 -1 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66700 9 19 897 916 0 559 109 11 11 121 clb auto 26.4 MiB 1.02 7140 6126 6609 990 5282 337 65.1 MiB 0.20 0.00 5.35916 4.63303 -75.5716 -4.63303 nan 0.10 0.00138137 0.00119951 0.0992015 0.0904761 -1 -1 -1 -1 70 9981 48 4.36541e+06 4.36541e+06 511363. 4226.14 3.71 1.03481 0.903319 13971 102581 -1 9236 20 4663 24137 775856 134967 5.15777 nan -81.91 -5.15777 0 0 640906. 5296.74 0.02 0.37 0.06 -1 -1 0.02 0.155463 0.140494 +k6_frac_N10_40nm.xml bigkey.pre-vpr.blif common 4.08 vpr 67.04 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 72 229 -1 -1 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 68648 229 197 1364 1561 1 545 498 16 16 256 io auto 27.7 MiB 0.54 8834 4538 160311 47174 104392 8745 67.0 MiB 0.49 0.01 4.09828 3.00075 -655.912 -3.00075 3.00075 0.20 0.00228394 0.00210599 0.199935 0.183794 -1 -1 -1 -1 36 7805 27 1.05632e+07 3.88037e+06 638738. 2495.07 1.70 0.763949 0.703546 24820 128426 -1 7103 12 1701 4682 221888 53122 3.35736 3.35736 -731.549 -3.35736 0 0 786978. 3074.13 0.03 0.13 0.07 -1 -1 0.03 0.0913876 0.0861942 +k6_frac_N10_40nm.xml clma.pre-vpr.blif common 19.63 vpr 90.35 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 319 62 -1 -1 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 92520 62 82 3672 3754 1 2348 463 20 20 400 clb auto 49.5 MiB 2.88 53167 28547 136503 37288 90480 8735 90.4 MiB 2.11 0.03 11.2331 7.97399 -326.521 -7.97399 7.97399 0.34 0.00875297 0.00797138 0.847567 0.688107 -1 -1 -1 -1 88 44571 35 1.74617e+07 1.71922e+07 2.29517e+06 5737.92 10.39 3.83688 3.1762 53088 483428 -1 41011 17 14832 64712 2253455 355288 8.38548 8.38548 -344.884 -8.38548 0 0 2.86840e+06 7171.00 0.10 1.04 0.30 -1 -1 0.10 0.521148 0.466219 +k6_frac_N10_40nm.xml des.pre-vpr.blif common 3.69 vpr 64.99 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 54 256 -1 -1 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66552 256 245 954 1199 0 584 555 18 18 324 io auto 25.1 MiB 0.19 10217 5340 128235 34840 87101 6294 65.0 MiB 0.34 0.01 4.93688 3.71329 -708.053 -3.71329 nan 0.26 0.00199948 0.00187995 0.119693 0.112603 -1 -1 -1 -1 36 8812 39 1.37969e+07 2.91028e+06 824466. 2544.65 1.82 0.672729 0.63177 31748 166456 -1 7817 13 2215 4847 223176 52694 4.15133 nan -780.347 -4.15133 0 0 1.01518e+06 3133.28 0.03 0.12 0.09 -1 -1 0.03 0.0775895 0.0741275 +k6_frac_N10_40nm.xml diffeq.pre-vpr.blif common 2.72 vpr 66.09 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 65 64 -1 -1 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 67680 64 39 1371 1410 1 539 168 11 11 121 clb auto 26.8 MiB 0.33 5584 3554 15910 3123 11816 971 66.1 MiB 0.15 0.00 6.03227 5.37507 -1038.07 -5.37507 5.37507 0.08 0.00156771 0.00139193 0.0747596 0.0677057 -1 -1 -1 -1 44 6185 38 4.36541e+06 3.50311e+06 327165. 2703.84 1.27 0.53243 0.470835 11931 67129 -1 5007 15 2028 5618 150141 32799 5.22952 5.22952 -1076.2 -5.22952 0 0 426099. 3521.48 0.01 0.11 0.04 -1 -1 0.01 0.0857885 0.0796425 +k6_frac_N10_40nm.xml dsip.pre-vpr.blif common 4.92 vpr 68.05 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 72 229 -1 -1 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 69680 229 197 1362 1559 1 570 498 16 16 256 io auto 28.1 MiB 0.74 9108 4889 148473 42778 97578 8117 68.0 MiB 0.47 0.01 4.8348 3.14736 -669.02 -3.14736 3.14736 0.30 0.00226729 0.00207241 0.17999 0.165413 -1 -1 -1 -1 36 8500 42 1.05632e+07 3.88037e+06 638738. 2495.07 2.30 0.957058 0.879549 24820 128426 -1 7656 13 1979 5245 274588 68226 3.45161 3.45161 -741.384 -3.45161 0 0 786978. 3074.13 0.03 0.14 0.07 -1 -1 0.03 0.0922548 0.0865961 +k6_frac_N10_40nm.xml elliptic.pre-vpr.blif common 10.27 vpr 80.01 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 166 131 -1 -1 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 81932 131 114 3421 3535 1 1168 411 15 15 225 clb auto 39.7 MiB 2.11 17765 10281 92031 24314 63237 4480 80.0 MiB 0.79 0.01 8.75467 7.10514 -4204.38 -7.10514 7.10514 0.17 0.00510006 0.00460859 0.376436 0.322116 -1 -1 -1 -1 58 16799 43 9.10809e+06 8.9464e+06 849382. 3775.03 5.12 2.28086 1.94401 25035 174617 -1 14821 15 4952 19579 622719 112047 7.25821 7.25821 -4441.31 -7.25821 0 0 1.08042e+06 4801.85 0.03 0.47 0.10 -1 -1 0.03 0.312728 0.287837 +k6_frac_N10_40nm.xml ex1010.pre-vpr.blif common 19.60 vpr 83.45 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 285 10 -1 -1 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 85448 10 10 2659 2669 0 1441 305 19 19 361 clb auto 42.5 MiB 2.94 32579 26449 48527 11753 35255 1519 83.4 MiB 0.90 0.02 8.51351 6.36561 -61.7098 -6.36561 nan 0.29 0.00762048 0.00590277 0.393677 0.31916 -1 -1 -1 -1 90 44070 44 1.55754e+07 1.53598e+07 2.09179e+06 5794.43 12.11 2.73293 2.25343 48131 439069 -1 39495 18 9987 58249 2505846 334449 6.84682 nan -65.1715 -6.84682 0 0 2.60973e+06 7229.16 0.08 0.99 0.28 -1 -1 0.08 0.39675 0.358216 +k6_frac_N10_40nm.xml ex5p.pre-vpr.blif common 3.52 vpr 64.29 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 61 8 -1 -1 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65832 8 63 761 824 0 464 132 10 10 100 clb auto 25.1 MiB 0.64 5202 4219 8172 1346 6226 600 64.3 MiB 0.09 0.00 4.68322 3.95136 -171.257 -3.95136 nan 0.06 0.00117832 0.00103729 0.0411713 0.0375951 -1 -1 -1 -1 62 6890 29 3.44922e+06 3.28753e+06 366588. 3665.88 1.84 0.563741 0.499247 10808 71624 -1 6383 18 3263 13910 450723 84886 4.2104 nan -190.423 -4.2104 0 0 454102. 4541.02 0.01 0.16 0.04 -1 -1 0.01 0.0848892 0.0789772 +k6_frac_N10_40nm.xml frisc.pre-vpr.blif common 10.71 vpr 79.32 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 167 20 -1 -1 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 81228 20 116 3175 3291 1 1354 303 15 15 225 clb auto 39.0 MiB 2.04 21678 14434 62340 15479 42636 4225 79.3 MiB 0.81 0.01 11.5497 8.67217 -4535.6 -8.67217 8.67217 0.17 0.00598961 0.00491716 0.389418 0.339327 -1 -1 -1 -1 78 23275 41 9.10809e+06 9.0003e+06 1.10266e+06 4900.72 5.62 2.16304 1.89205 27947 230153 -1 20596 15 6319 24844 985205 167745 9.14545 9.14545 -4810.82 -9.14545 0 0 1.39226e+06 6187.84 0.04 0.44 0.14 -1 -1 0.04 0.265519 0.24418 +k6_frac_N10_40nm.xml misex3.pre-vpr.blif common 3.65 vpr 64.44 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 70 14 -1 -1 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65984 14 14 828 842 0 484 98 11 11 121 clb auto 25.3 MiB 0.70 5838 4589 4598 577 3714 307 64.4 MiB 0.11 0.00 5.13552 4.41862 -57.2342 -4.41862 nan 0.08 0.00216019 0.00187605 0.0527162 0.0474817 -1 -1 -1 -1 54 7371 29 4.36541e+06 3.77258e+06 393282. 3250.26 1.86 0.551705 0.483513 12651 80029 -1 6708 16 2958 13782 384033 69922 4.93716 nan -62.34 -4.93716 0 0 511363. 4226.14 0.01 0.15 0.04 -1 -1 0.01 0.0854717 0.079196 +k6_frac_N10_40nm.xml pdc.pre-vpr.blif common 23.21 vpr 83.23 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 276 16 -1 -1 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 85224 16 40 2839 2879 0 1524 332 19 19 361 clb auto 43.1 MiB 2.38 33170 23812 55484 13930 38908 2646 83.2 MiB 0.98 0.02 8.45123 6.4916 -240.609 -6.4916 nan 0.30 0.00735271 0.00577674 0.43013 0.346976 -1 -1 -1 -1 82 38872 48 1.55754e+07 1.48747e+07 1.91630e+06 5308.30 15.94 3.73157 3.06855 46331 403357 -1 35345 20 9890 54530 2023172 305290 6.9919 nan -256.124 -6.9919 0 0 2.40187e+06 6653.38 0.07 0.96 0.35 -1 -1 0.07 0.455144 0.414767 +k6_frac_N10_40nm.xml s298.pre-vpr.blif common 2.45 vpr 63.96 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 62 4 -1 -1 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65500 4 6 726 732 1 394 72 10 10 100 clb auto 24.7 MiB 0.61 4227 3644 2903 384 2413 106 64.0 MiB 0.07 0.00 6.29092 5.97061 -49.6933 -5.97061 5.97061 0.06 0.0011726 0.00103084 0.0377402 0.0347094 -1 -1 -1 -1 50 5462 25 3.44922e+06 3.34143e+06 295697. 2956.97 0.92 0.356034 0.31648 10016 58256 -1 5052 19 2244 8824 249008 48074 6.12473 6.12473 -52.0854 -6.12473 0 0 379824. 3798.24 0.01 0.12 0.03 -1 -1 0.01 0.080217 0.0746323 +k6_frac_N10_40nm.xml s38417.pre-vpr.blif common 10.95 vpr 87.80 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 246 29 -1 -1 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 89912 29 106 4782 4888 1 1971 381 18 18 324 clb auto 48.7 MiB 2.66 31912 12914 91461 22158 61224 8079 87.8 MiB 1.14 0.01 9.34045 5.08538 -3515.89 -5.08538 5.08538 0.26 0.00638819 0.00575669 0.565699 0.465182 -1 -1 -1 -1 50 20649 31 1.37969e+07 1.32579e+07 1.08879e+06 3360.46 4.26 2.39167 2.01576 34656 222912 -1 18390 14 6502 17795 514521 108732 5.44467 5.44467 -3642.89 -5.44467 0 0 1.40279e+06 4329.61 0.04 0.42 0.12 -1 -1 0.04 0.333311 0.305973 +k6_frac_N10_40nm.xml s38584.1.pre-vpr.blif common 12.77 vpr 87.85 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 229 38 -1 -1 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 89956 38 304 4422 4726 1 2011 571 18 18 324 clb auto 46.9 MiB 2.05 33483 13735 180539 53183 115745 11611 87.8 MiB 1.66 0.02 7.36291 4.83236 -2990.06 -4.83236 4.83236 0.26 0.00680899 0.00622388 0.730543 0.637641 -1 -1 -1 -1 60 23373 35 1.37969e+07 1.23417e+07 1.30451e+06 4026.26 6.11 3.12581 2.73129 36916 268072 -1 20457 17 6818 18608 617442 129769 5.15119 5.15119 -3122.73 -5.15119 0 0 1.63833e+06 5056.57 0.05 0.48 0.15 -1 -1 0.05 0.367799 0.338547 +k6_frac_N10_40nm.xml seq.pre-vpr.blif common 5.48 vpr 65.90 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 85 41 -1 -1 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 67480 41 35 1006 1041 0 592 161 12 12 144 clb auto 27.0 MiB 0.83 8414 6369 15019 2656 10738 1625 65.9 MiB 0.21 0.00 5.81314 4.61808 -132.961 -4.61808 nan 0.10 0.00201435 0.00179366 0.0926978 0.0839262 -1 -1 -1 -1 64 10589 23 5.3894e+06 4.58099e+06 575115. 3993.85 2.87 0.892311 0.78471 16224 115365 -1 9640 17 3842 18426 545262 97961 4.99365 nan -142.217 -4.99365 0 0 716128. 4973.11 0.03 0.35 0.10 -1 -1 0.03 0.188284 0.172824 +k6_frac_N10_40nm.xml spla.pre-vpr.blif common 13.16 vpr 77.94 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 215 16 -1 -1 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 79808 16 46 2232 2278 0 1144 277 17 17 289 clb auto 38.2 MiB 1.83 22379 15624 39965 9015 28403 2547 77.9 MiB 0.68 0.01 8.06632 5.82643 -200.335 -5.82643 nan 0.23 0.00653831 0.00547397 0.306995 0.255726 -1 -1 -1 -1 70 24462 32 1.21262e+07 1.15872e+07 1.33894e+06 4633.02 8.07 2.37386 2.02136 34803 275938 -1 23042 19 7242 39793 1366468 212085 6.30161 nan -215.252 -6.30161 0 0 1.67721e+06 5803.51 0.05 0.63 0.16 -1 -1 0.05 0.303222 0.274342 +k6_frac_N10_40nm.xml tseng.pre-vpr.blif common 2.59 vpr 66.54 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 62 52 -1 -1 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 68136 52 122 1461 1583 1 474 236 10 10 100 clb auto 27.4 MiB 0.37 4398 2714 31583 7033 22612 1938 66.5 MiB 0.18 0.00 5.30829 4.88854 -1118.91 -4.88854 4.88854 0.06 0.00173145 0.00158417 0.0816441 0.0741193 -1 -1 -1 -1 48 4763 22 3.44922e+06 3.34143e+06 287248. 2872.48 1.12 0.524806 0.467815 9916 56712 -1 4187 14 1409 3627 116662 29178 5.05451 5.05451 -1201.54 -5.05451 0 0 366588. 3665.88 0.01 0.10 0.03 -1 -1 0.01 0.0817235 0.0765267 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/vpr_reg_mcnc_equiv/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/vpr_reg_mcnc_equiv/config/golden_results.txt index cc7b62c6a7e..06a4bcb6915 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/vpr_reg_mcnc_equiv/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/vpr_reg_mcnc_equiv/config/golden_results.txt @@ -1,20 +1,20 @@ - arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - k6_N10_40nm.xml alu4.pre-vpr.blif common 5.15 vpr 63.48 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 106 14 -1 -1 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65000 14 8 926 934 0 505 128 13 13 169 clb auto 23.7 MiB 0.39 5320 9466 1544 7430 492 63.5 MiB 0.20 0.01 4.98964 -35.546 -4.98964 nan 0.16 0.00251625 0.00223401 0.0945898 0.085379 -1 -1 -1 -1 40 8155 39 2.178e+06 1.908e+06 430798. 2549.10 2.23 0.762692 0.650665 13014 85586 -1 7291 24 4695 18699 612030 108244 5.31783 nan -35.626 -5.31783 0 0 541003. 3201.20 0.02 0.33 0.07 -1 -1 0.02 0.150814 0.13295 - k6_N10_40nm.xml apex2.pre-vpr.blif common 6.81 vpr 64.74 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 126 38 -1 -1 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 66296 39 3 1113 1117 0 649 168 14 14 196 clb auto 25.0 MiB 0.51 8161 14521 2331 10832 1358 64.7 MiB 0.30 0.01 5.83152 -17.3307 -5.83152 nan 0.19 0.00327303 0.00291207 0.125054 0.112287 -1 -1 -1 -1 56 14649 45 2.592e+06 2.268e+06 683928. 3489.43 3.11 0.783946 0.67859 17100 137604 -1 12055 22 6319 31081 1191742 177825 5.79636 nan -17.0558 -5.79636 0 0 875557. 4467.13 0.03 0.48 0.11 -1 -1 0.03 0.176297 0.156434 - k6_N10_40nm.xml apex4.pre-vpr.blif common 6.12 vpr 63.17 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 105 9 -1 -1 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64684 9 19 897 916 0 543 133 13 13 169 clb auto 23.6 MiB 0.47 6734 11998 2247 9058 693 63.2 MiB 0.26 0.01 5.30224 -88.3937 -5.30224 nan 0.16 0.00277568 0.00248416 0.111245 0.10094 -1 -1 -1 -1 56 11936 45 2.178e+06 1.89e+06 580647. 3435.78 2.98 0.824097 0.708448 14694 116443 -1 10212 27 5690 29063 1167825 181866 5.38635 nan -89.1109 -5.38635 0 0 743711. 4400.66 0.02 0.48 0.09 -1 -1 0.02 0.171957 0.151906 - k6_N10_40nm.xml bigkey.pre-vpr.blif common 6.47 vpr 64.19 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 93 229 -1 -1 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65728 263 197 1372 1603 1 490 553 17 17 289 io auto 24.6 MiB 0.28 4778 170728 50681 109298 10749 64.2 MiB 0.88 0.01 3.19105 -732.6 -3.19105 3.19105 0.29 0.00444133 0.00414189 0.352128 0.327314 -1 -1 -1 -1 34 7398 17 4.05e+06 1.674e+06 688919. 2383.80 2.76 1.3271 1.215 21366 134962 -1 6995 17 2392 10610 509085 104346 3.17804 3.17804 -782.762 -3.17804 0 0 845950. 2927.16 0.03 0.32 0.10 -1 -1 0.03 0.181779 0.167898 - k6_N10_40nm.xml clma.pre-vpr.blif common 30.50 vpr 89.32 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 436 62 -1 -1 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 91460 383 82 3674 4077 1 2255 901 23 23 529 clb auto 43.8 MiB 1.76 30959 435901 143273 235791 56837 87.8 MiB 4.57 0.05 8.55335 -395.949 -8.55335 8.55335 0.57 0.011521 0.00974146 1.22739 1.05507 -1 -1 -1 -1 70 48766 40 7.938e+06 7.848e+06 2.49953e+06 4725.00 12.64 4.21839 3.57666 52134 511241 -1 43952 24 19574 92605 3927944 550062 8.47101 8.47101 -397.531 -8.47101 0 0 3.12202e+06 5901.73 0.11 1.74 0.41 -1 -1 0.11 0.663416 0.57888 - k6_N10_40nm.xml des.pre-vpr.blif common 5.88 vpr 62.14 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 102 256 -1 -1 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63636 256 245 954 1199 0 608 603 18 18 324 io auto 23.0 MiB 0.22 5227 148271 39552 101169 7550 62.1 MiB 0.69 0.01 4.37046 -770.45 -4.37046 nan 0.33 0.00429362 0.00409542 0.263968 0.251414 -1 -1 -1 -1 34 7404 17 4.608e+06 1.836e+06 779010. 2404.35 2.41 1.22781 1.15626 24000 152888 -1 6744 14 2452 5473 272585 59901 4.46945 nan -782.102 -4.46945 0 0 956463. 2952.05 0.03 0.22 0.12 -1 -1 0.03 0.141821 0.134018 - k6_N10_40nm.xml diffeq.pre-vpr.blif common 4.62 vpr 63.86 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 102 64 -1 -1 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65388 64 39 1371 1410 1 525 205 13 13 169 clb auto 24.1 MiB 0.32 3921 26177 5932 18684 1561 63.9 MiB 0.32 0.01 6.43054 -1169.36 -6.43054 6.43054 0.16 0.00298713 0.00270217 0.145753 0.131572 -1 -1 -1 -1 30 6223 39 2.178e+06 1.836e+06 350324. 2072.92 1.18 0.626373 0.545912 12006 67531 -1 5218 22 3090 9783 337940 60993 6.09481 6.09481 -1163.91 -6.09481 0 0 430798. 2549.10 0.01 0.26 0.05 -1 -1 0.01 0.150744 0.133108 - k6_N10_40nm.xml dsip.pre-vpr.blif common 7.16 vpr 64.04 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 97 229 -1 -1 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65576 229 197 1370 1567 1 538 523 16 16 256 io auto 24.5 MiB 0.29 5055 147943 44035 96679 7229 64.0 MiB 0.84 0.01 3.2095 -723.52 -3.2095 3.2095 0.25 0.00439778 0.00410483 0.327457 0.304273 -1 -1 -1 -1 34 8590 45 3.528e+06 1.746e+06 604079. 2359.69 3.67 1.47788 1.35056 18880 118149 -1 7508 16 2871 10488 535186 116741 3.28619 3.28619 -773.959 -3.28619 0 0 742044. 2898.61 0.03 0.31 0.09 -1 -1 0.03 0.167166 0.154045 - k6_N10_40nm.xml elliptic.pre-vpr.blif common 17.77 vpr 75.59 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 242 131 -1 -1 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 77400 131 114 3421 3535 1 1197 487 18 18 324 clb auto 34.5 MiB 0.89 12132 123047 34177 83673 5197 75.6 MiB 1.37 0.02 7.4606 -4613.61 -7.4606 7.4606 0.33 0.00810581 0.00695927 0.560378 0.487409 -1 -1 -1 -1 52 19935 35 4.608e+06 4.356e+06 1.09957e+06 3393.73 5.31 2.48742 2.1439 27876 225772 -1 16865 24 7619 33177 1410533 212600 7.58148 7.58148 -4794.49 -7.58148 0 0 1.44575e+06 4462.18 0.05 0.82 0.17 -1 -1 0.05 0.442646 0.391497 - k6_N10_40nm.xml ex1010.pre-vpr.blif common 25.84 vpr 79.12 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 322 10 -1 -1 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 81016 10 10 2659 2669 0 1386 342 20 20 400 clb auto 36.7 MiB 1.37 27552 61287 15872 43555 1860 79.1 MiB 1.33 0.02 7.05556 -66.589 -7.05556 nan 0.42 0.00818042 0.00678636 0.481651 0.408035 -1 -1 -1 -1 86 46648 32 5.832e+06 5.796e+06 2.18757e+06 5468.92 16.22 3.3084 2.77524 43296 457864 -1 40817 23 12321 76660 3960652 471991 6.89706 nan -66.7022 -6.89706 0 0 2.74971e+06 6874.27 0.09 1.55 0.38 -1 -1 0.09 0.488654 0.431177 - k6_N10_40nm.xml ex5p.pre-vpr.blif common 4.10 vpr 61.99 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 98 8 -1 -1 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63476 8 63 761 824 0 446 169 12 12 144 clb auto 22.7 MiB 0.28 4942 12778 2101 9758 919 62.0 MiB 0.13 0.01 4.47718 -204.583 -4.47718 nan 0.10 0.00216344 0.00193361 0.0452269 0.0410824 -1 -1 -1 -1 44 8061 45 1.8e+06 1.764e+06 394711. 2741.05 2.19 0.64483 0.556552 11464 79652 -1 6964 19 3697 15748 572693 99319 4.62135 nan -207.386 -4.62135 0 0 511253. 3550.37 0.01 0.17 0.04 -1 -1 0.01 0.0737609 0.0675818 - k6_N10_40nm.xml frisc.pre-vpr.blif common 18.44 vpr 75.51 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 251 20 -1 -1 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 77320 20 116 3175 3291 1 1188 387 18 18 324 clb auto 34.6 MiB 0.98 15146 84927 21530 58089 5308 75.5 MiB 1.28 0.02 10.0229 -5171.77 -10.0229 10.0229 0.33 0.00873977 0.00797476 0.530643 0.47162 -1 -1 -1 -1 58 25204 50 4.608e+06 4.518e+06 1.23881e+06 3823.48 6.40 2.34822 2.02881 29168 251432 -1 21617 25 8510 38924 1908034 279685 10.0072 10.0072 -5231.56 -10.0072 0 0 1.57021e+06 4846.34 0.05 0.98 0.20 -1 -1 0.05 0.493797 0.440091 - k6_N10_40nm.xml misex3.pre-vpr.blif common 4.74 vpr 63.21 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 100 14 -1 -1 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64732 14 14 828 842 0 489 128 12 12 144 clb auto 23.4 MiB 0.39 5175 7856 1075 6307 474 63.2 MiB 0.17 0.01 4.84801 -64.1454 -4.84801 nan 0.13 0.00237316 0.00211186 0.0763038 0.069521 -1 -1 -1 -1 46 7690 36 1.8e+06 1.8e+06 409728. 2845.33 1.90 0.68048 0.582561 11608 81817 -1 6920 20 4140 18396 605767 102501 4.82071 nan -63.1482 -4.82071 0 0 527971. 3666.47 0.02 0.29 0.06 -1 -1 0.02 0.12603 0.112062 - k6_N10_40nm.xml pdc.pre-vpr.blif common 21.86 vpr 80.16 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 332 16 -1 -1 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 82088 16 40 2839 2879 0 1508 388 21 21 441 clb auto 37.7 MiB 1.17 25399 76744 19217 54467 3060 80.2 MiB 1.51 0.03 6.92036 -251.161 -6.92036 nan 0.47 0.00885769 0.00740089 0.531173 0.448728 -1 -1 -1 -1 72 40612 31 6.498e+06 5.976e+06 2.09950e+06 4760.78 11.04 2.90977 2.44288 43822 429389 -1 36688 22 12583 72460 3185853 429873 7.06044 nan -257.312 -7.06044 0 0 2.62494e+06 5952.24 0.09 1.30 0.27 -1 -1 0.09 0.47556 0.41731 - k6_N10_40nm.xml s298.pre-vpr.blif common 3.96 vpr 61.48 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 84 4 -1 -1 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 62952 4 6 726 732 1 389 94 12 12 144 clb auto 22.2 MiB 0.25 4089 5206 723 4335 148 61.5 MiB 0.09 0.00 7.44269 -59.1085 -7.44269 7.44269 0.10 0.00104361 0.000914441 0.0377587 0.0345446 -1 -1 -1 -1 40 6786 29 1.8e+06 1.512e+06 360446. 2503.10 1.34 0.413858 0.360142 11036 71301 -1 5886 21 3075 15208 517485 86492 7.26292 7.26292 -60.1433 -7.26292 0 0 452692. 3143.70 0.01 0.25 0.06 -1 -1 0.01 0.116222 0.103786 - k6_N10_40nm.xml s38584.1.pre-vpr.blif common 25.20 vpr 84.29 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 404 38 -1 -1 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 86316 39 304 4677 4982 1 2030 747 23 23 529 clb auto 42.7 MiB 1.01 14904 261623 79531 168959 13133 84.3 MiB 2.43 0.03 5.31651 -3386.99 -5.31651 5.31651 0.57 0.010079 0.00906179 0.841925 0.734315 -1 -1 -1 -1 38 21753 42 7.938e+06 7.272e+06 1.42597e+06 2695.60 6.41 3.52156 3.02715 41046 290405 -1 19677 23 11025 32342 1182586 226448 5.01574 5.01574 -3392.1 -5.01574 0 0 1.79789e+06 3398.65 0.07 0.91 0.22 -1 -1 0.07 0.560332 0.490747 - k6_N10_40nm.xml seq.pre-vpr.blif common 6.68 vpr 63.84 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 112 41 -1 -1 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65376 41 35 1006 1041 0 592 188 13 13 169 clb auto 24.2 MiB 0.53 7217 15790 2751 11594 1445 63.8 MiB 0.29 0.01 4.98507 -144.608 -4.98507 nan 0.16 0.00308253 0.00273928 0.120489 0.109161 -1 -1 -1 -1 54 11911 44 2.178e+06 2.016e+06 560467. 3316.37 3.24 0.979146 0.844173 14526 113769 -1 10428 30 5280 24638 903866 142828 4.87201 nan -144.017 -4.87201 0 0 730287. 4321.22 0.02 0.46 0.10 -1 -1 0.02 0.199563 0.175824 - k6_N10_40nm.xml spla.pre-vpr.blif common 17.67 vpr 74.89 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 265 16 -1 -1 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 76688 16 46 2232 2278 0 1137 327 19 19 361 clb auto 33.2 MiB 0.92 17307 56627 13789 39736 3102 74.9 MiB 1.05 0.02 6.63208 -224.84 -6.63208 nan 0.37 0.00697821 0.0058582 0.391341 0.336325 -1 -1 -1 -1 60 30174 42 5.202e+06 4.77e+06 1.43744e+06 3981.82 8.84 2.3335 1.98111 32910 290117 -1 25425 24 9835 57132 2445755 336723 6.52939 nan -226.972 -6.52939 0 0 1.79849e+06 4981.96 0.06 1.13 0.23 -1 -1 0.06 0.404897 0.357661 - k6_N10_40nm.xml tseng.pre-vpr.blif common 3.61 vpr 64.12 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 112 52 -1 -1 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65656 52 122 1461 1583 1 500 286 13 13 169 clb auto 24.5 MiB 0.22 3158 39808 8713 28658 2437 64.1 MiB 0.20 0.00 6.15771 -1276.75 -6.15771 6.15771 0.12 0.00151949 0.00138677 0.0725931 0.0655934 -1 -1 -1 -1 26 4848 34 2.178e+06 2.016e+06 310759. 1838.81 0.73 0.389324 0.342948 11502 59218 -1 4210 17 2436 6640 243507 54081 5.71256 5.71256 -1266.26 -5.71256 0 0 383419. 2268.75 0.01 0.20 0.05 -1 -1 0.01 0.123184 0.110004 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +k6_N10_40nm.xml alu4.pre-vpr.blif common 4.91 vpr 64.69 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 106 14 -1 -1 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66240 14 8 926 934 0 514 128 13 13 169 clb auto 25.5 MiB 0.26 7083 5448 9788 1646 7588 554 64.7 MiB 0.15 0.00 5.97999 5.05611 -36.7617 -5.05611 nan 0.12 0.00148321 0.00129161 0.0679953 0.0617759 -1 -1 -1 -1 44 7669 23 2.178e+06 1.908e+06 471456. 2789.68 2.75 0.831893 0.720002 13518 95550 -1 7054 22 4067 16637 523317 87764 5.0058 nan -36.2952 -5.0058 0 0 610661. 3613.38 0.02 0.22 0.05 -1 -1 0.02 0.107729 0.0979149 +k6_N10_40nm.xml apex2.pre-vpr.blif common 5.45 vpr 66.10 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 128 38 -1 -1 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 67684 39 3 1113 1117 0 649 170 14 14 196 clb auto 26.6 MiB 0.33 11306 8269 11920 1732 9182 1006 66.1 MiB 0.22 0.01 7.69377 5.66253 -16.5951 -5.66253 nan 0.14 0.0022649 0.00196723 0.0992103 0.0892723 -1 -1 -1 -1 56 13927 44 2.592e+06 2.304e+06 683928. 3489.43 2.89 0.787426 0.691094 17100 137604 -1 12377 22 5754 26605 1002340 150693 5.6078 nan -16.6372 -5.6078 0 0 875557. 4467.13 0.02 0.32 0.07 -1 -1 0.02 0.136693 0.125427 +k6_N10_40nm.xml apex4.pre-vpr.blif common 4.23 vpr 64.41 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 105 9 -1 -1 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65952 9 19 897 916 0 542 133 13 13 169 clb auto 25.3 MiB 0.30 8391 6735 11320 1952 8674 694 64.4 MiB 0.18 0.01 6.17724 5.31226 -86.9474 -5.31226 nan 0.12 0.00238491 0.00209788 0.0788687 0.0719373 -1 -1 -1 -1 56 11713 33 2.178e+06 1.89e+06 580647. 3435.78 2.11 0.543082 0.475032 14694 116443 -1 9840 25 5479 27940 1052585 163171 5.34721 nan -87.0992 -5.34721 0 0 743711. 4400.66 0.02 0.32 0.06 -1 -1 0.02 0.122642 0.110483 +k6_N10_40nm.xml bigkey.pre-vpr.blif common 4.46 vpr 65.71 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 93 229 -1 -1 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 67288 263 197 1372 1603 1 497 553 17 17 289 io auto 26.4 MiB 0.18 9146 4610 166190 47472 107803 10915 65.7 MiB 0.53 0.01 4.32883 3.19205 -751.534 -3.19205 3.19205 0.22 0.00219749 0.00194794 0.192948 0.175966 -1 -1 -1 -1 34 7284 17 4.05e+06 1.674e+06 688919. 2383.80 1.91 0.747795 0.681917 21366 134962 -1 6861 14 2305 8738 471382 100298 3.29238 3.29238 -791.887 -3.29238 0 0 845950. 2927.16 0.03 0.18 0.07 -1 -1 0.03 0.0886663 0.08254 +k6_N10_40nm.xml clma.pre-vpr.blif common 22.99 vpr 88.53 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 436 62 -1 -1 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 90652 383 82 3674 4077 1 2242 901 23 23 529 clb auto 47.8 MiB 1.18 60546 31685 440251 147763 235759 56729 88.1 MiB 3.47 0.04 12.5735 9.22505 -390.083 -9.22505 9.22505 0.45 0.00877321 0.00803484 1.08071 0.909904 -1 -1 -1 -1 70 48763 36 7.938e+06 7.848e+06 2.49953e+06 4725.00 10.11 3.40178 2.84763 52134 511241 -1 43533 21 17430 80185 3323118 476163 9.07936 9.07936 -387.93 -9.07936 0 0 3.12202e+06 5901.73 0.10 1.21 0.29 -1 -1 0.10 0.508039 0.448686 +k6_N10_40nm.xml des.pre-vpr.blif common 3.90 vpr 63.94 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 100 256 -1 -1 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65476 256 245 954 1199 0 602 601 18 18 324 io auto 24.3 MiB 0.15 10721 5420 140026 39341 93980 6705 63.9 MiB 0.42 0.01 5.97631 4.13264 -765.653 -4.13264 nan 0.25 0.0020053 0.00187678 0.147575 0.139546 -1 -1 -1 -1 34 7666 22 4.608e+06 1.8e+06 779010. 2404.35 1.54 0.633075 0.594925 24000 152888 -1 6972 15 2528 6105 319538 68984 4.28747 nan -801.598 -4.28747 0 0 956463. 2952.05 0.03 0.15 0.08 -1 -1 0.03 0.0834864 0.079197 +k6_N10_40nm.xml diffeq.pre-vpr.blif common 4.46 vpr 65.61 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 101 64 -1 -1 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 67180 64 39 1371 1410 1 525 204 13 13 169 clb auto 25.8 MiB 0.31 6520 3916 21204 4010 16081 1113 65.6 MiB 0.27 0.01 7.55482 6.06737 -1159.7 -6.06737 6.06737 0.18 0.003443 0.00316736 0.139109 0.12543 -1 -1 -1 -1 30 6125 43 2.178e+06 1.818e+06 350324. 2072.92 1.46 0.788466 0.702487 12006 67531 -1 5178 22 3019 9742 337555 60954 5.95152 5.95152 -1177.43 -5.95152 0 0 430798. 2549.10 0.01 0.19 0.04 -1 -1 0.01 0.11622 0.105207 +k6_N10_40nm.xml dsip.pre-vpr.blif common 4.48 vpr 65.56 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 95 229 -1 -1 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 67132 229 197 1370 1567 1 534 521 16 16 256 io auto 26.2 MiB 0.19 9562 4735 149266 43445 98316 7505 65.6 MiB 0.48 0.01 4.18888 3.1959 -736.239 -3.1959 3.1959 0.19 0.00226564 0.00209541 0.172523 0.158247 -1 -1 -1 -1 34 7794 33 3.528e+06 1.71e+06 604079. 2359.69 2.19 0.758038 0.690657 18880 118149 -1 7160 19 2717 9216 471971 103095 3.3317 3.3317 -798.533 -3.3317 0 0 742044. 2898.61 0.02 0.21 0.06 -1 -1 0.02 0.111339 0.10326 +k6_N10_40nm.xml elliptic.pre-vpr.blif common 13.58 vpr 77.02 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 241 131 -1 -1 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 78864 131 114 3421 3535 1 1197 486 18 18 324 clb auto 37.1 MiB 0.54 22607 11749 126546 34749 85241 6556 77.0 MiB 0.92 0.01 10.1196 7.35398 -4585.48 -7.35398 7.35398 0.25 0.00500688 0.00453694 0.403499 0.341049 -1 -1 -1 -1 50 18922 32 4.608e+06 4.338e+06 1.06618e+06 3290.67 3.44 1.55452 1.32535 27232 214208 -1 16253 19 7367 30536 1267689 193203 7.26105 7.26105 -4670.93 -7.26105 0 0 1.36711e+06 4219.48 0.04 0.61 0.11 -1 -1 0.04 0.339667 0.306043 +k6_N10_40nm.xml ex1010.pre-vpr.blif common 23.28 vpr 81.01 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 316 10 -1 -1 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 82956 10 10 2659 2669 0 1391 336 20 20 400 clb auto 40.8 MiB 0.87 34173 27378 59853 15980 41901 1972 81.0 MiB 1.02 0.02 9.34252 6.78888 -65.5484 -6.78888 nan 0.31 0.00780115 0.00619201 0.432572 0.349828 -1 -1 -1 -1 88 47872 43 5.832e+06 5.688e+06 2.22978e+06 5574.46 16.41 3.76498 3.11287 43692 465500 -1 40197 24 12700 79693 4033407 473272 6.80998 nan -65.6831 -6.80998 0 0 2.79850e+06 6996.25 0.09 1.26 0.29 -1 -1 0.09 0.421009 0.3711 +k6_N10_40nm.xml ex5p.pre-vpr.blif common 4.03 vpr 63.94 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 95 8 -1 -1 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65476 8 63 761 824 0 447 166 12 12 144 clb auto 24.0 MiB 0.23 6388 4881 13846 2417 10426 1003 63.9 MiB 0.15 0.01 5.38222 4.4446 -201.57 -4.4446 nan 0.10 0.0021612 0.00201166 0.0602991 0.0553309 -1 -1 -1 -1 46 7969 39 1.8e+06 1.71e+06 409728. 2845.33 2.33 0.640527 0.567984 11608 81817 -1 6969 27 3861 16117 591553 100720 4.44193 nan -200.716 -4.44193 0 0 527971. 3666.47 0.01 0.20 0.04 -1 -1 0.01 0.0930208 0.0850464 +k6_N10_40nm.xml frisc.pre-vpr.blif common 15.36 vpr 77.44 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 249 20 -1 -1 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 79300 20 116 3175 3291 1 1155 385 18 18 324 clb auto 37.5 MiB 0.57 23449 14674 85785 22555 57970 5260 77.4 MiB 0.86 0.01 13.9915 9.85955 -5064.76 -9.85955 9.85955 0.36 0.00518812 0.00473015 0.375569 0.324925 -1 -1 -1 -1 54 24717 46 4.608e+06 4.482e+06 1.13978e+06 3517.85 5.34 2.00436 1.71283 28200 234220 -1 20929 29 7959 35697 1712456 256751 9.75974 9.75974 -5111.13 -9.75974 0 0 1.48298e+06 4577.10 0.05 0.71 0.13 -1 -1 0.05 0.381404 0.339549 +k6_N10_40nm.xml misex3.pre-vpr.blif common 3.47 vpr 63.95 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 99 14 -1 -1 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65484 14 14 828 842 0 495 127 12 12 144 clb auto 25.1 MiB 0.26 6785 5201 6826 774 5709 343 63.9 MiB 0.10 0.00 6.08887 4.91247 -64.3251 -4.91247 nan 0.10 0.00150222 0.00134616 0.0447251 0.0409107 -1 -1 -1 -1 44 7811 41 1.8e+06 1.782e+06 394711. 2741.05 1.40 0.492209 0.435312 11464 79652 -1 6924 20 4019 17263 551288 95278 5.04493 nan -64.2968 -5.04493 0 0 511253. 3550.37 0.01 0.24 0.05 -1 -1 0.01 0.106579 0.0965979 +k6_N10_40nm.xml pdc.pre-vpr.blif common 17.45 vpr 81.71 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 330 16 -1 -1 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 83676 16 40 2839 2879 0 1467 386 21 21 441 clb auto 41.2 MiB 0.78 36890 24945 71990 18391 50424 3175 81.7 MiB 1.09 0.02 10.1773 7.09431 -258.357 -7.09431 nan 0.35 0.00651541 0.00583051 0.445898 0.359931 -1 -1 -1 -1 72 42025 42 6.498e+06 5.94e+06 2.09950e+06 4760.78 9.01 2.40714 1.97615 43822 429389 -1 35463 21 12440 72372 3086341 420076 7.18526 nan -260.461 -7.18526 0 0 2.62494e+06 5952.24 0.09 1.13 0.25 -1 -1 0.09 0.428209 0.378195 +k6_N10_40nm.xml s298.pre-vpr.blif common 3.58 vpr 63.39 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 86 4 -1 -1 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 64908 4 6 726 732 1 396 96 12 12 144 clb auto 23.6 MiB 0.20 5047 4214 4476 509 3811 156 63.4 MiB 0.09 0.00 8.22999 7.1626 -56.5861 -7.1626 7.1626 0.10 0.00127359 0.0011384 0.0456131 0.0421391 -1 -1 -1 -1 38 7004 50 1.8e+06 1.548e+06 347776. 2415.11 1.56 0.480843 0.430228 10892 69136 -1 6169 23 3648 19435 701468 113085 7.00833 7.00833 -56.0805 -7.00833 0 0 439064. 3049.06 0.01 0.21 0.03 -1 -1 0.01 0.09092 0.0829136 +k6_N10_40nm.xml s38584.1.pre-vpr.blif common 47.18 vpr 86.60 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 404 38 -1 -1 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 88680 39 304 4677 4982 1 2045 747 23 23 529 clb auto 46.5 MiB 0.75 45108 15162 254847 76917 164647 13283 86.6 MiB 1.64 0.02 9.61199 5.3655 -3362.15 -5.3655 5.3655 0.44 0.00679555 0.00619652 0.605609 0.521814 -1 -1 -1 -1 36 23003 46 7.938e+06 7.272e+06 1.36659e+06 2583.35 4.11 2.33544 2.00342 39990 270289 -1 20202 25 11198 32005 1222912 235642 5.42021 5.42021 -3467.48 -5.42021 0 0 1.67430e+06 3165.03 0.06 0.75 0.19 -1 -1 0.06 0.46165 0.407176 +k6_N10_40nm.xml seq.pre-vpr.blif common 6.02 vpr 65.27 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 113 41 -1 -1 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66840 41 35 1006 1041 0 592 189 13 13 169 clb auto 25.8 MiB 0.29 9486 7332 19159 3405 13914 1840 65.3 MiB 0.33 0.01 6.24344 5.08166 -147.244 -5.08166 nan 0.18 0.00313515 0.00279961 0.136721 0.121582 -1 -1 -1 -1 56 11939 50 2.178e+06 2.034e+06 580647. 3435.78 3.52 0.997007 0.871403 14694 116443 -1 10324 20 5127 24770 910918 144801 5.20387 nan -145.39 -5.20387 0 0 743711. 4400.66 0.02 0.29 0.06 -1 -1 0.02 0.117813 0.107036 +k6_N10_40nm.xml spla.pre-vpr.blif common 15.49 vpr 75.87 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 255 16 -1 -1 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 77688 16 46 2232 2278 0 1142 317 18 18 324 clb auto 36.3 MiB 0.61 24484 16948 51077 11678 36839 2560 75.9 MiB 0.74 0.01 8.85685 6.23263 -214.486 -6.23263 nan 0.25 0.0056626 0.00447365 0.316066 0.258337 -1 -1 -1 -1 62 27299 43 4.608e+06 4.59e+06 1.32550e+06 4091.04 9.17 2.50414 2.08209 29816 263480 -1 24298 20 9391 53871 2167776 305985 6.52956 nan -216.506 -6.52956 0 0 1.62910e+06 5028.10 0.05 0.76 0.15 -1 -1 0.05 0.297609 0.265752 +k6_N10_40nm.xml tseng.pre-vpr.blif common 3.14 vpr 65.42 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 113 52 -1 -1 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66992 52 122 1461 1583 1 500 287 13 13 169 clb auto 26.4 MiB 0.19 6165 3259 40019 8603 29010 2406 65.4 MiB 0.20 0.00 7.76697 6.20124 -1275.15 -6.20124 6.20124 0.12 0.00156781 0.0014181 0.0808621 0.0730003 -1 -1 -1 -1 26 5124 30 2.178e+06 2.034e+06 310759. 1838.81 0.81 0.447445 0.401543 11502 59218 -1 4548 25 2647 7841 292976 65953 5.87644 5.87644 -1276.67 -5.87644 0 0 383419. 2268.75 0.01 0.18 0.03 -1 -1 0.01 0.116471 0.105499 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/vtr_reg_fpu_hard_block_arch/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/vtr_reg_fpu_hard_block_arch/config/golden_results.txt index 9c78b87cb9f..a74307e5813 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/vtr_reg_fpu_hard_block_arch/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/vtr_reg_fpu_hard_block_arch/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 ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_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 10.66 vpr 62.66 MiB -1 -1 0.29 18880 1 0.04 -1 -1 31060 -1 -1 14 193 -1 -1 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64160 193 64 833 649 1 555 275 30 30 900 block_FPU auto 22.9 MiB 9.06 7227 73501 28110 42559 2832 62.7 MiB 0.24 0.00 2.985 -1449.57 -2.985 2.985 0.00 0.00129076 0.0012041 0.111382 0.10419 -1 -1 -1 -1 10011 18.0704 2627 4.74188 921 1045 352645 96816 1.6779e+06 169623 2.03108e+06 2256.75 6 48532 406344 -1 2.985 2.985 -1492.92 -2.985 -24.3711 -0.0851 0.33 -1 -1 62.7 MiB 0.08 0.141917 0.133178 62.7 MiB -1 0.09 4 - hard_fpu_arch_timing.xml bgm.v common 4.38 vpr 66.29 MiB -1 -1 0.37 19684 1 0.06 -1 -1 31568 -1 -1 0 257 -1 -1 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 67880 257 32 1281 693 1 1048 299 38 38 1444 block_FPU auto 27.1 MiB 1.15 17732 96203 37615 55516 3072 66.3 MiB 0.97 0.01 2.985 -3196.19 -2.985 2.985 0.00 0.0058053 0.00549326 0.572424 0.541944 -1 -1 -1 -1 24861 23.7450 6446 6.15664 1897 2343 998279 268232 2.90196e+06 343832 3.35777e+06 2325.33 6 79768 674274 -1 2.985 2.985 -3400.32 -2.985 -32.9279 -0.0851 0.72 -1 -1 66.3 MiB 0.27 0.668829 0.633922 66.3 MiB -1 0.18 10 - hard_fpu_arch_timing.xml dscg.v common 11.83 vpr 63.13 MiB -1 -1 0.27 18916 1 0.05 -1 -1 30476 -1 -1 0 129 -1 -1 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64644 129 64 769 585 1 513 197 30 30 900 block_FPU auto 23.0 MiB 9.85 7095 47183 20094 26781 308 63.1 MiB 0.42 0.00 2.985 -1443.24 -2.985 2.985 0.00 0.00302745 0.00284785 0.254581 0.239617 -1 -1 -1 -1 9979 19.4902 2627 5.13086 790 910 348267 96422 1.6779e+06 137533 2.03108e+06 2256.75 5 48532 406344 -1 2.985 2.985 -1537.32 -2.985 -21.8648 -0.0851 0.44 -1 -1 63.1 MiB 0.11 0.304162 0.286319 63.1 MiB -1 0.10 4 - hard_fpu_arch_timing.xml fir.v common 19.03 vpr 63.21 MiB -1 -1 0.34 19016 1 0.05 -1 -1 32588 -1 -1 0 161 -1 -1 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64724 161 32 993 808 1 587 198 32 32 1024 block_FPU auto 23.3 MiB 16.72 9692 44550 18401 25778 371 63.2 MiB 0.41 0.00 2.985 -1407.96 -2.985 2.985 0.00 0.00297922 0.00277214 0.239029 0.222609 -1 -1 -1 -1 12905 22.0222 3330 5.68259 990 1086 448603 120061 2.063e+06 171916 2.37490e+06 2319.23 5 57140 479124 -1 2.985 2.985 -1491.67 -2.985 -38.4653 -0.0851 0.53 -1 -1 63.2 MiB 0.13 0.291694 0.271864 63.2 MiB -1 0.12 5 - hard_fpu_arch_timing.xml mm3.v common 6.50 vpr 61.19 MiB -1 -1 0.23 18328 1 0.04 -1 -1 30736 -1 -1 0 193 -1 -1 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 62656 193 32 545 422 1 386 228 22 22 484 block_FPU auto 21.8 MiB 4.95 4984 53124 22938 29850 336 61.2 MiB 0.32 0.00 2.985 -851.626 -2.985 2.985 0.00 0.00217515 0.00206622 0.171111 0.1626 -1 -1 -1 -1 6454 16.7636 1714 4.45195 565 565 194103 53991 882498 103149 1.07647e+06 2224.11 4 26490 217099 -1 2.985 2.985 -877.472 -2.985 -13.5705 -0.0851 0.24 -1 -1 61.2 MiB 0.07 0.203477 0.193246 61.2 MiB -1 0.05 3 - hard_fpu_arch_timing.xml ode.v common 53.14 vpr 64.66 MiB -1 -1 0.41 19816 1 0.10 -1 -1 34200 -1 -1 141 130 -1 -1 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 66208 130 72 1194 1103 1 571 345 19 19 361 io auto 24.6 MiB 50.95 5001 98274 32566 61072 4636 64.7 MiB 0.54 0.01 2.985 -1384.17 -2.985 2.985 0.00 0.00308436 0.00282904 0.260751 0.239819 -1 -1 -1 -1 6737 11.8193 1762 3.09123 1249 1362 304558 77526 653279 391968 795482. 2203.55 8 19802 160939 -1 2.985 2.985 -1385.47 -2.985 -52.8417 -0.0851 0.18 -1 -1 64.7 MiB 0.13 0.330036 0.303434 64.7 MiB -1 0.04 2 - hard_fpu_arch_timing.xml syn2.v common 3.85 vpr 62.39 MiB -1 -1 0.16 18524 1 0.04 -1 -1 30832 -1 -1 0 161 -1 -1 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 63892 161 128 641 490 1 475 293 30 30 900 block_FPU auto 23.1 MiB 1.75 8105 81941 35762 45750 429 62.4 MiB 0.54 0.01 2.985 -1571.9 -2.985 2.985 0.00 0.00342016 0.0032503 0.298242 0.283689 -1 -1 -1 -1 10335 21.8038 2743 5.78692 780 976 327494 85675 1.6779e+06 137533 2.03108e+06 2256.75 5 48532 406344 -1 2.985 2.985 -1595.62 -2.985 -16.3392 -0.0851 0.44 -1 -1 62.4 MiB 0.11 0.355509 0.338332 62.4 MiB -1 0.10 4 - hard_fpu_arch_timing.xml syn7.v common 7.45 vpr 112.47 MiB -1 -1 0.45 21564 1 0.08 -1 -1 32500 -1 -1 0 161 -1 -1 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 115168 161 128 1921 499 1 1760 309 54 54 2916 block_FPU auto 37.0 MiB 0.62 44624 112017 52264 59181 572 112.5 MiB 2.20 0.02 2.985 -8100.96 -2.985 2.985 0.00 0.0120269 0.0114133 1.31427 1.24716 -1 -1 -1 -1 60108 34.1717 15324 8.71177 4214 6760 3339753 839694 6.08571e+06 687663 6.89978e+06 2366.18 9 161598 1383069 -1 2.985 2.985 -8533.86 -2.985 -46.3798 -0.0851 1.55 -1 -1 112.5 MiB 0.90 1.61708 1.53715 112.5 MiB -1 0.39 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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time 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 1.69 vpr 63.78 MiB -1 -1 0.13 18684 1 0.04 -1 -1 30412 -1 -1 0 193 -1 -1 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65312 193 64 833 649 1 513 261 30 30 900 block_FPU auto 24.2 MiB 0.32 11091 7034 74398 32654 41106 638 63.8 MiB 0.28 0.00 2.985 2.985 -1424.43 -2.985 2.985 0.00 0.00159102 0.00149083 0.154903 0.145699 -1 -1 -1 -1 9364 18.2891 2492 4.86719 779 887 316097 86405 1.6779e+06 137533 2.03108e+06 2256.75 4 48532 406344 -1 2.985 2.985 -1464.04 -2.985 -27.2716 -0.0851 0.33 -1 -1 63.8 MiB 0.08 0.186823 0.176339 63.8 MiB -1 0.11 4 +hard_fpu_arch_timing.xml bgm.v common 2.89 vpr 66.42 MiB -1 -1 0.21 19836 1 0.05 -1 -1 31084 -1 -1 0 257 -1 -1 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 68012 257 32 1281 693 1 999 299 38 38 1444 block_FPU auto 28.3 MiB 0.56 24417 20354 90209 37667 52028 514 66.4 MiB 0.59 0.01 2.985 2.985 -3279.31 -2.985 2.985 0.00 0.00306286 0.00289708 0.339134 0.321404 -1 -1 -1 -1 26869 26.9228 6935 6.94890 1862 2375 1114441 288875 2.90196e+06 343832 3.35777e+06 2325.33 7 79768 674274 -1 2.985 2.985 -3485.89 -2.985 -32.7577 -0.0851 0.55 -1 -1 66.4 MiB 0.24 0.412563 0.392015 66.4 MiB -1 0.17 10 +hard_fpu_arch_timing.xml dscg.v common 2.15 vpr 63.84 MiB -1 -1 0.16 18684 1 0.04 -1 -1 30748 -1 -1 0 129 -1 -1 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65368 129 64 769 585 1 513 198 32 32 1024 block_FPU auto 24.2 MiB 0.74 11272 7736 52614 22764 29600 250 63.8 MiB 0.24 0.00 2.985 2.985 -1450.41 -2.985 2.985 0.00 0.00146576 0.00137209 0.141162 0.132297 -1 -1 -1 -1 11188 21.8516 2890 5.64453 838 1049 418805 112428 2.063e+06 171916 2.37490e+06 2319.23 5 57140 479124 -1 2.985 2.985 -1553.53 -2.985 -21.7856 -0.0851 0.36 -1 -1 63.8 MiB 0.09 0.172509 0.162281 63.8 MiB -1 0.12 5 +hard_fpu_arch_timing.xml fir.v common 8.36 vpr 63.77 MiB -1 -1 0.21 18684 1 0.04 -1 -1 31156 -1 -1 0 161 -1 -1 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65300 161 32 993 808 1 562 198 32 32 1024 block_FPU auto 24.2 MiB 6.82 11288 7405 51462 21510 29704 248 63.8 MiB 0.24 0.00 2.985 2.985 -1332.96 -2.985 2.985 0.00 0.00145997 0.00135492 0.138155 0.128337 -1 -1 -1 -1 10782 19.2193 2771 4.93939 899 992 433591 120812 2.063e+06 171916 2.37490e+06 2319.23 5 57140 479124 -1 2.985 2.985 -1428.14 -2.985 -40.5929 -0.0851 0.44 -1 -1 63.8 MiB 0.09 0.17082 0.159463 63.8 MiB -1 0.11 5 +hard_fpu_arch_timing.xml mm3.v common 1.38 vpr 62.52 MiB -1 -1 0.12 18296 1 0.03 -1 -1 30628 -1 -1 0 193 -1 -1 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 64024 193 32 545 422 1 385 229 30 30 900 block_FPU auto 22.7 MiB 0.18 8272 4968 58329 25699 32293 337 62.5 MiB 0.22 0.00 2.985 2.985 -855.954 -2.985 2.985 0.00 0.00103363 0.000972137 0.116063 0.109526 -1 -1 -1 -1 6670 17.3698 1756 4.57292 533 533 185005 50756 1.6779e+06 137533 2.03108e+06 2256.75 5 48532 406344 -1 2.985 2.985 -882.014 -2.985 -13.6953 -0.0851 0.31 -1 -1 62.5 MiB 0.05 0.136779 0.129322 62.5 MiB -1 0.09 4 +hard_fpu_arch_timing.xml ode.v common 2.88 vpr 64.91 MiB -1 -1 0.19 19452 1 0.07 -1 -1 33584 -1 -1 128 130 -1 -1 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66468 130 72 1194 1103 1 591 333 22 22 484 block_FPU auto 25.4 MiB 1.51 8920 6104 92573 27080 59763 5730 64.9 MiB 0.33 0.00 2.985 2.985 -1423.15 -2.985 2.985 0.00 0.00148876 0.00135475 0.152232 0.139158 -1 -1 -1 -1 8458 14.3356 2267 3.84237 1308 1755 428944 116306 882498 396552 1.07647e+06 2224.11 9 26490 217099 -1 2.985 2.985 -1454.47 -2.985 -48.7964 -0.0851 0.16 -1 -1 64.9 MiB 0.10 0.196644 0.180827 64.9 MiB -1 0.05 3 +hard_fpu_arch_timing.xml syn2.v common 2.86 vpr 62.56 MiB -1 -1 0.12 18680 1 0.03 -1 -1 30532 -1 -1 0 161 -1 -1 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 64060 161 128 641 490 1 479 293 30 30 900 block_FPU auto 23.9 MiB 1.43 10930 8213 81941 35740 45812 389 62.6 MiB 0.29 0.00 2.985 2.985 -1573.71 -2.985 2.985 0.00 0.00170674 0.00161454 0.150112 0.142271 -1 -1 -1 -1 10469 21.9017 2773 5.80126 795 1003 347207 90839 1.6779e+06 137533 2.03108e+06 2256.75 4 48532 406344 -1 2.985 2.985 -1600.15 -2.985 -16.078 -0.0851 0.41 -1 -1 62.6 MiB 0.10 0.187774 0.17827 62.6 MiB -1 0.10 4 +hard_fpu_arch_timing.xml syn7.v common 5.27 vpr 111.22 MiB -1 -1 0.24 21372 1 0.07 -1 -1 31944 -1 -1 0 161 -1 -1 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 113888 161 128 1921 499 1 1761 309 54 54 2916 block_FPU auto 38.1 MiB 0.38 74672 45797 118281 55728 61956 597 111.2 MiB 1.82 0.01 2.985 2.985 -8183.2 -2.985 2.985 0.00 0.00708224 0.00672565 1.09152 1.03992 -1 -1 -1 -1 61720 35.0682 15701 8.92102 4096 6553 3150232 794260 6.08571e+06 687663 6.89978e+06 2366.18 7 161598 1383069 -1 2.985 2.985 -8633.26 -2.985 -40.8482 -0.0851 1.09 -1 -1 111.2 MiB 0.61 1.24899 1.19225 111.2 MiB -1 0.37 20 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/vtr_reg_fpu_soft_logic_arch/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/vtr_reg_fpu_soft_logic_arch/config/golden_results.txt index 985745ce71c..f279e94b037 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/vtr_reg_fpu_soft_logic_arch/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/vtr_reg_fpu_soft_logic_arch/config/golden_results.txt @@ -1,8 +1,8 @@ - arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time 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 - soft_fpu_arch_timing.xml bfly.v common 41.34 parmys 121.35 MiB -1 -1 28.71 124260 23 3.25 -1 -1 39816 -1 -1 1065 193 -1 -1 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 84540 193 64 3908 3972 1 2590 1322 35 35 1225 clb auto 40.9 MiB 0.92 23821 566978 183866 374301 8811 82.6 MiB 3.62 0.05 15.2252 -3632.45 -15.2252 15.2252 0.00 0.00893832 0.00809078 0.765101 0.674928 -1 -1 -1 -1 41554 16.0502 10620 4.10197 16398 55146 3818752 563046 2.49624e+06 2.44122e+06 2.83731e+06 2316.17 20 66042 566079 -1 14.3186 14.3186 -3387.7 -14.3186 -31.8712 -0.0851 0.59 -1 -1 82.6 MiB 1.30 1.1781 1.04452 82.6 MiB -1 0.14 - soft_fpu_arch_timing.xml bgm.v common 91.63 parmys 261.79 MiB -1 -1 68.05 268076 18 8.02 -1 -1 47316 -1 -1 1490 257 -1 -1 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 98376 257 32 6040 6072 1 3862 1779 41 41 1681 clb auto 52.4 MiB 1.35 32284 896104 308252 576620 11232 96.1 MiB 5.96 0.07 12.7604 -5544.74 -12.7604 12.7604 0.00 0.0121239 0.0108644 1.11649 0.963883 -1 -1 -1 -1 53705 13.9132 13764 3.56580 24580 81256 5307364 800086 3.48649e+06 3.41543e+06 3.92715e+06 2336.20 24 90666 782499 -1 12.0246 12.0246 -5156.11 -12.0246 -31.3502 -0.0851 0.78 -1 -1 96.1 MiB 1.91 1.78217 1.54405 96.1 MiB -1 0.19 - soft_fpu_arch_timing.xml dscg.v common 37.96 parmys 121.48 MiB -1 -1 31.02 124396 24 1.46 -1 -1 38668 -1 -1 602 129 -1 -1 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 72036 129 64 2192 2256 1 1525 795 27 27 729 clb auto 30.2 MiB 0.54 13360 240060 66463 162314 11283 70.3 MiB 1.50 0.02 16.4736 -1891.5 -16.4736 16.4736 0.00 0.00522672 0.00478088 0.373681 0.337968 -1 -1 -1 -1 23389 15.7821 5992 4.04318 10665 36046 2530253 367157 1.43263e+06 1.37991e+06 1.65895e+06 2275.65 21 39258 331839 -1 14.938 14.938 -1781.33 -14.938 -9.29425 -0.0851 0.32 -1 -1 70.3 MiB 0.86 0.642834 0.579879 70.3 MiB -1 0.07 - soft_fpu_arch_timing.xml fir.v common 30.01 parmys 107.04 MiB -1 -1 25.31 109604 16 0.75 -1 -1 35824 -1 -1 480 161 -1 -1 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 69144 161 32 2044 2076 1 1154 673 24 24 576 clb auto 27.8 MiB 0.33 7067 186397 50839 130117 5441 67.5 MiB 1.00 0.02 10.7496 -1623.35 -10.7496 10.7496 0.00 0.00400883 0.00360476 0.266889 0.238205 -1 -1 -1 -1 11039 9.58247 2844 2.46875 5647 15675 1030099 156890 1.10943e+06 1.10026e+06 1.29802e+06 2253.51 23 30996 260004 -1 10.1243 10.1243 -1523.31 -10.1243 -41.6788 -0.0851 0.25 -1 -1 67.5 MiB 0.42 0.454829 0.403412 67.5 MiB -1 0.06 - soft_fpu_arch_timing.xml mm3.v common 19.71 parmys 76.30 MiB -1 -1 17.40 78128 11 0.25 -1 -1 34080 -1 -1 188 193 -1 -1 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 62248 193 32 892 924 1 553 413 21 21 441 io auto 21.0 MiB 0.15 2944 81874 21125 56255 4494 60.8 MiB 0.37 0.01 7.4944 -557.676 -7.4944 7.4944 0.00 0.00203025 0.00187301 0.114304 0.105094 -1 -1 -1 -1 4300 7.78986 1136 2.05797 2073 4078 247328 39648 827486 430936 981244. 2225.04 17 23706 196899 -1 6.6809 6.6809 -514.232 -6.6809 -6.91814 -0.0851 0.19 -1 -1 60.8 MiB 0.13 0.187463 0.170377 60.8 MiB -1 0.04 - soft_fpu_arch_timing.xml ode.v common 40.64 parmys 125.57 MiB -1 -1 23.10 128584 24 4.17 -1 -1 44228 -1 -1 1412 130 -1 -1 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 94024 130 72 5151 5223 1 3426 1614 40 40 1600 clb auto 48.4 MiB 1.33 35991 777580 261625 505362 10593 91.8 MiB 5.34 0.06 15.9431 -5264.37 -15.9431 15.9431 0.00 0.0117408 0.0100826 1.01252 0.875255 -1 -1 -1 -1 60460 17.6732 15462 4.51973 24242 84687 5987586 871715 3.30999e+06 3.23663e+06 3.73324e+06 2333.28 21 86292 744004 -1 14.8488 14.8488 -4929.15 -14.8488 -50.5031 -0.0851 0.74 -1 -1 91.8 MiB 1.94 1.5713 1.36676 91.8 MiB -1 0.19 - soft_fpu_arch_timing.xml syn2.v common 62.84 parmys 154.08 MiB -1 -1 29.55 157776 24 7.67 -1 -1 48164 -1 -1 2381 161 -1 -1 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 146376 161 128 8330 8458 1 5909 2670 51 51 2601 clb auto 69.8 MiB 2.37 66146 1576445 571349 976282 28814 142.9 MiB 12.22 0.13 17.1016 -8352.63 -17.1016 17.1016 0.00 0.0199685 0.0180821 1.87397 1.60664 -1 -1 -1 -1 113775 19.4487 28920 4.94359 45588 170928 12281742 1779631 5.50353e+06 5.45769e+06 6.13592e+06 2359.06 21 140346 1220799 -1 15.9299 15.9299 -7817.18 -15.9299 -29.0971 -0.0851 1.30 -1 -1 142.9 MiB 4.07 2.89569 2.48638 142.9 MiB -1 0.35 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time 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 +soft_fpu_arch_timing.xml bfly.v common 25.70 parmys 119.72 MiB -1 -1 16.23 122596 23 3.17 -1 -1 39160 -1 -1 1061 193 -1 -1 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 85484 193 64 3908 3972 1 2576 1318 35 35 1225 clb auto 43.7 MiB 0.48 79910 23275 535820 162842 363780 9198 83.5 MiB 2.37 0.03 26.2008 15.2827 -3619.83 -15.2827 15.2827 0.00 0.00583731 0.00532945 0.539265 0.456016 -1 -1 -1 -1 41486 16.1111 10615 4.12233 21157 75339 5284993 776800 2.49624e+06 2.43205e+06 2.83731e+06 2316.17 22 66042 566079 -1 13.7882 13.7882 -3355.71 -13.7882 -32.1044 -0.0851 0.41 -1 -1 83.5 MiB 1.36 0.900525 0.772298 83.5 MiB -1 0.14 +soft_fpu_arch_timing.xml bgm.v common 60.02 parmys 257.67 MiB -1 -1 43.09 263856 18 7.15 -1 -1 47244 -1 -1 1479 257 -1 -1 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 98424 257 32 6040 6072 1 3846 1768 41 41 1681 clb auto 55.7 MiB 0.67 136608 31559 920764 325700 583886 11178 96.1 MiB 4.28 0.05 28.1556 12.6901 -5506.58 -12.6901 12.6901 0.00 0.00823797 0.00745153 0.848573 0.704986 -1 -1 -1 -1 53037 13.7973 13649 3.55073 23421 74765 4846056 742834 3.48649e+06 3.39022e+06 3.92715e+06 2336.20 20 90666 782499 -1 12.1348 12.1348 -5104.31 -12.1348 -30.6427 -0.0851 0.55 -1 -1 96.1 MiB 1.45 1.31763 1.11876 96.1 MiB -1 0.18 +soft_fpu_arch_timing.xml dscg.v common 21.73 parmys 118.54 MiB -1 -1 17.10 121384 24 1.26 -1 -1 37208 -1 -1 606 129 -1 -1 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 73408 129 64 2192 2256 1 1520 799 27 27 729 clb auto 32.0 MiB 0.25 37820 13615 252807 71072 169981 11754 71.7 MiB 1.02 0.01 24.7174 16.2048 -1915.25 -16.2048 16.2048 0.00 0.00319424 0.00292766 0.253046 0.226671 -1 -1 -1 -1 23619 15.9912 6076 4.11374 10729 37676 2562082 383443 1.43263e+06 1.38908e+06 1.65895e+06 2275.65 22 39258 331839 -1 14.4972 14.4972 -1770.59 -14.4972 -8.16584 -0.0851 0.23 -1 -1 71.7 MiB 0.66 0.44222 0.396859 71.7 MiB -1 0.07 +soft_fpu_arch_timing.xml fir.v common 18.98 parmys 104.27 MiB -1 -1 16.05 106772 16 0.65 -1 -1 35424 -1 -1 473 161 -1 -1 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 71212 161 32 2044 2076 1 1153 666 24 24 576 clb auto 29.5 MiB 0.16 22592 6905 180900 49669 126169 5062 69.5 MiB 0.57 0.01 16.2554 10.8177 -1611.57 -10.8177 10.8177 0.00 0.00217865 0.00192073 0.148828 0.132433 -1 -1 -1 -1 10858 9.43354 2814 2.44483 5861 16059 1047087 162683 1.10943e+06 1.08421e+06 1.29802e+06 2253.51 24 30996 260004 -1 10.1035 10.1035 -1503.91 -10.1035 -41.9575 -0.0851 0.18 -1 -1 69.5 MiB 0.27 0.263872 0.235975 69.5 MiB -1 0.05 +soft_fpu_arch_timing.xml mm3.v common 12.80 parmys 74.96 MiB -1 -1 11.19 76756 11 0.24 -1 -1 33096 -1 -1 188 193 -1 -1 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 63472 193 32 892 924 1 551 413 21 21 441 io auto 22.3 MiB 0.07 8826 2864 88022 23644 59473 4905 62.0 MiB 0.32 0.00 9.16995 7.25696 -552.465 -7.25696 7.25696 0.00 0.000933453 0.000846072 0.098381 0.0901077 -1 -1 -1 -1 4134 7.53005 1108 2.01821 2160 4743 285352 45613 827486 430936 981244. 2225.04 23 23706 196899 -1 6.70177 6.70177 -514.125 -6.70177 -7.31444 -0.0851 0.13 -1 -1 62.0 MiB 0.10 0.148211 0.135458 62.0 MiB -1 0.05 +soft_fpu_arch_timing.xml ode.v common 26.43 parmys 123.43 MiB -1 -1 13.73 126388 24 3.93 -1 -1 45256 -1 -1 1403 130 -1 -1 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 100336 130 72 5151 5223 1 3359 1605 40 40 1600 clb auto 52.6 MiB 0.64 118795 35523 743652 244138 490210 9304 98.0 MiB 3.58 0.04 28.0949 16.0769 -5246.14 -16.0769 16.0769 0.00 0.00769968 0.00700229 0.751948 0.617028 -1 -1 -1 -1 59826 17.8372 15257 4.54890 23759 85913 6076912 889657 3.30999e+06 3.216e+06 3.73324e+06 2333.28 20 86292 744004 -1 15.2896 15.2896 -4910.83 -15.2896 -56.4251 -0.0851 0.53 -1 -1 98.0 MiB 1.60 1.19686 1.00822 98.0 MiB -1 0.18 +soft_fpu_arch_timing.xml syn2.v common 41.96 parmys 149.56 MiB -1 -1 17.16 153148 24 7.18 -1 -1 43992 -1 -1 2370 161 -1 -1 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 140116 161 128 8330 8458 1 5899 2659 51 51 2601 clb auto 76.2 MiB 1.15 274570 64420 1567764 565755 975262 26747 136.8 MiB 9.02 0.09 39.1135 16.9598 -8268.93 -16.9598 16.9598 0.00 0.0148804 0.0136535 1.56721 1.24827 -1 -1 -1 -1 111825 19.1481 28457 4.87277 45367 166434 11972783 1740291 5.50353e+06 5.43247e+06 6.13592e+06 2359.06 21 140346 1220799 -1 15.9299 15.9299 -7700.02 -15.9299 -28.1506 -0.0851 0.93 -1 -1 136.8 MiB 3.15 2.40226 1.95187 136.8 MiB -1 0.32 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2/titan_other/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2/titan_other/config/golden_results.txt index 2054d1011a1..c2c54f3903c 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2/titan_other/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2/titan_other/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 - stratixiv_arch.timing.xml carpat_stratixiv_arch_timing.blif common 240.41 vpr 1.80 GiB 274 1048 36 59 0 2 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 1886012 22 252 53001 29054 7 22984 1419 89 66 5874 DSP auto 1200.1 MiB 62.75 248316 1021579 298715 629192 93672 1841.8 MiB 68.63 0.51 7.79847 -44076.4 -6.79847 3.16357 0.04 0.165964 0.147061 22.0804 19.3916 348037 15.1637 76678 3.34080 64297 133419 118695520 34142571 0 0 1.08074e+08 18398.6 17 1714760 18504579 -1 8.25872 3.11653 -42832.7 -7.25872 0 0 39.08 -1 -1 1841.8 MiB 30.91 29.1651 25.7894 1841.8 MiB -1 9.35 - stratixiv_arch.timing.xml CH_DFSIN_stratixiv_arch_timing.blif common 221.39 vpr 1.47 GiB 36 1585 10 10 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 1538160 3 33 48977 39238 1 26095 1641 54 40 2160 LAB auto 1221.8 MiB 84.83 286068 978816 295772 657268 25776 1394.2 MiB 66.20 0.76 87.9237 -89444.7 -86.9237 87.9237 0.01 0.146793 0.123189 13.268 11.0829 379754 14.5550 90020 3.45023 82718 219511 74496266 16257762 0 0 3.96436e+07 18353.5 24 632584 6763270 -1 71.937 71.937 -113847 -70.937 0 0 15.28 -1 -1 1448.2 MiB 25.20 20.4884 17.2546 1394.2 MiB -1 3.21 - stratixiv_arch.timing.xml CHERI_stratixiv_arch_timing.blif common 444.61 vpr 1.93 GiB 211 2277 3 210 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 2019520 38 173 62892 59064 3 35370 2701 86 64 5504 M9K auto 1405.6 MiB 170.24 614048 2033317 732647 1250104 50566 1914.9 MiB 137.20 1.11 13.4281 -360550 -12.4281 8.02047 0.05 0.23718 0.189938 28.8989 23.0941 838072 23.6991 190423 5.38481 138127 489921 156343017 30753609 0 0 1.01286e+08 18402.3 18 1602300 17340426 -1 13.7513 7.61228 -381806 -12.7513 0 0 36.15 -1 -1 1914.9 MiB 51.84 41.0998 33.5135 1914.9 MiB -1 8.59 - stratixiv_arch.timing.xml EKF-SLAM_Jacobians_stratixiv_arch_timing.blif common 501.58 vpr 2.01 GiB 574 2786 16 0 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 2102528 4 570 66175 54803 2 39221 3376 91 67 6097 io auto 1442.3 MiB 161.57 637050 2737396 996225 1655508 85663 2024.4 MiB 158.02 1.26 31.0835 -120493 -30.0835 7.14678 0.05 0.240469 0.215113 28.7629 24.2021 899667 22.9413 200386 5.10980 182427 712388 314287781 64497091 0 0 1.12154e+08 18394.9 22 1777086 19206576 -1 31.4681 7.0455 -124410 -30.4681 0 0 40.06 -1 -1 2024.4 MiB 90.83 43.0922 36.5972 2024.4 MiB -1 9.96 - stratixiv_arch.timing.xml fir_cascade_stratixiv_arch_timing.blif common 613.83 vpr 4.71 GiB 40 3697 172 1 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 4942100 19 21 171111 96274 1 69059 3910 194 144 27936 DSP auto 1879.7 MiB 115.33 765653 3945030 1609251 2318045 17734 4826.3 MiB 167.87 1.46 6.56186 -137549 -5.56186 3.59168 0.15 0.576478 0.517383 74.0936 66.3885 885829 12.8277 186548 2.70140 135284 168559 115764486 31200317 0 0 5.18916e+08 18575.2 10 8071764 88644687 -1 6.86266 4.08192 -171393 -5.86266 0 0 170.99 -1 -1 4826.3 MiB 38.25 90.8697 81.8728 4826.3 MiB -1 57.03 - stratixiv_arch.timing.xml jacobi_stratixiv_arch_timing.blif common 331.14 vpr 1.78 GiB 536 1955 7 4 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 1867752 227 309 49176 40422 1 28301 2502 85 63 5355 io auto 1275.0 MiB 118.12 297917 2005906 751440 1231297 23169 1824.0 MiB 109.86 1.00 221.816 -136664 -220.816 221.816 0.03 0.177495 0.149764 22.2953 18.9612 392043 13.8546 93134 3.29130 81629 256552 61785790 11540590 0 0 9.84380e+07 18382.4 20 1549486 16842765 -1 194.877 194.877 -143592 -193.877 0 0 35.33 -1 -1 1824.0 MiB 25.15 30.8256 26.312 1824.0 MiB -1 8.89 - stratixiv_arch.timing.xml JPEG_stratixiv_arch_timing.blif common 254.24 vpr 1.60 GiB 36 1393 8 149 2 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 1675928 3 33 52402 39411 1 26961 1588 73 54 3942 M9K auto 1241.5 MiB 98.93 308817 862861 247827 593176 21858 1636.6 MiB 62.77 0.68 18.2872 -344515 -17.2872 18.2872 0.02 0.157897 0.128343 14.8112 12.1152 431314 16.0024 99151 3.67866 81236 209217 91482078 19724978 0 0 7.26311e+07 18424.9 20 1148308 12423798 -1 18.3421 18.3421 -345738 -17.3421 0 0 26.16 -1 -1 1636.6 MiB 29.12 22.8904 19.0386 1636.6 MiB -1 6.51 - stratixiv_arch.timing.xml leon2_stratixiv_arch_timing.blif common 112.25 vpr 1.21 GiB 251 955 1 17 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 1271072 55 196 20131 19956 1 8273 1224 44 33 1452 io auto 1086.4 MiB 51.28 121891 590184 190135 382049 18000 1219.0 MiB 16.74 0.19 8.00991 -79285.3 -7.00991 8.00991 0.01 0.0547434 0.0433722 5.31094 4.24309 175526 21.2244 41043 4.96288 27288 110050 30231721 5468094 0 0 2.65070e+07 18255.5 16 423692 4510959 -1 8.24194 8.24194 -78833.9 -7.24194 0 0 10.69 -1 -1 1219.0 MiB 10.21 7.91932 6.48482 1219.0 MiB -1 2.12 - stratixiv_arch.timing.xml leon3mp_stratixiv_arch_timing.blif common 255.51 vpr 1.50 GiB 255 2122 1 28 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 1577872 84 171 36458 36247 3 20327 2406 62 46 2852 LAB auto 1227.6 MiB 129.85 282856 1613906 577988 956437 79481 1496.3 MiB 54.24 0.51 12.7635 -89890.6 -11.7635 4.81564 0.02 0.13392 0.10812 13.9969 11.3761 395367 19.4637 87910 4.32777 59014 216498 49458484 8714433 0 0 5.24492e+07 18390.3 15 836198 8956163 -1 12.8132 4.74014 -89522.7 -11.8132 0 0 19.60 -1 -1 1496.3 MiB 18.50 19.7465 16.2691 1496.3 MiB -1 4.60 - stratixiv_arch.timing.xml MCML_stratixiv_arch_timing.blif common 314.95 vpr 2.14 GiB 69 2192 10 295 16 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 2241312 36 33 57796 49182 1 19758 2582 105 78 8190 M9K auto 1352.5 MiB 98.71 254549 2375186 921212 1420848 33126 2188.8 MiB 78.05 0.73 9.75634 -115117 -8.75634 9.75634 0.04 0.165792 0.132975 21.7204 17.5791 406833 20.5960 91948 4.65489 55491 166503 116017937 30967034 0 0 1.50983e+08 18435.1 16 2375962 25880196 -1 8.76007 8.76007 -153174 -7.76007 0 0 52.19 -1 -1 2188.8 MiB 36.04 29.2444 24.0731 2188.8 MiB -1 14.84 - stratixiv_arch.timing.xml MMM_stratixiv_arch_timing.blif common 253.58 vpr 2.06 GiB 478 1233 1 300 4 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 2160324 202 276 35125 30509 3 21219 2016 106 79 8374 M9K auto 1184.1 MiB 78.17 275268 1593266 551386 986614 55266 2109.7 MiB 49.61 0.39 9.2665 -49067 -8.2665 3.57275 0.07 0.132325 0.103283 17.1511 13.6719 420825 19.8381 90110 4.24787 51659 142658 103986450 24159841 0 0 1.54357e+08 18432.8 12 2427254 26454832 -1 9.68883 3.86627 -55338.2 -8.68883 0 0 53.22 -1 -1 2109.7 MiB 28.24 22.2919 18.1524 2109.7 MiB -1 14.60 - stratixiv_arch.timing.xml radar20_stratixiv_arch_timing.blif common 138.75 vpr 1.69 GiB 5 333 31 105 0 2 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 1766856 3 2 14862 10304 26 7583 476 89 66 5874 DSP auto 1033.6 MiB 52.72 124138 182462 49732 129080 3650 1725.4 MiB 10.74 0.10 5.88079 -31819.8 -4.88079 4.5134 0.03 0.0620074 0.052736 6.45505 5.4875 179249 23.7196 37106 4.91015 18387 40581 28916864 7312373 0 0 1.08074e+08 18398.6 14 1714760 18504579 -1 6.28555 4.43959 -39032.4 -5.28555 0 0 38.39 -1 -1 1725.4 MiB 8.42 8.94725 7.69206 1725.4 MiB -1 9.13 - stratixiv_arch.timing.xml random_stratixiv_arch_timing.blif common 306.68 vpr 2.16 GiB 693 1797 25 16 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 2263960 35 658 51416 37539 1 27427 2531 108 80 8640 io auto 1279.4 MiB 81.16 241934 2243861 754419 1344439 145003 2210.9 MiB 89.43 0.73 41.8615 -66574.8 -40.8615 41.8615 0.05 0.188177 0.163426 25.8422 22.4375 341602 13.1806 80002 3.08685 77035 236832 91449571 21610430 0 0 1.59375e+08 18446.1 27 2505018 27321913 -1 38.4065 38.4065 -64812.4 -37.4065 0 0 54.97 -1 -1 2210.9 MiB 32.24 37.3082 32.5377 2210.9 MiB -1 15.05 - stratixiv_arch.timing.xml Reed_Solomon_stratixiv_arch_timing.blif common 210.13 vpr 2.23 GiB 753 1113 5 32 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 2333568 13 740 25173 25306 1 12716 1903 117 87 10179 io auto 1130.7 MiB 61.79 151917 1239643 452352 735278 52013 2278.9 MiB 28.83 0.25 9.32912 -33745.1 -8.32912 8.97758 0.06 0.0738163 0.0638134 8.87581 7.31746 194710 15.3206 43227 3.40129 29693 108615 25829106 4900313 0 0 1.87944e+08 18463.9 12 2952054 32219012 -1 9.94244 8.79357 -35834.6 -8.94244 0 0 64.11 -1 -1 2278.9 MiB 9.60 12.1982 10.2214 2278.9 MiB -1 18.15 - stratixiv_arch.timing.xml smithwaterman_stratixiv_arch_timing.blif common 318.93 vpr 1.67 GiB 117 2338 0 0 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 1755828 79 38 66795 54922 1 35698 2455 65 48 3120 LAB auto 1328.0 MiB 134.18 278809 1724071 544940 1146248 32883 1591.7 MiB 106.67 0.89 10.5464 -202407 -9.54638 10.5464 0.02 0.1746 0.139886 18.8537 15.1957 365710 10.2454 86560 2.42499 84230 195736 44412238 7890024 0 0 5.74574e+07 18415.8 16 913942 9818425 -1 10.2871 10.2871 -211712 -9.28709 0 0 21.78 -1 -1 1628.9 MiB 18.87 26.6694 21.8451 1591.7 MiB -1 4.70 - stratixiv_arch.timing.xml stap_steering_stratixiv_arch_timing.blif common 189.20 vpr 1.66 GiB 213 1565 26 4 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 1740300 139 74 57121 41054 1 24001 1808 75 56 4200 DSP auto 1288.3 MiB 56.40 167389 1300988 426055 839266 35667 1699.5 MiB 56.62 0.52 5.92747 -26440.3 -4.92747 5.12571 0.03 0.163778 0.14022 19.7799 16.8165 226209 9.42655 53807 2.24224 52155 95084 47723189 13084284 0 0 7.74167e+07 18432.5 19 1223026 13250712 -1 6.18889 5.28844 -34182.8 -5.18889 0 0 28.00 -1 -1 1699.5 MiB 17.47 27.5967 23.7139 1699.5 MiB -1 6.59 - stratixiv_arch.timing.xml sudoku_check_stratixiv_arch_timing.blif common 104.87 vpr 1.18 GiB 54 665 0 40 0 1 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 1232208 2 52 16673 16662 2 12027 760 37 27 999 LAB auto 1064.4 MiB 40.46 185817 260785 68816 184545 7424 1165.1 MiB 13.84 0.17 6.43593 -22019.6 -5.43593 5.34219 0.01 0.0663137 0.0529365 5.36329 4.35061 252094 20.9676 58089 4.83149 56425 171226 68372675 13142469 0 0 1.81123e+07 18130.5 18 291844 3070977 -1 6.97302 5.70366 -28347.4 -5.97302 0 0 7.59 -1 -1 1183.7 MiB 20.02 8.72317 7.23639 1165.1 MiB -1 1.32 - stratixiv_arch.timing.xml SURF_desc_stratixiv_arch_timing.blif common 304.15 vpr 1.76 GiB 445 2156 19 52 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 1847692 131 314 57881 45152 1 32833 2672 73 54 3942 io auto 1361.0 MiB 91.84 318946 2041412 717468 1272847 51097 1720.0 MiB 112.21 1.13 221.943 -77080.5 -220.943 221.943 0.03 0.22642 0.192763 26.2516 22.5036 431464 13.1709 103995 3.17455 107179 331669 90059672 17820477 0 0 7.26311e+07 18424.9 19 1148308 12423798 -1 191.341 191.341 -83524.8 -190.341 0 0 25.61 -1 -1 1725.7 MiB 33.11 36.9562 31.8075 1720.0 MiB -1 6.07 - stratixiv_arch.timing.xml ucsb_152_tap_fir_stratixiv_arch_timing.blif common 56.10 vpr 1.16 GiB 42 758 0 0 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 1212332 13 29 26295 20086 1 12439 800 39 29 1131 LAB auto 1061.2 MiB 12.53 72155 253216 50624 190930 11662 1175.4 MiB 10.11 0.14 5.18599 -5515.92 -4.18599 2.85104 0.01 0.0377892 0.0327694 2.93008 2.45256 84093 6.76152 20141 1.61944 25550 34715 9357710 1681121 0 0 2.05929e+07 18207.7 16 331560 3499109 -1 5.29142 2.82099 -5638.13 -4.29142 0 0 8.59 -1 -1 1175.4 MiB 3.99 4.67756 3.97624 1175.4 MiB -1 1.60 - stratixiv_arch.timing.xml uoft_raytracer_stratixiv_arch_timing.blif common 339.18 vpr 2.90 GiB 964 1119 19 34 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 3043528 542 422 37277 26038 1 20403 2136 147 109 16023 io auto 1148.5 MiB 79.64 272838 1734636 659517 1007756 67363 2972.2 MiB 73.93 0.61 8.43041 -42423.1 -7.43041 8.08995 0.09 0.114426 0.101345 15.7114 13.3677 363091 17.7986 78522 3.84912 59722 139345 87871064 23006283 0 0 2.96647e+08 18513.8 19 4640960 50771684 -1 8.69484 7.49966 -42054.1 -7.69484 0 0 99.20 -1 -1 2972.2 MiB 24.86 21.4146 18.4508 2972.2 MiB -1 30.90 - stratixiv_arch.timing.xml wb_conmax_stratixiv_arch_timing.blif common 287.28 vpr 3.37 GiB 1107 725 0 0 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 3531216 403 704 15490 16194 1 8534 1832 167 124 20708 io auto 1059.1 MiB 60.75 187193 1324022 523278 764997 35747 3448.5 MiB 22.39 0.20 12.7682 -23323.6 -11.7682 6.27217 0.13 0.0592033 0.0490591 7.25586 6.09591 231524 27.1328 38817 4.54905 24809 96129 21440863 3812157 0 0 3.84009e+08 18544.0 14 5987112 65598998 -1 12.9996 6.14541 -26165.8 -11.9996 0 0 128.07 -1 -1 3448.5 MiB 8.23 9.74816 8.27075 3448.5 MiB -1 40.93 - stratixiv_arch.timing.xml picosoc_stratixiv_arch_timing.blif common 104.00 vpr 1.15 GiB 35 739 0 6 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 1206076 18 17 16969 16357 1 6288 780 39 29 1131 LAB auto 1055.9 MiB 57.16 84377 244832 62116 178083 4633 1170.5 MiB 9.34 0.14 7.65805 -46422.6 -6.65805 7.65805 0.01 0.0407227 0.0346923 3.31901 2.66458 119256 18.9777 28323 4.50716 18857 88786 20657004 3728094 0 0 2.05929e+07 18207.7 16 331560 3499109 -1 7.35046 7.35046 -45160 -6.35046 0 0 8.61 -1 -1 1170.5 MiB 7.38 5.40776 4.46635 1170.5 MiB -1 1.72 - stratixiv_arch.timing.xml murax_stratixiv_arch_timing.blif common 25.34 vpr 990.99 MiB 35 78 0 8 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 1014772 18 17 2291 2142 1 1448 121 16 12 192 LAB M9K auto 952.6 MiB 5.77 10189 9390 1103 7334 953 991.0 MiB 0.58 0.01 5.3129 -4153.14 -4.3129 4.5918 0.00 0.00761951 0.00626889 0.283964 0.242647 14035 9.71280 3656 2.53010 3331 8155 2407464 497474 0 0 3.34790e+06 17437.0 10 54372 558374 -1 5.45077 4.46245 -3957.23 -4.45077 0 0 1.88 -1 -1 991.0 MiB 0.85 0.560139 0.494736 991.0 MiB -1 0.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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est 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 178.61 vpr 1.76 GiB 274 1042 36 59 0 2 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 1847720 22 252 53001 29054 7 22943 1413 89 66 5874 DSP auto 1238.2 MiB 42.50 785441 248898 952533 277008 615830 59695 1804.4 MiB 60.09 0.44 11.048 8.33765 -44315.5 -7.33765 3.31053 0.04 0.128285 0.116554 17.2068 14.794 345230 15.0683 75298 3.28654 62048 127819 110428826 31460146 0 0 1.08074e+08 18398.6 15 1714760 18504579 -1 8.80295 3.22112 -43540.1 -7.80295 0 0 18.55 -1 -1 1804.4 MiB 24.74 22.4983 19.5519 1804.4 MiB -1 10.19 +stratixiv_arch.timing.xml CH_DFSIN_stratixiv_arch_timing.blif common 183.59 vpr 1.47 GiB 36 1580 9 10 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 1544388 3 33 48977 39238 1 26189 1635 54 40 2160 LAB auto 1259.6 MiB 55.70 913357 292251 954807 280946 652655 21206 1395.6 MiB 73.67 0.73 102.633 87.8923 -93476.3 -86.8923 87.8923 0.01 0.118889 0.106403 14.8002 11.9745 394383 15.0614 93195 3.55910 86770 233493 79349155 17261071 0 0 3.96436e+07 18353.5 23 632584 6763270 -1 72.672 72.672 -124485 -71.672 0 0 6.59 -1 -1 1452.7 MiB 22.92 22.128 18.2926 1395.6 MiB -1 3.32 +stratixiv_arch.timing.xml CHERI_stratixiv_arch_timing.blif common 360.80 vpr 1.93 GiB 211 2281 3 210 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 2019012 38 173 62892 59064 3 35490 2705 86 64 5504 M9K auto 1470.0 MiB 114.27 1 617052 1999639 700440 1267006 32193 1878.2 MiB 144.11 1.11 27.1546 13.437 -358967 -12.437 8.02334 0.03 0.255174 0.196212 28.7307 22.3941 840456 23.6868 190561 5.37064 140639 501599 160003214 31544854 0 0 1.01286e+08 18402.3 17 1602300 17340426 -1 13.7513 7.61025 -381512 -12.7513 0 0 17.59 -1 -1 1878.2 MiB 44.84 40.0468 32.041 1878.2 MiB -1 9.80 +stratixiv_arch.timing.xml EKF-SLAM_Jacobians_stratixiv_arch_timing.blif common 429.97 vpr 2.01 GiB 574 2788 16 0 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 2105408 4 570 66175 54803 2 39253 3378 91 67 6097 io auto 1502.0 MiB 105.57 2 646400 2739558 982870 1670046 86642 1985.6 MiB 156.66 1.38 58.3021 30.6995 -120781 -29.6995 6.48152 0.05 0.223098 0.200113 28.6722 23.0036 931853 23.7427 207645 5.29059 202723 808343 408786124 86440105 0 0 1.12154e+08 18394.9 27 1777086 19206576 -1 31.3244 7.0356 -126420 -30.3244 0 0 19.29 -1 -1 1985.6 MiB 106.14 43.9459 35.9936 1985.6 MiB -1 10.50 +stratixiv_arch.timing.xml fir_cascade_stratixiv_arch_timing.blif common 461.22 vpr 4.63 GiB 40 3707 172 1 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 4858904 19 21 171111 96274 1 69189 3920 194 144 27936 DSP auto 2000.7 MiB 72.95 3 736062 3896690 1544963 2334548 17179 4745.0 MiB 155.85 1.54 8.95431 5.9973 -144922 -4.9973 3.38229 0.14 0.421582 0.369844 55.986 49.4464 859407 12.4217 180010 2.60183 139067 172677 119021364 31947616 0 0 5.18916e+08 18575.2 11 8071764 88644687 -1 6.22445 3.66474 -172467 -5.22445 0 0 88.40 -1 -1 4745.0 MiB 32.65 69.5002 61.9431 4745.0 MiB -1 63.83 +stratixiv_arch.timing.xml jacobi_stratixiv_arch_timing.blif common 260.17 vpr 1.74 GiB 536 1945 7 4 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 1828096 227 309 49176 40422 1 28286 2492 85 63 5355 io auto 1318.3 MiB 72.97 1 294102 1944612 718689 1202581 23342 1785.2 MiB 111.92 1.21 334.944 219.151 -136355 -218.151 219.151 0.04 0.23177 0.185498 22.1292 17.849 386971 13.6826 91633 3.23998 84451 274893 65203744 12074645 0 0 9.84380e+07 18382.4 20 1549486 16842765 -1 190.784 190.784 -152276 -189.784 0 0 16.46 -1 -1 1785.2 MiB 23.98 31.3417 25.6009 1785.2 MiB -1 8.74 +stratixiv_arch.timing.xml JPEG_stratixiv_arch_timing.blif common 201.52 vpr 1.60 GiB 36 1395 8 151 2 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 1677448 3 33 52402 39411 1 26915 1592 74 55 4070 M9K auto 1283.6 MiB 64.51 1 313744 856456 241378 601294 13784 1614.5 MiB 64.76 0.67 26.6374 18.392 -352998 -17.392 18.392 0.02 0.161927 0.129227 15.3284 12.2977 436799 16.2337 99324 3.69138 82951 220275 101115757 21740280 0 0 7.49652e+07 18419.0 23 1184216 12823585 -1 18.4565 18.4565 -355164 -17.4565 0 0 12.45 -1 -1 1614.5 MiB 28.40 23.2769 19.1718 1614.5 MiB -1 6.95 +stratixiv_arch.timing.xml leon2_stratixiv_arch_timing.blif common 86.54 vpr 1.22 GiB 251 958 1 17 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 1278736 55 196 20131 19956 1 8019 1227 44 33 1452 io auto 1106.9 MiB 34.97 264174 123065 585601 181370 380069 24162 1221.6 MiB 16.77 0.15 11.4541 8.37477 -85221.8 -7.37477 8.37477 0.01 0.0459827 0.0401336 6.12669 4.71993 177766 22.1764 41334 5.15644 28198 129628 35934453 6384347 0 0 2.65070e+07 18255.5 15 423692 4510959 -1 8.33268 8.33268 -83249.9 -7.33269 0 0 4.84 -1 -1 1221.6 MiB 9.62 8.49386 6.75426 1221.6 MiB -1 3.41 +stratixiv_arch.timing.xml leon3mp_stratixiv_arch_timing.blif common 191.79 vpr 1.52 GiB 255 2083 1 28 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 1590420 84 171 36458 36247 3 20790 2367 61 45 2745 LAB auto 1267.3 MiB 81.45 720648 283198 1531863 524079 936471 71313 1468.0 MiB 59.69 0.47 18.575 13.0627 -93585.1 -12.0627 4.74826 0.02 0.133751 0.101046 16.6759 12.8291 395382 19.0307 88123 4.24158 61626 220577 49685974 8803747 0 0 5.05019e+07 18397.8 16 806090 8625815 -1 13.3875 4.68835 -94249.2 -12.3875 0 0 8.71 -1 -1 1486.0 MiB 15.75 22.1054 17.4525 1468.0 MiB -1 4.73 +stratixiv_arch.timing.xml MCML_stratixiv_arch_timing.blif common 242.56 vpr 2.10 GiB 69 2179 10 295 16 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 2203044 36 33 57796 49182 1 19635 2569 105 78 8190 M9K auto 1407.4 MiB 66.69 791464 250120 2359227 910890 1421031 27306 2151.4 MiB 69.03 0.59 16.1586 10.1368 -104381 -9.13679 10.1368 0.04 0.150021 0.116231 19.0365 14.944 404831 20.6231 91490 4.66072 55298 173053 127957013 34281032 0 0 1.50983e+08 18435.1 14 2375962 25880196 -1 9.14404 9.14404 -149500 -8.14404 0 0 26.91 -1 -1 2151.4 MiB 36.76 25.2394 20.3316 2151.4 MiB -1 15.86 +stratixiv_arch.timing.xml MMM_stratixiv_arch_timing.blif common 194.04 vpr 2.02 GiB 478 1237 1 300 4 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 2120592 202 276 35125 30509 3 21318 2020 106 79 8374 M9K auto 1222.0 MiB 50.40 986671 267666 1508172 523381 949193 35598 2070.9 MiB 49.00 0.39 11.3759 9.26548 -48475.6 -8.26548 3.33529 0.04 0.141226 0.106959 15.9435 12.2592 429424 20.1494 89684 4.20815 53710 152511 120492230 28061271 0 0 1.54357e+08 18432.8 13 2427254 26454832 -1 9.61434 3.56952 -53683.9 -8.61434 0 0 25.62 -1 -1 2070.9 MiB 29.72 20.7976 16.4493 2070.9 MiB -1 16.05 +stratixiv_arch.timing.xml radar20_stratixiv_arch_timing.blif common 85.25 vpr 1.65 GiB 5 323 31 105 0 2 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 1726980 3 2 14862 10304 26 7561 466 89 66 5874 DSP auto 1055.0 MiB 19.84 270018 117214 172036 45994 123462 2580 1686.5 MiB 10.03 0.10 9.28243 6.01869 -39114.1 -5.01869 4.08518 0.05 0.0630093 0.0580388 6.722 5.63193 170213 22.5896 35826 4.75461 18131 39933 29145420 7349754 0 0 1.08074e+08 18398.6 16 1714760 18504579 -1 6.15886 4.10146 -48278.1 -5.15886 0 0 18.54 -1 -1 1686.5 MiB 8.34 9.0919 7.75971 1686.5 MiB -1 10.44 +stratixiv_arch.timing.xml random_stratixiv_arch_timing.blif common 244.08 vpr 2.11 GiB 693 1777 25 16 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 2215808 35 658 51416 37539 1 27424 2511 108 80 8640 io auto 1315.7 MiB 54.87 1 251917 2152071 724984 1286743 140344 2163.9 MiB 89.22 0.66 74.2949 42.7394 -67262.7 -41.7394 42.7394 0.11 0.164209 0.133322 22.9478 19.0876 358128 13.8204 82658 3.18983 77956 237354 113781969 26958054 0 0 1.59375e+08 18446.1 20 2505018 27321913 -1 40.4536 40.4536 -65567.3 -39.4536 0 0 28.03 -1 -1 2163.9 MiB 29.51 30.9219 26.042 2163.9 MiB -1 17.15 +stratixiv_arch.timing.xml Reed_Solomon_stratixiv_arch_timing.blif common 150.60 vpr 2.18 GiB 753 1100 5 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 2288012 13 740 25173 25306 1 12838 1890 117 87 10179 io auto 1157.0 MiB 38.37 599292 157888 1216610 423982 737752 54876 2234.4 MiB 31.48 0.38 14.8829 8.76456 -34576 -7.76456 8.70409 0.05 0.180848 0.151857 10.946 8.66397 200775 15.6476 43818 3.41501 31234 113917 27219910 5157022 0 0 1.87944e+08 18463.9 11 2952054 32219012 -1 9.15588 8.09218 -36950.2 -8.15588 0 0 31.40 -1 -1 2234.4 MiB 9.82 14.7216 11.9704 2234.4 MiB -1 19.18 +stratixiv_arch.timing.xml smithwaterman_stratixiv_arch_timing.blif common 279.74 vpr 1.68 GiB 117 2311 0 0 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 1764116 79 38 66795 54922 1 35224 2428 64 47 3008 LAB auto 1380.9 MiB 97.02 1 268287 1649940 503404 1107473 39063 1560.8 MiB 122.78 1.01 22.8938 10.5192 -202497 -9.51918 10.5192 0.03 0.17581 0.134211 21.3606 16.582 359112 10.1960 84742 2.40601 85648 207489 45894038 8018949 0 0 5.53261e+07 18393.0 17 880106 9448176 -1 10.0961 10.0961 -210217 -9.09605 0 0 9.73 -1 -1 1634.6 MiB 17.85 29.5446 23.5411 1560.8 MiB -1 6.71 +stratixiv_arch.timing.xml stap_steering_stratixiv_arch_timing.blif common 159.55 vpr 1.66 GiB 213 1559 26 4 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 1735592 139 74 57121 41054 1 23901 1802 75 56 4200 DSP auto 1330.0 MiB 48.81 657536 162365 1295200 408181 790147 96872 1664.2 MiB 48.99 0.37 8.96007 5.38815 -26383.2 -4.38815 5.13107 0.03 0.141819 0.116205 18.2948 15.2438 222037 9.29142 53200 2.22622 52616 96447 52913821 14348789 0 0 7.74167e+07 18432.5 22 1223026 13250712 -1 5.68048 5.58104 -33396.3 -4.68048 0 0 13.08 -1 -1 1664.2 MiB 16.85 25.8551 21.9463 1664.2 MiB -1 9.19 +stratixiv_arch.timing.xml sudoku_check_stratixiv_arch_timing.blif common 82.77 vpr 1.18 GiB 54 664 0 40 0 1 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 1232808 2 52 16673 16662 2 11970 759 37 27 999 LAB auto 1087.4 MiB 26.11 329275 182496 253339 66599 180853 5887 1148.2 MiB 14.60 0.17 8.48983 6.31912 -21812.1 -5.31912 5.08034 0.00 0.074231 0.0564117 6.79754 5.19634 250865 20.9648 57898 4.83854 58768 177050 72729449 14016095 0 0 1.81123e+07 18130.5 23 291844 3070977 -1 6.7711 5.47952 -27099.2 -5.7711 0 0 3.13 -1 -1 1183.7 MiB 20.25 10.785 8.59916 1148.2 MiB -1 1.43 +stratixiv_arch.timing.xml SURF_desc_stratixiv_arch_timing.blif common 245.81 vpr 1.76 GiB 445 2154 19 52 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 1844232 131 314 57881 45152 1 32883 2670 73 54 3942 io auto 1411.7 MiB 65.76 1 312017 2002290 686807 1268658 46825 1677.7 MiB 109.35 1.05 300.2 218.773 -77846.7 -217.773 218.773 0.02 0.21645 0.176361 24.8335 20.3604 424105 12.9277 102692 3.13028 95928 287321 76027554 15229747 0 0 7.26311e+07 18424.9 19 1148308 12423798 -1 188.497 188.497 -81903 -187.497 0 0 12.10 -1 -1 1722.3 MiB 24.63 34.6185 28.8296 1677.7 MiB -1 6.42 +stratixiv_arch.timing.xml ucsb_152_tap_fir_stratixiv_arch_timing.blif common 39.89 vpr 1.16 GiB 42 749 0 0 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 1213812 13 29 26295 20086 1 12646 791 39 29 1131 LAB auto 1076.6 MiB 8.33 231619 75107 234775 43541 180854 10380 1154.1 MiB 7.86 0.12 5.55061 5.16398 -5504.03 -4.16398 2.86102 0.01 0.0346728 0.0315016 2.55631 2.11207 87307 6.90501 21230 1.67906 25811 34329 9106433 1637889 0 0 2.05929e+07 18207.7 13 331560 3499109 -1 5.36451 2.98815 -5707.14 -4.36451 0 0 3.52 -1 -1 1154.1 MiB 2.97 3.92388 3.31697 1154.1 MiB -1 1.75 +stratixiv_arch.timing.xml uoft_raytracer_stratixiv_arch_timing.blif common 238.04 vpr 2.84 GiB 964 1128 19 34 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 2977992 542 422 37277 26038 1 20404 2145 147 109 16023 io auto 1177.8 MiB 44.59 995805 278436 1702989 641501 993647 67841 2908.2 MiB 67.11 0.55 15.3312 8.52855 -42700.6 -7.52855 8.52855 0.08 0.114495 0.0943344 13.8846 11.2931 366845 17.9817 79354 3.88971 59969 138893 83433972 21922666 0 0 2.96647e+08 18513.8 16 4640960 50771684 -1 8.80841 8.09503 -43016.6 -7.80841 0 0 49.33 -1 -1 2908.2 MiB 20.08 18.2048 15.1189 2908.2 MiB -1 33.93 +stratixiv_arch.timing.xml wb_conmax_stratixiv_arch_timing.blif common 193.02 vpr 3.31 GiB 1107 730 0 0 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 3470396 403 704 15490 16194 1 8443 1837 167 124 20708 io auto 1075.8 MiB 34.73 580890 183895 1261389 465912 759977 35500 3389.1 MiB 18.07 0.17 21.2837 12.8498 -23740.4 -11.8498 6.01594 0.10 0.0528114 0.0410491 6.17736 4.93541 224259 26.5647 38487 4.55899 24297 97387 21330701 3812192 0 0 3.84009e+08 18544.0 15 5987112 65598998 -1 12.926 6.10097 -26548.2 -11.926 0 0 67.11 -1 -1 3389.1 MiB 6.81 8.38896 6.88343 3389.1 MiB -1 42.72 +stratixiv_arch.timing.xml picosoc_stratixiv_arch_timing.blif common 70.04 vpr 1.15 GiB 35 731 0 6 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 1207840 18 17 16969 16357 1 6487 772 39 29 1131 LAB auto 1073.0 MiB 36.26 189359 78593 245032 60572 181809 2651 1152.0 MiB 7.48 0.10 11.1993 7.7388 -41982.4 -6.7388 7.7388 0.01 0.0332386 0.029294 2.91938 2.29769 110899 17.1061 26415 4.07450 17887 72077 17797147 3208881 0 0 2.05929e+07 18207.7 15 331560 3499109 -1 7.33297 7.33297 -42468.1 -6.33297 0 0 3.48 -1 -1 1152.0 MiB 5.47 4.80593 3.95088 1152.0 MiB -1 1.69 +stratixiv_arch.timing.xml murax_stratixiv_arch_timing.blif common 18.29 vpr 996.38 MiB 35 75 0 8 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 1020288 18 17 2291 2142 1 1462 118 16 12 192 LAB M9K auto 957.8 MiB 3.91 14517 10381 9366 1088 7475 803 996.4 MiB 0.42 0.01 5.48653 5.31416 -4115.07 -4.31416 4.57209 0.00 0.00501658 0.00449989 0.221669 0.187533 14025 9.61275 3676 2.51953 3452 8267 2478011 514688 0 0 3.34790e+06 17437.0 11 54372 558374 -1 5.3112 4.28994 -4036.36 -4.3112 0 0 0.63 -1 -1 996.4 MiB 0.69 0.457712 0.406639 996.4 MiB -1 0.08 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 ad32242d902..a5b66d2ee80 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2/vtr_bidir/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2/vtr_bidir/config/golden_results.txt @@ -1,41 +1,41 @@ - arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - k4_n4_v7_bidir.xml alu4.blif common 11.61 vpr 67.56 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 490 14 -1 -1 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 69184 14 8 1536 1544 0 1075 512 25 25 625 clb auto 27.3 MiB 0.36 13907 125379 37375 86426 1578 67.6 MiB 0.92 0.01 13.7808 -101.412 -13.7808 nan 0.38 0.00351706 0.00307653 0.230026 0.203296 -1 -1 -1 -1 26 21244 40 1.587e+07 1.47e+07 -1 -1 7.83 1.39924 1.1896 22338 287359 -1 19467 17 6635 26447 1985465 198804 17.3063 nan -123.659 -17.3063 0 0 -1 -1 0.05 0.39 0.12 -1 -1 0.05 0.105099 0.0941024 - k4_n4_v7_bidir.xml apex2.blif common 22.22 vpr 70.01 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 626 38 -1 -1 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 71692 38 3 1916 1919 0 1483 667 28 28 784 clb auto 29.5 MiB 0.29 19984 195838 60682 130920 4236 70.0 MiB 1.45 0.02 17.0385 -49.2963 -17.0385 nan 0.49 0.00449691 0.00389108 0.328393 0.287877 -1 -1 -1 -1 28 30181 48 2.028e+07 1.878e+07 -1 -1 17.00 1.80013 1.5249 28758 383844 -1 28376 15 9150 33071 2590424 247096 20.7907 nan -60.2269 -20.7907 0 0 -1 -1 0.07 0.68 0.22 -1 -1 0.07 0.170018 0.15064 - k4_n4_v7_bidir.xml apex4.blif common 9.32 vpr 64.72 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 434 9 -1 -1 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 66272 9 19 1271 1290 0 989 462 23 23 529 clb auto 25.3 MiB 0.38 13918 105777 29780 74317 1680 64.7 MiB 0.80 0.01 13.9047 -226.083 -13.9047 nan 0.32 0.00309616 0.00274963 0.190094 0.170268 -1 -1 -1 -1 31 20642 28 1.323e+07 1.302e+07 -1 -1 5.45 1.02556 0.874569 20514 283063 -1 19844 22 7738 30852 2604644 234674 16.6245 nan -269.64 -16.6245 0 0 -1 -1 0.05 0.64 0.16 -1 -1 0.05 0.148675 0.128977 - k4_n4_v7_bidir.xml bigkey.blif common 11.94 vpr 70.33 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 492 229 -1 -1 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 72020 229 197 2152 2349 1 1586 918 29 29 841 io auto 29.9 MiB 0.37 13173 415605 135003 270551 10051 70.3 MiB 2.27 0.03 7.81345 -1868.02 -7.81345 7.81345 0.52 0.0065376 0.00583609 0.598798 0.540386 -1 -1 -1 -1 18 19586 48 2.187e+07 1.476e+07 -1 -1 5.81 2.28089 2.02935 25794 279159 -1 18213 18 8082 24448 1355876 164744 9.41024 9.41024 -2355.47 -9.41024 0 0 -1 -1 0.05 0.56 0.16 -1 -1 0.05 0.23271 0.207395 - k4_n4_v7_bidir.xml clma.blif common 111.22 vpr 201.37 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2648 62 -1 -1 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 206200 62 82 8460 8542 1 6288 2792 54 54 2916 clb auto 75.5 MiB 2.26 106658 1830428 722593 1094428 13407 201.4 MiB 14.42 0.15 27.2182 -1339.27 -27.2182 27.2182 2.09 0.0213137 0.0174867 2.12276 1.76542 -1 -1 -1 -1 36 141908 31 8.112e+07 7.944e+07 -1 -1 77.84 9.38964 7.64653 120708 1865668 -1 137505 19 39620 150199 14663994 1348289 32.9328 32.9328 -1696.22 -32.9328 0 0 -1 -1 0.42 4.22 1.10 -1 -1 0.42 1.02992 0.874094 - k4_n4_v7_bidir.xml des.blif common 12.45 vpr 73.90 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 484 256 -1 -1 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 75676 256 245 1847 2092 0 1412 985 34 34 1156 io auto 28.8 MiB 0.47 16647 378208 121053 242540 14615 73.9 MiB 1.97 0.03 12.9369 -2198.65 -12.9369 nan 0.75 0.00633861 0.00581167 0.523122 0.480492 -1 -1 -1 -1 18 23173 26 3.072e+07 1.452e+07 -1 -1 5.70 2.0657 1.87447 35364 387024 -1 21989 19 8778 32560 2141080 246703 15.131 nan -2729.2 -15.131 0 0 -1 -1 0.07 0.71 0.23 -1 -1 0.07 0.271271 0.249347 - k4_n4_v7_bidir.xml diffeq.blif common 7.63 vpr 67.86 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 439 64 -1 -1 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 69484 64 39 1935 1974 1 1077 542 23 23 529 clb auto 28.0 MiB 0.35 10284 139709 36550 99088 4071 67.9 MiB 1.01 0.02 13.3471 -2484.01 -13.3471 13.3471 0.32 0.00419252 0.00369096 0.286261 0.253568 -1 -1 -1 -1 20 14214 22 1.323e+07 1.317e+07 -1 -1 3.69 1.10599 0.957164 16818 186659 -1 13852 17 5686 19604 1108385 127625 15.0107 15.0107 -3068.04 -15.0107 0 0 -1 -1 0.03 0.41 0.10 -1 -1 0.03 0.166567 0.14676 - k4_n4_v7_bidir.xml dsip.blif common 12.60 vpr 68.01 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 443 229 -1 -1 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 69640 229 197 1815 2012 1 1190 869 29 29 841 io auto 27.9 MiB 0.38 11973 394644 125240 259207 10197 68.0 MiB 2.08 0.03 7.81345 -1864.07 -7.81345 7.81345 0.53 0.00544034 0.00496078 0.530962 0.484759 -1 -1 -1 -1 16 17634 29 2.187e+07 1.329e+07 -1 -1 6.87 1.81366 1.63082 24114 234671 -1 15615 17 6539 22470 1305981 155172 8.39336 8.39336 -2240 -8.39336 0 0 -1 -1 0.05 0.52 0.14 -1 -1 0.05 0.212997 0.192439 - k4_n4_v7_bidir.xml elliptic.blif common 38.32 vpr 90.62 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1023 131 -1 -1 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 92796 131 114 4855 4969 1 2112 1268 34 34 1156 clb auto 44.4 MiB 0.81 32596 556928 195696 354146 7086 90.6 MiB 3.80 0.04 24.1099 -12023.9 -24.1099 24.1099 0.75 0.0102584 0.0091465 0.934203 0.802866 -1 -1 -1 -1 30 49231 36 3.072e+07 3.069e+07 -1 -1 27.40 4.62906 3.90641 44604 633776 -1 42934 20 10387 48413 3768591 351570 30.2109 30.2109 -15345.5 -30.2109 0 0 -1 -1 0.12 1.35 0.36 -1 -1 0.12 0.495156 0.424841 - k4_n4_v7_bidir.xml ex1010.blif common 62.13 vpr 121.14 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1563 10 -1 -1 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 124048 10 10 4608 4618 0 3574 1583 42 42 1764 clb auto 49.1 MiB 1.14 45921 757787 273354 482875 1558 121.1 MiB 6.22 0.07 24.867 -238.877 -24.867 nan 1.19 0.012262 0.0108187 1.08065 0.899545 -1 -1 -1 -1 26 68475 43 4.8e+07 4.689e+07 -1 -1 46.05 4.57249 3.76639 62610 833692 -1 64752 18 24374 99160 6613607 701101 30.222 nan -281.378 -30.222 0 0 -1 -1 0.17 1.93 0.48 -1 -1 0.17 0.456049 0.397848 - k4_n4_v7_bidir.xml ex5p.blif common 10.46 vpr 63.45 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 367 8 -1 -1 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 64976 8 63 1072 1135 0 898 438 22 22 484 clb auto 24.1 MiB 0.28 12146 90186 23768 64733 1685 63.5 MiB 0.65 0.01 13.0939 -572.821 -13.0939 nan 0.29 0.00283248 0.00253802 0.163928 0.147946 -1 -1 -1 -1 30 18611 31 1.2e+07 1.101e+07 -1 -1 7.08 1.12368 0.966503 18780 258080 -1 16902 22 7677 27841 2272527 218032 15.2991 nan -713.758 -15.2991 0 0 -1 -1 0.04 0.54 0.14 -1 -1 0.04 0.134047 0.117306 - k4_n4_v7_bidir.xml frisc.blif common 38.85 vpr 97.48 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1094 20 -1 -1 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 99824 20 116 4445 4561 1 2290 1230 36 36 1296 clb auto 44.1 MiB 0.99 37881 521603 180411 331963 9229 97.5 MiB 3.86 0.05 26.8202 -13903.6 -26.8202 26.8202 0.87 0.0102599 0.00917768 0.898452 0.776935 -1 -1 -1 -1 32 53318 28 3.468e+07 3.282e+07 -1 -1 27.16 4.18198 3.52615 51266 747164 -1 50100 20 13055 62295 4926128 476378 30.0915 30.0915 -16608.9 -30.0915 0 0 -1 -1 0.15 1.48 0.42 -1 -1 0.15 0.457164 0.39497 - k4_n4_v7_bidir.xml misex3.blif common 9.98 vpr 65.83 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 450 14 -1 -1 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 67408 14 14 1411 1425 0 1056 478 24 24 576 clb auto 26.2 MiB 0.37 13796 110690 30564 78259 1867 65.8 MiB 0.85 0.01 13.1269 -168.734 -13.1269 nan 0.36 0.00342497 0.00303222 0.219069 0.194505 -1 -1 -1 -1 26 21634 42 1.452e+07 1.35e+07 -1 -1 6.05 0.997106 0.851832 20598 264060 -1 19608 17 6511 24644 1933803 195879 17.4098 nan -216.951 -17.4098 0 0 -1 -1 0.05 0.51 0.15 -1 -1 0.05 0.13661 0.11998 - k4_n4_v7_bidir.xml pdc.blif common 44.50 vpr 128.24 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1606 16 -1 -1 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 131316 16 40 4591 4631 0 3616 1662 43 43 1849 clb auto 50.4 MiB 1.52 70823 847902 321209 521330 5363 125.7 MiB 4.92 0.05 23.2596 -828.944 -23.2596 nan 1.00 0.00841282 0.00666783 0.783661 0.629777 -1 -1 -1 -1 43 102107 34 5.043e+07 4.818e+07 -1 -1 28.07 3.94383 3.22568 85938 1423039 -1 93998 18 22530 96951 9514643 817700 28.4929 nan -968.631 -28.4929 0 0 -1 -1 0.34 2.50 0.85 -1 -1 0.34 0.514949 0.447331 - k4_n4_v7_bidir.xml s298.blif common 11.79 vpr 70.21 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 573 4 -1 -1 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 71900 4 6 1942 1948 1 1167 583 26 26 676 clb auto 29.9 MiB 0.37 13731 153925 45496 107368 1061 70.2 MiB 1.21 0.02 22.8024 -174.336 -22.8024 22.8024 0.43 0.00495495 0.00447367 0.342306 0.301958 -1 -1 -1 -1 23 22316 43 1.728e+07 1.719e+07 -1 -1 6.89 1.66157 1.4153 22796 276132 -1 19575 20 6968 37799 2544526 246480 26.5962 26.5962 -218.415 -26.5962 0 0 -1 -1 0.05 0.76 0.16 -1 -1 0.05 0.215817 0.187595 - k4_n4_v7_bidir.xml s38417.blif common 56.36 vpr 153.38 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1852 29 -1 -1 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 157060 29 106 7534 7640 1 4623 1987 46 46 2116 clb auto 61.7 MiB 1.50 47120 1100755 398762 686220 15773 153.4 MiB 8.62 0.10 17.0693 -10670.2 -17.0693 17.0693 1.49 0.0162359 0.0142566 1.60568 1.33906 -1 -1 -1 -1 20 64477 44 5.808e+07 5.556e+07 -1 -1 35.59 6.83387 5.57107 66566 774700 -1 61499 21 26109 89230 5425163 617233 21.8055 21.8055 -13475.3 -21.8055 0 0 -1 -1 0.17 2.13 0.45 -1 -1 0.17 0.834679 0.70784 - k4_n4_v7_bidir.xml s38584.1.blif common 34.26 vpr 145.84 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1787 38 -1 -1 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 149340 38 304 7475 7779 1 4320 2129 45 45 2025 clb auto 61.7 MiB 1.46 43523 1261609 468867 769100 23642 145.8 MiB 9.25 0.10 14.2895 -8834.77 -14.2895 14.2895 1.38 0.0164363 0.0135273 1.9198 1.57751 -1 -1 -1 -1 22 56507 39 5.547e+07 5.361e+07 -1 -1 14.13 6.24617 5.16218 65746 795487 -1 53443 14 19463 62781 3400798 392488 16.6132 16.6132 -10472.1 -16.6132 0 0 -1 -1 0.16 1.39 0.45 -1 -1 0.16 0.603539 0.525069 - k4_n4_v7_bidir.xml seq.blif common 16.11 vpr 69.16 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 567 41 -1 -1 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 70820 41 35 1791 1826 0 1347 643 26 26 676 clb auto 28.6 MiB 0.45 18350 178179 53492 120210 4477 69.2 MiB 1.27 0.02 13.9603 -407.385 -13.9603 nan 0.41 0.00424711 0.00368813 0.298257 0.260714 -1 -1 -1 -1 30 27234 30 1.728e+07 1.701e+07 -1 -1 11.02 1.74536 1.48094 26172 364912 -1 25057 20 8509 31894 2435484 232013 16.69 nan -479.986 -16.69 0 0 -1 -1 0.07 0.71 0.21 -1 -1 0.07 0.195294 0.17145 - k4_n4_v7_bidir.xml spla.blif common 59.03 vpr 105.32 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1282 16 -1 -1 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 107844 16 46 3706 3752 0 2852 1344 38 38 1444 clb auto 43.1 MiB 1.07 49392 594464 213328 377715 3421 105.3 MiB 4.63 0.05 20.6968 -701.437 -20.6968 nan 0.96 0.0109368 0.00975249 0.883005 0.740731 -1 -1 -1 -1 36 72996 40 3.888e+07 3.846e+07 -1 -1 45.25 4.17045 3.44653 59972 912004 -1 69746 21 19571 87523 9218620 820248 24.7304 nan -857.824 -24.7304 0 0 -1 -1 0.19 2.25 0.51 -1 -1 0.19 0.461129 0.395755 - k4_n4_v7_bidir.xml tseng.blif common 7.30 vpr 64.55 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 292 52 -1 -1 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 66100 52 122 1483 1605 1 725 466 20 20 400 clb auto 25.1 MiB 0.25 6234 99796 25426 70692 3678 64.6 MiB 0.65 0.01 13.3576 -2408.51 -13.3576 13.3576 0.24 0.00342831 0.00309879 0.206214 0.185678 -1 -1 -1 -1 18 10309 49 9.72e+06 8.76e+06 -1 -1 4.45 1.17005 1.01875 12348 129228 -1 8807 18 3900 13884 654555 82155 14.5157 14.5157 -3101.03 -14.5157 0 0 -1 -1 0.02 0.28 0.07 -1 -1 0.02 0.13539 0.119674 - k4_n4_v7_l1_bidir.xml alu4.blif common 26.35 vpr 67.29 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 490 14 -1 -1 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 68900 14 8 1536 1544 0 1075 512 25 25 625 clb auto 27.1 MiB 0.38 14121 141755 45026 94787 1942 67.3 MiB 1.03 0.01 18.0745 -136.614 -18.0745 nan 0.64 0.0035682 0.00313836 0.260079 0.230285 -1 -1 -1 -1 20 15728 44 1.587e+07 1.47e+07 -1 -1 21.12 1.18225 1.00687 40434 275643 -1 14000 16 6841 27996 1626919 290551 17.7632 nan -134.96 -17.7632 0 0 -1 -1 0.06 0.62 0.21 -1 -1 0.06 0.14068 0.122961 - k4_n4_v7_l1_bidir.xml apex2.blif common 31.08 vpr 75.03 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 626 38 -1 -1 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 76828 38 3 1916 1919 0 1483 667 28 28 784 clb auto 29.5 MiB 0.52 19979 213316 69985 138621 4710 74.9 MiB 1.55 0.02 22.2574 -65.2689 -22.2574 nan 0.81 0.00447547 0.0038973 0.348446 0.306125 -1 -1 -1 -1 23 23121 33 2.028e+07 1.878e+07 -1 -1 23.92 1.64799 1.39246 56784 401268 -1 20352 15 9956 37018 2993920 415761 21.9001 nan -65.1428 -21.9001 0 0 -1 -1 0.09 0.89 0.31 -1 -1 0.09 0.169098 0.148832 - k4_n4_v7_l1_bidir.xml apex4.blif common 29.87 vpr 64.77 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 434 9 -1 -1 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 66324 9 19 1271 1290 0 989 462 23 23 529 clb auto 25.3 MiB 0.24 13905 125412 38326 85376 1710 64.8 MiB 0.93 0.01 18.3289 -292.406 -18.3289 nan 0.54 0.00295728 0.00263697 0.223166 0.199747 -1 -1 -1 -1 24 15651 33 1.323e+07 1.302e+07 -1 -1 24.88 1.17628 0.99802 39522 283015 -1 14291 16 7091 27457 2432804 329588 18.2498 nan -294.601 -18.2498 0 0 -1 -1 0.06 0.66 0.21 -1 -1 0.06 0.117459 0.103392 - k4_n4_v7_l1_bidir.xml bigkey.blif common 20.11 vpr 79.47 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 492 229 -1 -1 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 81376 229 197 2152 2349 1 1586 918 29 29 841 io auto 30.2 MiB 0.23 13124 451277 143814 296619 10844 79.3 MiB 2.42 0.03 10.2071 -2455.12 -10.2071 10.2071 0.88 0.005948 0.00536127 0.62692 0.567205 -1 -1 -1 -1 12 12537 29 2.187e+07 1.476e+07 -1 -1 12.91 2.04717 1.81918 39906 235943 -1 11657 19 7315 21879 1091195 200069 10.329 10.329 -2581.85 -10.329 0 0 -1 -1 0.06 0.60 0.18 -1 -1 0.06 0.242064 0.21604 - k4_n4_v7_l1_bidir.xml clma.blif common 152.57 vpr 260.00 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2648 62 -1 -1 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 266244 62 82 8460 8542 1 6288 2792 54 54 2916 clb auto 75.6 MiB 2.24 103742 2007296 810980 1179155 17161 259.9 MiB 15.94 0.15 39.1156 -2083.02 -39.1156 39.1156 3.68 0.0217357 0.0178819 2.38549 1.96894 -1 -1 -1 -1 30 102811 27 8.112e+07 7.944e+07 -1 -1 111.17 9.74575 7.86223 274144 2056336 -1 98721 16 38802 154791 12663335 1902409 37.7061 37.7061 -2171.92 -37.7061 0 0 -1 -1 0.55 5.07 1.63 -1 -1 0.55 0.999472 0.848067 - k4_n4_v7_l1_bidir.xml des.blif common 25.77 vpr 92.64 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 484 256 -1 -1 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 94864 256 245 1847 2092 0 1412 985 34 34 1156 io auto 28.9 MiB 0.48 17257 432097 143595 271357 17145 92.3 MiB 2.26 0.03 18.8241 -3130.1 -18.8241 nan 1.27 0.00658266 0.00603047 0.609402 0.558097 -1 -1 -1 -1 14 17359 30 3.072e+07 1.452e+07 -1 -1 17.02 2.07374 1.87856 59520 367032 -1 16289 18 8044 28971 1902864 353863 18.0321 nan -3199.72 -18.0321 0 0 -1 -1 0.10 0.80 0.29 -1 -1 0.10 0.267971 0.244445 - k4_n4_v7_l1_bidir.xml diffeq.blif common 11.64 vpr 67.82 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 439 64 -1 -1 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 69448 64 39 1935 1974 1 1077 542 23 23 529 clb auto 27.9 MiB 0.36 10163 148545 42077 102375 4093 67.8 MiB 1.08 0.02 12.0441 -2875.38 -12.0441 12.0441 0.56 0.00430479 0.0037965 0.308045 0.272397 -1 -1 -1 -1 16 10332 33 1.323e+07 1.317e+07 -1 -1 6.74 1.30841 1.12025 28434 179743 -1 9483 18 6528 24074 1365996 234850 12.4631 12.4631 -3015.42 -12.4631 0 0 -1 -1 0.04 0.61 0.13 -1 -1 0.04 0.194916 0.171717 - k4_n4_v7_l1_bidir.xml dsip.blif common 18.79 vpr 77.63 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 443 229 -1 -1 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 79492 229 197 1815 2012 1 1190 869 29 29 841 io auto 28.0 MiB 0.38 12024 411224 134532 266541 10151 77.3 MiB 2.23 0.03 11.1435 -2606.08 -11.1435 11.1435 0.94 0.00566744 0.00516461 0.588345 0.536406 -1 -1 -1 -1 11 11733 38 2.187e+07 1.329e+07 -1 -1 11.77 1.744 1.56963 36882 207979 -1 10574 14 6196 21392 985879 203001 10.7649 10.7649 -2673.27 -10.7649 0 0 -1 -1 0.05 0.48 0.16 -1 -1 0.05 0.173526 0.156981 - k4_n4_v7_l1_bidir.xml elliptic.blif common 115.75 vpr 111.10 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1023 131 -1 -1 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 113768 131 114 4855 4969 1 2112 1268 34 34 1156 clb auto 44.4 MiB 0.84 32789 577508 205884 364526 7098 111.0 MiB 3.92 0.04 28.7214 -15557.5 -28.7214 28.7214 1.27 0.0109815 0.00921172 0.986391 0.833304 -1 -1 -1 -1 24 36433 43 3.072e+07 3.069e+07 -1 -1 103.73 4.66493 3.90246 89088 639360 -1 31740 17 11379 52651 4955240 805229 28.1279 28.1279 -16635.6 -28.1279 0 0 -1 -1 0.15 1.28 0.30 -1 -1 0.15 0.298224 0.258467 - k4_n4_v7_l1_bidir.xml ex1010.blif common 78.90 vpr 149.61 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1563 10 -1 -1 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 153204 10 10 4608 4618 0 3574 1583 42 42 1764 clb auto 49.0 MiB 1.13 45378 813119 301047 509692 2380 149.6 MiB 6.25 0.07 35.3671 -339.874 -35.3671 nan 2.01 0.0102833 0.00845195 0.968513 0.801445 -1 -1 -1 -1 20 49075 39 4.8e+07 4.689e+07 -1 -1 59.88 3.92366 3.2018 117920 807896 -1 44998 16 24650 99851 5423374 1000125 34.8516 nan -338.727 -34.8516 0 0 -1 -1 0.21 2.22 0.62 -1 -1 0.21 0.42565 0.366905 - k4_n4_v7_l1_bidir.xml ex5p.blif common 21.65 vpr 63.54 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 367 8 -1 -1 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65060 8 63 1072 1135 0 898 438 22 22 484 clb auto 24.2 MiB 0.28 11915 106806 31455 73557 1794 63.5 MiB 0.77 0.01 16.2558 -718.217 -16.2558 nan 0.47 0.00280855 0.00253426 0.195106 0.176517 -1 -1 -1 -1 24 13413 30 1.2e+07 1.101e+07 -1 -1 17.58 1.01507 0.875233 36000 257712 -1 11900 15 6787 23733 1853955 288518 16.2529 nan -726.803 -16.2529 0 0 -1 -1 0.05 0.53 0.19 -1 -1 0.05 0.103489 0.0915351 - k4_n4_v7_l1_bidir.xml frisc.blif common 94.05 vpr 121.02 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1094 20 -1 -1 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 123920 20 116 4445 4561 1 2290 1230 36 36 1296 clb auto 44.1 MiB 0.99 38255 580886 202911 367450 10525 120.6 MiB 4.25 0.05 29.223 -16576.9 -29.223 29.223 1.43 0.0105708 0.00897893 0.999254 0.851085 -1 -1 -1 -1 26 40614 39 3.468e+07 3.282e+07 -1 -1 79.50 4.26322 3.57492 104992 763300 -1 37284 18 13336 60167 5347576 900846 28.6821 28.6821 -16996 -28.6821 0 0 -1 -1 0.20 1.82 0.58 -1 -1 0.20 0.421201 0.366517 - k4_n4_v7_l1_bidir.xml misex3.blif common 17.56 vpr 65.71 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 450 14 -1 -1 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 67284 14 14 1411 1425 0 1056 478 24 24 576 clb auto 26.1 MiB 0.40 13799 121898 36530 83432 1936 65.7 MiB 0.91 0.01 18.1166 -222.755 -18.1166 nan 0.58 0.00323875 0.00286176 0.229781 0.204181 -1 -1 -1 -1 21 15917 38 1.452e+07 1.35e+07 -1 -1 12.60 1.01596 0.869596 39160 271852 -1 13861 19 6925 26912 1892268 324238 17.8372 nan -222.89 -17.8372 0 0 -1 -1 0.06 0.66 0.21 -1 -1 0.06 0.14886 0.130215 - k4_n4_v7_l1_bidir.xml pdc.blif common 418.57 vpr 161.07 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1606 16 -1 -1 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 164932 16 40 4591 4631 0 3616 1662 43 43 1849 clb auto 50.4 MiB 1.48 71388 995502 386267 603819 5416 155.6 MiB 7.56 0.07 36.0567 -1232.66 -36.0567 nan 2.15 0.0118231 0.00974149 1.23901 1.02884 -1 -1 -1 -1 34 83956 48 5.043e+07 4.818e+07 -1 -1 394.83 5.32434 4.35296 185730 1416087 -1 74292 16 24740 103095 11970321 1866116 34.9964 nan -1210.26 -34.9964 0 0 -1 -1 0.37 3.72 1.11 -1 -1 0.37 0.501094 0.427155 - k4_n4_v7_l1_bidir.xml s298.blif common 14.97 vpr 70.04 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 573 4 -1 -1 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 71716 4 6 1942 1948 1 1167 583 26 26 676 clb auto 29.8 MiB 0.37 13721 168529 51547 115716 1266 70.0 MiB 1.27 0.02 26.8992 -206.444 -26.8992 26.8992 0.69 0.00496419 0.00432315 0.361202 0.317423 -1 -1 -1 -1 17 15103 41 1.728e+07 1.719e+07 -1 -1 8.88 1.36971 1.16775 39072 254696 -1 13708 17 7890 40380 2928639 390491 25.7904 25.7904 -205.684 -25.7904 0 0 -1 -1 0.06 0.94 0.21 -1 -1 0.06 0.209805 0.184411 - k4_n4_v7_l1_bidir.xml s38417.blif common 61.66 vpr 189.10 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1852 29 -1 -1 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 193636 29 106 7534 7640 1 4623 1987 46 46 2116 clb auto 61.8 MiB 1.63 45682 1150699 423694 711314 15691 189.1 MiB 8.82 0.10 24.016 -14000.6 -24.016 24.016 2.46 0.0169007 0.0139461 1.64128 1.36389 -1 -1 -1 -1 16 41981 27 5.808e+07 5.556e+07 -1 -1 37.78 5.55941 4.54523 118272 756192 -1 39731 15 23886 81328 4350389 861432 23.6137 23.6137 -14728 -23.6137 0 0 -1 -1 0.20 2.01 0.59 -1 -1 0.20 0.647233 0.553971 - k4_n4_v7_l1_bidir.xml s38584.1.blif common 67.22 vpr 183.30 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1787 38 -1 -1 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 187696 38 304 7475 7779 1 4320 2129 45 45 2025 clb auto 61.8 MiB 1.45 43799 1343749 517594 801490 24665 183.3 MiB 9.49 0.12 21.0587 -13121.7 -21.0587 21.0587 2.45 0.0167009 0.0137478 1.77708 1.46891 -1 -1 -1 -1 16 39654 47 5.547e+07 5.361e+07 -1 -1 43.54 5.72828 4.70791 113090 722879 -1 37482 13 19902 66283 3641519 680597 20.2436 20.2436 -13770 -20.2436 0 0 -1 -1 0.19 1.67 0.56 -1 -1 0.19 0.58033 0.500952 - k4_n4_v7_l1_bidir.xml seq.blif common 39.62 vpr 69.59 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 567 41 -1 -1 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 71260 41 35 1791 1826 0 1347 643 26 26 676 clb auto 29.0 MiB 0.45 18608 203145 65187 132320 5638 69.6 MiB 1.44 0.02 18.1385 -520.265 -18.1385 nan 0.69 0.00437225 0.00383137 0.338582 0.298021 -1 -1 -1 -1 24 20201 48 1.728e+07 1.701e+07 -1 -1 33.10 1.88123 1.59699 51072 366016 -1 19098 15 8908 34158 2699342 394310 17.881 nan -530.81 -17.881 0 0 -1 -1 0.08 0.83 0.27 -1 -1 0.08 0.160739 0.141136 - k4_n4_v7_l1_bidir.xml spla.blif common 187.45 vpr 130.33 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1282 16 -1 -1 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 133456 16 46 3706 3752 0 2852 1344 38 38 1444 clb auto 43.1 MiB 1.08 48851 705674 261242 438237 6195 129.8 MiB 4.82 0.05 28.2789 -928.469 -28.2789 nan 1.62 0.00923375 0.00767658 0.87033 0.724376 -1 -1 -1 -1 30 55651 36 3.888e+07 3.846e+07 -1 -1 170.35 3.95474 3.27046 133344 1000208 -1 49871 15 17906 78246 6885546 1014380 27.1504 nan -941.372 -27.1504 0 0 -1 -1 0.25 2.27 0.77 -1 -1 0.25 0.36105 0.312454 - k4_n4_v7_l1_bidir.xml tseng.blif common 6.87 vpr 64.39 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 292 52 -1 -1 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 65932 52 122 1483 1605 1 725 466 20 20 400 clb auto 25.0 MiB 0.16 6135 112438 30480 78177 3781 64.4 MiB 0.46 0.01 11.1777 -2780.46 -11.1777 11.1777 0.26 0.00160816 0.00140359 0.112456 0.0992435 -1 -1 -1 -1 14 6150 30 9.72e+06 8.76e+06 -1 -1 4.21 0.681536 0.590913 19872 120996 -1 5573 18 4232 15969 711167 147306 11.3812 11.3812 -3151.62 -11.3812 0 0 -1 -1 0.03 0.34 0.09 -1 -1 0.03 0.138745 0.122462 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +k4_n4_v7_bidir.xml alu4.blif common 10.51 vpr 68.39 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 493 14 -1 -1 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 70036 14 8 1536 1544 0 1104 515 25 25 625 clb auto 29.0 MiB 0.19 26012 13956 130484 38677 90196 1611 68.4 MiB 0.65 0.01 30.5457 14.3537 -102.59 -14.3537 nan 0.26 0.00281681 0.00240697 0.187334 0.163939 -1 -1 -1 -1 26 20892 39 1.587e+07 1.479e+07 -1 -1 7.59 1.21065 1.03445 22338 287359 -1 19730 15 6783 25798 1828199 189550 17.7661 nan -122.524 -17.7661 0 0 -1 -1 0.05 0.42 0.10 -1 -1 0.05 0.11421 0.10103 +k4_n4_v7_bidir.xml apex2.blif common 15.85 vpr 70.80 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 625 38 -1 -1 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 72500 38 3 1916 1919 0 1483 666 27 27 729 clb auto 31.8 MiB 0.33 39268 19969 186714 54978 127506 4230 70.8 MiB 1.05 0.01 37.5467 15.2065 -45.3413 -15.2065 nan 0.31 0.00410554 0.00346209 0.282826 0.239397 -1 -1 -1 -1 28 30325 44 1.875e+07 1.875e+07 -1 -1 11.80 1.43193 1.20336 26754 356103 -1 28518 16 9720 35610 2764503 263934 18.4094 nan -54.9029 -18.4094 0 0 -1 -1 0.06 0.59 0.12 -1 -1 0.06 0.147984 0.134232 +k4_n4_v7_bidir.xml apex4.blif common 6.17 vpr 65.86 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 430 9 -1 -1 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 67436 9 19 1271 1290 0 978 458 23 23 529 clb auto 26.9 MiB 0.18 23165 13695 104534 29903 73052 1579 65.9 MiB 0.54 0.01 28.8439 13.8799 -228.564 -13.8799 nan 0.22 0.00213336 0.00186974 0.144465 0.12771 -1 -1 -1 -1 30 20988 39 1.323e+07 1.29e+07 -1 -1 3.43 0.645416 0.557775 20514 283063 -1 19517 20 7190 27765 2407390 214953 17.1513 nan -274.971 -17.1513 0 0 -1 -1 0.05 0.52 0.10 -1 -1 0.05 0.121889 0.109083 +k4_n4_v7_bidir.xml bigkey.blif common 7.98 vpr 72.54 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 495 229 -1 -1 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 74280 229 197 2152 2349 1 1362 921 29 29 841 io auto 32.6 MiB 0.19 35109 13449 426426 141391 275290 9745 72.5 MiB 1.50 0.02 17.7693 8.07704 -1976.29 -8.07704 8.07704 0.38 0.00372809 0.00338054 0.394382 0.338936 -1 -1 -1 -1 17 21055 43 2.187e+07 1.485e+07 -1 -1 3.55 1.31321 1.13689 24954 256911 -1 18767 22 7669 28488 1689811 197748 8.90589 8.90589 -2364.61 -8.90589 0 0 -1 -1 0.05 0.57 0.09 -1 -1 0.05 0.211757 0.182394 +k4_n4_v7_bidir.xml clma.blif common 72.81 vpr 204.14 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2657 62 -1 -1 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 209040 62 82 8460 8542 1 6311 2801 54 54 2916 clb auto 83.4 MiB 1.21 318304 107423 1818513 710165 1094335 14013 185.0 MiB 11.36 0.12 109.907 27.5529 -1348.77 -27.5529 27.5529 1.54 0.0211071 0.015896 2.13139 1.63007 -1 -1 -1 -1 38 141343 26 8.112e+07 7.971e+07 -1 -1 48.13 10.3163 8.13924 126538 2024156 -1 136720 18 37710 139608 13309903 1205243 31.5727 31.5727 -1662.82 -31.5727 0 0 -1 -1 0.44 3.25 0.76 -1 -1 0.44 0.881408 0.751274 +k4_n4_v7_bidir.xml des.blif common 11.20 vpr 70.88 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 476 256 -1 -1 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 72576 256 245 1847 2092 0 1369 977 34 34 1156 io auto 31.1 MiB 0.21 41834 16325 359581 117023 229258 13300 70.9 MiB 1.19 0.02 35.0204 12.3184 -2297.36 -12.3184 nan 0.54 0.0041646 0.00363216 0.330541 0.290991 -1 -1 -1 -1 19 23462 24 3.072e+07 1.428e+07 -1 -1 6.50 1.75122 1.56086 35364 387024 -1 21500 20 8895 34040 2269814 254049 14.4581 nan -2758.91 -14.4581 0 0 -1 -1 0.07 0.67 0.14 -1 -1 0.07 0.210732 0.193886 +k4_n4_v7_bidir.xml diffeq.blif common 6.94 vpr 70.02 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 438 64 -1 -1 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 71700 64 39 1935 1974 1 1075 541 23 23 529 clb auto 29.9 MiB 0.19 23859 10147 137127 36471 96425 4231 70.0 MiB 0.69 0.01 41.0644 13.3365 -2669.73 -13.3365 13.3365 0.22 0.00307747 0.00279215 0.219066 0.191584 -1 -1 -1 -1 22 15029 23 1.323e+07 1.314e+07 -1 -1 4.23 1.25599 1.07312 17346 200431 -1 14015 19 6333 22933 1286086 145452 15.0001 15.0001 -3348.78 -15.0001 0 0 -1 -1 0.03 0.37 0.07 -1 -1 0.03 0.145127 0.125426 +k4_n4_v7_bidir.xml dsip.blif common 8.58 vpr 69.71 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 389 229 -1 -1 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 71388 229 197 1815 2012 1 807 815 29 29 841 io auto 30.0 MiB 0.16 25997 11221 343265 110526 223443 9296 69.7 MiB 1.08 0.02 17.1219 7.67764 -1783.63 -7.67764 7.67764 0.36 0.00298296 0.0026384 0.281491 0.250692 -1 -1 -1 -1 16 16775 35 2.187e+07 1.167e+07 -1 -1 5.15 1.02398 0.911506 24114 234671 -1 14644 15 4531 21507 1204494 145014 9.11187 9.11187 -2273.02 -9.11187 0 0 -1 -1 0.04 0.33 0.09 -1 -1 0.04 0.11086 0.100347 +k4_n4_v7_bidir.xml elliptic.blif common 29.82 vpr 87.45 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1023 131 -1 -1 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 89544 131 114 4855 4969 1 2121 1268 34 34 1156 clb auto 48.7 MiB 0.44 68213 32063 543208 185567 349249 8392 87.4 MiB 2.80 0.03 61.3729 21.5739 -11984.7 -21.5739 21.5739 0.54 0.00803406 0.00736046 0.785189 0.651665 -1 -1 -1 -1 30 48184 36 3.072e+07 3.069e+07 -1 -1 21.83 3.75848 3.07433 44604 633776 -1 42454 19 10655 49988 3826867 357795 25.477 25.477 -14698.3 -25.477 0 0 -1 -1 0.12 1.06 0.22 -1 -1 0.12 0.378996 0.331672 +k4_n4_v7_bidir.xml ex1010.blif common 34.63 vpr 112.85 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1571 10 -1 -1 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 115556 10 10 4608 4618 0 3567 1591 42 42 1764 clb auto 52.9 MiB 0.62 147879 45540 753595 262722 489179 1694 110.2 MiB 4.73 0.06 52.4545 24.5398 -234.737 -24.5398 nan 0.87 0.010526 0.0078576 0.90398 0.714975 -1 -1 -1 -1 28 65394 19 4.8e+07 4.713e+07 -1 -1 22.87 4.65072 3.73099 64374 881208 -1 63107 16 23300 93509 5730584 607346 28.9188 nan -276.935 -28.9188 0 0 -1 -1 0.18 1.67 0.32 -1 -1 0.18 0.416222 0.360241 +k4_n4_v7_bidir.xml ex5p.blif common 6.78 vpr 64.45 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 362 8 -1 -1 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66000 8 63 1072 1135 0 892 433 22 22 484 clb auto 25.5 MiB 0.18 19665 12146 83920 21665 60035 2220 64.5 MiB 0.41 0.01 27.1613 14.1695 -641.804 -14.1695 nan 0.26 0.00194483 0.00175051 0.110247 0.100056 -1 -1 -1 -1 28 18857 41 1.2e+07 1.086e+07 -1 -1 4.37 0.597322 0.524339 17814 232968 -1 17191 17 7020 24726 2122321 206092 17.5715 nan -811.991 -17.5715 0 0 -1 -1 0.04 0.43 0.08 -1 -1 0.04 0.0982758 0.0881937 +k4_n4_v7_bidir.xml frisc.blif common 39.90 vpr 90.50 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1093 20 -1 -1 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 92668 20 116 4445 4561 1 2268 1229 36 36 1296 clb auto 47.9 MiB 0.52 82225 38746 540789 181172 349115 10502 89.0 MiB 2.95 0.03 92.1602 27.8548 -13906.2 -27.8548 27.8548 0.63 0.00762553 0.00692883 0.766368 0.640122 -1 -1 -1 -1 32 55435 34 3.468e+07 3.279e+07 -1 -1 31.30 4.3095 3.55018 51266 747164 -1 51352 19 12718 59152 4839669 471177 31.6271 31.6271 -16668.9 -31.6271 0 0 -1 -1 0.15 1.25 0.27 -1 -1 0.15 0.39857 0.343255 +k4_n4_v7_bidir.xml misex3.blif common 8.20 vpr 67.88 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 456 14 -1 -1 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 69504 14 14 1411 1425 0 1058 484 24 24 576 clb auto 28.0 MiB 0.19 25286 13398 116323 33249 81241 1833 67.9 MiB 0.59 0.01 27.5808 12.9766 -166.337 -12.9766 nan 0.24 0.00253725 0.00218076 0.16921 0.146768 -1 -1 -1 -1 27 22296 50 1.452e+07 1.368e+07 -1 -1 5.36 1.0053 0.860066 21174 279108 -1 19502 18 7476 29328 2259232 221453 15.1329 nan -197.55 -15.1329 0 0 -1 -1 0.05 0.50 0.10 -1 -1 0.05 0.123896 0.111321 +k4_n4_v7_bidir.xml pdc.blif common 47.91 vpr 121.63 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1617 16 -1 -1 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 124552 16 40 4591 4631 0 3619 1673 43 43 1849 clb auto 55.2 MiB 0.79 148382 72050 825614 301727 519289 4598 115.6 MiB 5.29 0.06 57.6272 23.7689 -838.224 -23.7689 nan 0.93 0.0150982 0.0114412 1.21295 0.93889 -1 -1 -1 -1 42 105308 49 5.043e+07 4.851e+07 -1 -1 33.47 5.76976 4.57688 84090 1373187 -1 98071 20 23761 104231 12283114 1054649 28.8448 nan -1019.25 -28.8448 0 0 -1 -1 0.29 2.87 0.57 -1 -1 0.29 0.621586 0.531079 +k4_n4_v7_bidir.xml s298.blif common 7.14 vpr 71.95 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 574 4 -1 -1 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 73680 4 6 1942 1948 1 1159 584 26 26 676 clb auto 32.4 MiB 0.21 26193 13170 154304 44587 108633 1084 72.0 MiB 0.89 0.01 59.8244 21.6938 -165.88 -21.6938 21.6938 0.29 0.00418138 0.00347077 0.284209 0.236941 -1 -1 -1 -1 22 20764 41 1.728e+07 1.722e+07 -1 -1 3.70 1.0034 0.843428 22122 258376 -1 18543 20 6776 35839 2195452 220622 26.0696 26.0696 -206.718 -26.0696 0 0 -1 -1 0.04 0.56 0.09 -1 -1 0.04 0.167447 0.146467 +k4_n4_v7_bidir.xml s38417.blif common 38.14 vpr 133.93 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1839 29 -1 -1 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 137148 29 106 7534 7640 1 4625 1974 45 45 2025 clb auto 67.5 MiB 0.93 182366 49147 1115994 411126 689649 15219 131.3 MiB 7.02 0.09 69.8886 18.1305 -11126 -18.1305 18.1305 1.12 0.0167919 0.0133128 1.55146 1.22292 -1 -1 -1 -1 26 62916 18 5.547e+07 5.517e+07 -1 -1 22.18 6.66465 5.36506 71818 959559 -1 61826 21 25212 85364 5272227 577542 22.2241 22.2241 -13589.6 -22.2241 0 0 -1 -1 0.20 1.77 0.35 -1 -1 0.20 0.746813 0.639752 +k4_n4_v7_bidir.xml s38584.1.blif common 26.45 vpr 130.86 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1785 38 -1 -1 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 134000 38 304 7475 7779 1 4307 2127 45 45 2025 clb auto 67.2 MiB 0.79 169496 43700 1260043 468320 769335 22388 130.9 MiB 6.66 0.09 46.6882 12.4704 -8838.49 -12.4704 12.4704 1.02 0.0150387 0.011511 1.56356 1.2059 -1 -1 -1 -1 22 57407 29 5.547e+07 5.355e+07 -1 -1 11.74 5.32525 4.24948 65746 795487 -1 53993 24 21202 68197 3819694 436287 15.8262 15.8262 -10638.4 -15.8262 0 0 -1 -1 0.17 1.66 0.29 -1 -1 0.17 0.826696 0.695763 +k4_n4_v7_bidir.xml seq.blif common 11.14 vpr 69.41 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 563 41 -1 -1 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 71080 41 35 1791 1826 0 1358 639 26 26 676 clb auto 30.7 MiB 0.24 34655 19019 179454 52780 121688 4986 69.4 MiB 0.97 0.01 28.2438 14.5406 -418.614 -14.5406 nan 0.30 0.00347682 0.00287878 0.275951 0.233536 -1 -1 -1 -1 31 27432 31 1.728e+07 1.689e+07 -1 -1 7.47 1.4478 1.22337 26172 364912 -1 25996 16 8273 30805 2346654 227901 18.1758 nan -502.399 -18.1758 0 0 -1 -1 0.06 0.53 0.13 -1 -1 0.06 0.140373 0.124717 +k4_n4_v7_bidir.xml spla.blif common 39.46 vpr 96.53 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1295 16 -1 -1 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 98848 16 46 3706 3752 0 2830 1357 38 38 1444 clb auto 47.2 MiB 0.58 104307 47860 579550 196916 377929 4705 93.3 MiB 3.12 0.04 52.5658 19.3022 -663.123 -19.3022 nan 0.70 0.00738583 0.00664122 0.704824 0.552684 -1 -1 -1 -1 36 71709 36 3.888e+07 3.885e+07 -1 -1 29.89 3.77665 2.98889 59972 912004 -1 67441 20 18417 83736 8422141 758154 24.4024 nan -837.791 -24.4024 0 0 -1 -1 0.21 1.77 0.32 -1 -1 0.21 0.388862 0.328321 +k4_n4_v7_bidir.xml tseng.blif common 4.87 vpr 65.84 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 292 52 -1 -1 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 67424 52 122 1483 1605 1 721 466 20 20 400 clb auto 26.6 MiB 0.14 14453 6266 110632 29522 77317 3793 65.8 MiB 0.50 0.01 29.8881 13.1236 -2386.51 -13.1236 13.1236 0.16 0.00222333 0.00202089 0.166559 0.150191 -1 -1 -1 -1 18 10091 45 9.72e+06 8.76e+06 -1 -1 2.86 0.749946 0.658853 12348 129228 -1 8546 20 3970 14140 657005 83311 15.2834 15.2834 -3062.53 -15.2834 0 0 -1 -1 0.02 0.22 0.04 -1 -1 0.02 0.101198 0.0913371 +k4_n4_v7_l1_bidir.xml alu4.blif common 10.53 vpr 68.39 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 493 14 -1 -1 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 70036 14 8 1536 1544 0 1104 515 25 25 625 clb auto 28.8 MiB 0.20 26012 13882 144925 44962 98128 1835 68.4 MiB 0.75 0.01 45.0652 18.3459 -138.341 -18.3459 nan 0.38 0.00307527 0.0026122 0.230228 0.198221 -1 -1 -1 -1 21 14740 32 1.587e+07 1.479e+07 -1 -1 6.92 1.0599 0.899376 42642 296151 -1 13671 16 6751 27151 1578234 268986 18.5341 nan -138.309 -18.5341 0 0 -1 -1 0.07 0.51 0.11 -1 -1 0.07 0.117569 0.10406 +k4_n4_v7_l1_bidir.xml apex2.blif common 34.31 vpr 70.45 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 625 38 -1 -1 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 72144 38 3 1916 1919 0 1483 666 27 27 729 clb auto 31.4 MiB 0.30 39268 20542 218691 70799 142856 5036 70.5 MiB 1.09 0.01 56.8542 22.1453 -63.6176 -22.1453 nan 0.53 0.003642 0.00303919 0.293084 0.248885 -1 -1 -1 -1 23 23305 46 1.875e+07 1.875e+07 -1 -1 29.32 1.46884 1.22779 52650 371955 -1 21163 16 9774 36558 3184705 468372 21.3859 nan -62.3911 -21.3859 0 0 -1 -1 0.08 0.90 0.23 -1 -1 0.08 0.170377 0.150501 +k4_n4_v7_l1_bidir.xml apex4.blif common 23.46 vpr 66.34 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 430 9 -1 -1 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 67932 9 19 1271 1290 0 978 458 23 23 529 clb auto 27.3 MiB 0.16 23165 13634 123938 37969 84511 1458 66.3 MiB 0.63 0.01 45.8408 17.9211 -294.82 -17.9211 nan 0.31 0.00224286 0.00198234 0.174028 0.153204 -1 -1 -1 -1 23 16880 46 1.323e+07 1.29e+07 -1 -1 20.29 0.875708 0.747308 37674 265803 -1 14265 15 7589 28006 2741318 395062 17.6852 nan -291.991 -17.6852 0 0 -1 -1 0.06 0.63 0.10 -1 -1 0.06 0.0994468 0.0886171 +k4_n4_v7_l1_bidir.xml bigkey.blif common 27.07 vpr 72.54 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 495 229 -1 -1 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 74276 229 197 2152 2349 1 1362 921 29 29 841 io auto 32.6 MiB 0.19 35109 13408 448821 146189 291712 10920 72.5 MiB 1.54 0.02 28.5192 11.8335 -2618.05 -11.8335 11.8335 0.54 0.00381705 0.00331139 0.415039 0.360706 -1 -1 -1 -1 12 13371 38 2.187e+07 1.485e+07 -1 -1 22.31 1.32942 1.14348 39906 235943 -1 12329 17 6865 26060 1290857 258844 11.6984 11.6984 -2776.31 -11.6984 0 0 -1 -1 0.06 0.54 0.09 -1 -1 0.06 0.172038 0.151618 +k4_n4_v7_l1_bidir.xml clma.blif common 278.12 vpr 238.05 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2657 62 -1 -1 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 243764 62 82 8460 8542 1 6311 2801 54 54 2916 clb auto 83.5 MiB 1.37 318304 106218 1996137 787385 1191682 17070 225.3 MiB 12.34 0.12 180.571 44.0646 -2121.09 -44.0646 44.0646 2.25 0.0221159 0.0166099 2.32684 1.77283 -1 -1 -1 -1 29 111883 49 8.112e+07 7.971e+07 -1 -1 248.93 9.52343 7.40398 263120 1955672 -1 101313 14 37365 145032 12692939 2064304 42.322 42.322 -2255.16 -42.322 0 0 -1 -1 0.53 3.98 0.79 -1 -1 0.53 0.790771 0.664853 +k4_n4_v7_l1_bidir.xml des.blif common 27.55 vpr 85.92 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 476 256 -1 -1 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 87980 256 245 1847 2092 0 1369 977 34 34 1156 io auto 30.7 MiB 0.22 41834 16291 427425 141277 269635 16513 85.9 MiB 1.40 0.02 55.6616 18.2554 -3058.48 -18.2554 nan 0.79 0.00414944 0.00361335 0.389896 0.341364 -1 -1 -1 -1 12 17178 44 3.072e+07 1.428e+07 -1 -1 22.06 1.59014 1.39836 55296 328128 -1 15463 15 7660 27882 2152148 416875 17.1404 nan -3056.03 -17.1404 0 0 -1 -1 0.08 0.59 0.13 -1 -1 0.08 0.154021 0.14055 +k4_n4_v7_l1_bidir.xml diffeq.blif common 10.69 vpr 70.02 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 438 64 -1 -1 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 71700 64 39 1935 1974 1 1075 541 23 23 529 clb auto 29.9 MiB 0.19 23859 10034 152548 43059 105955 3534 70.0 MiB 0.77 0.01 60.266 12.6666 -3104.5 -12.6666 12.6666 0.32 0.00333395 0.00280831 0.247667 0.211717 -1 -1 -1 -1 15 10658 50 1.323e+07 1.314e+07 -1 -1 7.52 1.08277 0.918032 28434 179743 -1 9183 16 6138 22497 1257215 230883 12.6467 12.6467 -3223.39 -12.6467 0 0 -1 -1 0.04 0.42 0.06 -1 -1 0.04 0.130574 0.116547 +k4_n4_v7_l1_bidir.xml dsip.blif common 23.47 vpr 69.71 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 389 229 -1 -1 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 71388 229 197 1815 2012 1 807 815 29 29 841 io auto 29.7 MiB 0.22 25997 11249 366095 122219 234437 9439 69.7 MiB 1.16 0.02 27.0132 11.1529 -2551.52 -11.1529 11.1529 0.54 0.00305654 0.00270038 0.30737 0.272816 -1 -1 -1 -1 12 11176 33 2.187e+07 1.167e+07 -1 -1 19.30 1.06061 0.935673 39906 235943 -1 10244 13 4283 22052 1030607 200941 10.8718 10.8718 -2615.29 -10.8718 0 0 -1 -1 0.05 0.36 0.09 -1 -1 0.05 0.102932 0.0931994 +k4_n4_v7_l1_bidir.xml elliptic.blif common 111.94 vpr 102.83 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1023 131 -1 -1 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 105300 131 114 4855 4969 1 2121 1268 34 34 1156 clb auto 48.5 MiB 0.47 68213 32052 611808 216720 388087 7001 99.5 MiB 2.86 0.03 93.3266 25.0351 -15271.4 -25.0351 25.0351 0.77 0.00905634 0.00709113 0.855766 0.678841 -1 -1 -1 -1 24 35952 46 3.072e+07 3.069e+07 -1 -1 102.70 3.84755 3.092 89088 639360 -1 31624 16 11873 54886 5140312 855505 24.5872 24.5872 -16149.4 -24.5872 0 0 -1 -1 0.16 1.60 0.24 -1 -1 0.16 0.377302 0.320117 +k4_n4_v7_l1_bidir.xml ex1010.blif common 39.75 vpr 137.62 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1571 10 -1 -1 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 140920 10 10 4608 4618 0 3567 1591 42 42 1764 clb auto 53.4 MiB 0.67 147879 46435 790731 289845 498934 1952 136.5 MiB 4.98 0.05 83.3245 39.6079 -368.605 -39.6079 nan 1.34 0.00996113 0.00752524 0.973665 0.7587 -1 -1 -1 -1 21 49742 46 4.8e+07 4.713e+07 -1 -1 25.65 3.83175 3.05967 124480 868048 -1 45150 16 22456 89716 4688523 856199 39.8159 nan -369.076 -39.8159 0 0 -1 -1 0.22 1.87 0.43 -1 -1 0.22 0.398072 0.339422 +k4_n4_v7_l1_bidir.xml ex5p.blif common 18.19 vpr 65.12 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 362 8 -1 -1 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66688 8 63 1072 1135 0 892 433 22 22 484 clb auto 26.2 MiB 0.16 19665 12180 110112 32722 75037 2353 65.1 MiB 0.52 0.01 42.1132 17.967 -770.979 -17.967 nan 0.28 0.00181833 0.00162281 0.135232 0.122075 -1 -1 -1 -1 23 14643 39 1.2e+07 1.086e+07 -1 -1 15.45 0.747906 0.648695 34320 242040 -1 12274 18 7244 25344 2108210 336035 17.2355 nan -777.274 -17.2355 0 0 -1 -1 0.05 0.49 0.09 -1 -1 0.05 0.0896065 0.0794681 +k4_n4_v7_l1_bidir.xml frisc.blif common 91.55 vpr 110.08 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1093 20 -1 -1 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 112720 20 116 4445 4561 1 2268 1229 36 36 1296 clb auto 47.9 MiB 0.55 82225 38236 580269 205035 365670 9564 106.0 MiB 3.02 0.03 144.888 28.2628 -15971.6 -28.2628 28.2628 0.97 0.00860906 0.00685372 0.84973 0.678473 -1 -1 -1 -1 26 41144 35 3.468e+07 3.279e+07 -1 -1 81.45 3.93702 3.18952 104992 763300 -1 37445 17 13158 60126 5444826 978154 27.7261 27.7261 -16327.8 -27.7261 0 0 -1 -1 0.18 1.55 0.29 -1 -1 0.18 0.355507 0.299943 +k4_n4_v7_l1_bidir.xml misex3.blif common 25.17 vpr 67.59 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 456 14 -1 -1 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 69212 14 14 1411 1425 0 1058 484 24 24 576 clb auto 28.1 MiB 0.23 25286 14202 129616 40562 86860 2194 67.6 MiB 0.81 0.01 43.4719 17.7771 -224.903 -17.7771 nan 0.34 0.00245431 0.00214229 0.229478 0.20207 -1 -1 -1 -1 22 16796 43 1.452e+07 1.368e+07 -1 -1 21.57 0.930568 0.795872 39160 271852 -1 14502 17 7277 28246 2125959 376090 17.9267 nan -234.908 -17.9267 0 0 -1 -1 0.06 0.57 0.10 -1 -1 0.06 0.111633 0.0985354 +k4_n4_v7_l1_bidir.xml pdc.blif common 116.26 vpr 159.95 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1617 16 -1 -1 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 163788 16 40 4591 4631 0 3619 1673 43 43 1849 clb auto 54.7 MiB 0.83 148382 72670 934811 358856 570141 5814 142.3 MiB 5.29 0.05 93.2356 33.3601 -1166.2 -33.3601 nan 1.32 0.0109056 0.00836527 1.08312 0.834952 -1 -1 -1 -1 36 80097 36 5.043e+07 4.851e+07 -1 -1 99.52 5.50726 4.31544 192618 1479219 -1 75456 17 26040 112622 12244803 1822486 32.6929 nan -1148.81 -32.6929 0 0 -1 -1 0.39 3.43 0.60 -1 -1 0.39 0.480142 0.402737 +k4_n4_v7_l1_bidir.xml s298.blif common 31.82 vpr 71.46 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 574 4 -1 -1 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 73172 4 6 1942 1948 1 1159 584 26 26 676 clb auto 31.7 MiB 0.21 26193 13287 168944 51306 116401 1237 71.5 MiB 0.86 0.01 92.2741 24.9723 -196.835 -24.9723 24.9723 0.42 0.00370694 0.00304842 0.284114 0.236343 -1 -1 -1 -1 16 14492 41 1.728e+07 1.722e+07 -1 -1 27.66 1.50279 1.23825 36672 232432 -1 13188 18 8145 41698 2905801 417656 24.2999 24.2999 -196.112 -24.2999 0 0 -1 -1 0.05 0.83 0.09 -1 -1 0.05 0.170401 0.147693 +k4_n4_v7_l1_bidir.xml s38417.blif common 59.52 vpr 160.86 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1839 29 -1 -1 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 164724 29 106 7534 7640 1 4625 1974 45 45 2025 clb auto 67.7 MiB 0.80 182366 46669 1140750 409193 715103 16454 160.5 MiB 6.67 0.07 113.119 24.123 -13847.4 -24.123 24.123 1.47 0.0158586 0.0120293 1.55666 1.19069 -1 -1 -1 -1 16 43059 47 5.547e+07 5.517e+07 -1 -1 42.79 5.2201 4.09966 113090 722879 -1 40589 15 24470 82387 4406125 874310 22.9241 22.9241 -14764.6 -22.9241 0 0 -1 -1 0.19 1.91 0.31 -1 -1 0.19 0.638183 0.553447 +k4_n4_v7_l1_bidir.xml s38584.1.blif common 63.67 vpr 161.86 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1785 38 -1 -1 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 165740 38 304 7475 7779 1 4307 2127 45 45 2025 clb auto 67.0 MiB 0.78 169496 44382 1342081 511835 806220 24026 161.9 MiB 6.99 0.07 74.1051 20.5353 -13256.6 -20.5353 20.5353 1.52 0.015181 0.0115929 1.64152 1.2783 -1 -1 -1 -1 16 41197 48 5.547e+07 5.355e+07 -1 -1 47.15 4.91191 3.90833 113090 722879 -1 38058 15 20429 66024 3978003 769268 20.3296 20.3296 -14054.5 -20.3296 0 0 -1 -1 0.19 1.58 0.28 -1 -1 0.19 0.576043 0.5016 +k4_n4_v7_l1_bidir.xml seq.blif common 22.25 vpr 69.40 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 563 41 -1 -1 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 71068 41 35 1791 1826 0 1358 639 26 26 676 clb auto 30.3 MiB 0.24 34655 18585 215217 68324 141286 5607 69.4 MiB 1.04 0.01 42.7606 19.0541 -549.348 -19.0541 nan 0.41 0.00343627 0.00285473 0.287666 0.242426 -1 -1 -1 -1 22 21579 50 1.728e+07 1.689e+07 -1 -1 17.99 1.11907 0.938823 46272 321488 -1 18864 15 8903 34453 2990664 524856 19.8932 nan -572.473 -19.8932 0 0 -1 -1 0.07 0.75 0.12 -1 -1 0.07 0.136318 0.119711 +k4_n4_v7_l1_bidir.xml spla.blif common 181.65 vpr 121.35 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1295 16 -1 -1 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 124260 16 46 3706 3752 0 2830 1357 38 38 1444 clb auto 47.2 MiB 0.59 104307 48793 654640 238193 412191 4256 116.5 MiB 3.91 0.04 84.8923 28.2789 -955.027 -28.2789 nan 1.02 0.00801147 0.00629725 0.881683 0.69524 -1 -1 -1 -1 30 56845 44 3.888e+07 3.885e+07 -1 -1 169.35 3.86298 3.0794 133344 1000208 -1 50796 19 19477 89020 8037289 1191085 27.773 nan -975.676 -27.773 0 0 -1 -1 0.25 2.48 0.40 -1 -1 0.25 0.407889 0.339434 +k4_n4_v7_l1_bidir.xml tseng.blif common 7.47 vpr 66.23 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 292 52 -1 -1 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 67816 52 122 1483 1605 1 721 466 20 20 400 clb auto 27.0 MiB 0.13 14453 6257 117856 31965 81849 4042 66.2 MiB 0.49 0.01 44.0183 11.512 -2810.26 -11.512 11.512 0.23 0.00229118 0.00204192 0.160486 0.144029 -1 -1 -1 -1 14 6597 40 9.72e+06 8.76e+06 -1 -1 5.23 0.735414 0.639305 19872 120996 -1 5753 18 4097 15290 638053 131747 12.3091 12.3091 -3042.24 -12.3091 0 0 -1 -1 0.03 0.25 0.04 -1 -1 0.03 0.103918 0.0927701 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2/vtr_reg_netlist_writer/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2/vtr_reg_netlist_writer/config/golden_results.txt index 6a59a733970..07c9b5a2f55 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2/vtr_reg_netlist_writer/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2/vtr_reg_netlist_writer/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 ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - k6_frac_N10_frac_chain_mem32K_40nm.xml or1200.v common 45.88 vpr 105.39 MiB -1 -1 6.79 63484 8 3.06 -1 -1 40704 -1 -1 250 385 2 1 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 107916 385 362 4415 4299 1 2365 1000 26 26 676 io auto 53.4 MiB 8.02 30064 545782 201861 320153 23768 96.5 MiB 5.36 0.06 9.17025 -9814.95 -9.17025 9.17025 0.75 0.0154429 0.0143793 1.79153 1.64504 -1 -1 -1 -1 86 44693 20 3.69863e+07 1.49655e+07 3.69198e+06 5461.52 13.35 6.72204 6.1687 89040 769342 -1 41511 17 9662 32287 1739041 311622 9.36868 9.36868 -10331.7 -9.36868 0 0 4.67059e+06 6909.16 0.16 1.11 0.68 -1 -1 0.16 0.681008 0.635643 - k6_frac_N10_frac_chain_mem32K_40nm.xml sha.v common 15.44 vpr 81.45 MiB -1 -1 3.43 44504 3 1.23 -1 -1 39800 -1 -1 141 38 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 83404 38 36 2739 2488 1 1022 215 17 17 289 clb auto 40.5 MiB 1.96 8926 42010 10393 28489 3128 81.4 MiB 0.91 0.01 10.0828 -2706.04 -10.0828 10.0828 0.30 0.00541664 0.00477131 0.391772 0.345384 -1 -1 -1 -1 62 13454 38 1.34605e+07 7.59905e+06 1.10657e+06 3828.96 3.45 1.77757 1.52314 31771 216973 -1 12449 21 4102 9497 328915 58876 10.8931 10.8931 -3012.43 -10.8931 0 0 1.37508e+06 4758.06 0.05 0.40 0.19 -1 -1 0.05 0.289893 0.256286 - k6_frac_N10_frac_chain_mem32K_40nm.xml boundtop.v common 24.74 vpr 70.58 MiB -1 -1 17.86 45828 3 0.69 -1 -1 35540 -1 -1 48 196 1 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 72272 196 193 1201 1346 1 606 438 15 15 225 io auto 31.2 MiB 0.83 3130 146694 39708 93961 13025 70.6 MiB 0.73 0.01 2.24601 -1081.12 -2.24601 2.24601 0.23 0.00356204 0.00332113 0.333364 0.31069 -1 -1 -1 -1 36 6058 29 1.03862e+07 3.13491e+06 520410. 2312.93 1.93 1.18409 1.08635 21110 102306 -1 5134 10 1618 2340 136007 39516 2.56471 2.56471 -1177.45 -2.56471 0 0 643451. 2859.78 0.02 0.14 0.09 -1 -1 0.02 0.102579 0.095844 - k6_frac_N10_frac_chain_mem32K_40nm.xml raygentop.v common 22.86 vpr 83.41 MiB -1 -1 4.78 42380 3 0.69 -1 -1 37656 -1 -1 129 236 1 6 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 85412 236 305 3199 3011 1 1520 677 19 19 361 io auto 42.5 MiB 2.99 12761 268067 88565 164726 14776 83.4 MiB 2.03 0.03 4.74988 -2887.79 -4.74988 4.74988 0.39 0.00859777 0.00794312 0.829104 0.763261 -1 -1 -1 -1 62 24213 37 1.72706e+07 9.87633e+06 1.42198e+06 3939.00 7.32 3.04293 2.76861 40483 281719 -1 20603 18 6062 15441 1381198 347776 4.88181 4.88181 -3127.07 -4.88181 0 0 1.76637e+06 4892.99 0.06 0.66 0.24 -1 -1 0.06 0.38505 0.357195 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +k6_frac_N10_frac_chain_mem32K_40nm.xml or1200.v common 34.15 vpr 101.05 MiB -1 -1 3.84 61860 8 2.89 -1 -1 42304 -1 -1 247 385 2 1 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 103472 385 362 4415 4299 1 2357 997 26 26 676 io auto 57.1 MiB 5.19 60299 29833 558533 214306 321077 23150 97.4 MiB 4.02 0.05 12.9571 9.08653 -9982.73 -9.08653 9.08653 0.60 0.0122951 0.0115891 1.40221 1.25508 -1 -1 -1 -1 86 44651 39 3.69863e+07 1.48038e+07 3.69198e+06 5461.52 12.13 5.63808 5.09536 89040 769342 -1 41400 21 10076 33666 1743244 311635 9.30121 9.30121 -10341.1 -9.30121 0 0 4.67059e+06 6909.16 0.15 0.96 0.52 -1 -1 0.15 0.591543 0.547933 +k6_frac_N10_frac_chain_mem32K_40nm.xml sha.v common 9.26 vpr 83.89 MiB -1 -1 1.74 44312 3 1.07 -1 -1 39956 -1 -1 139 38 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 85904 38 36 2739 2488 1 1049 213 16 16 256 clb auto 43.6 MiB 1.17 14059 8662 34503 7871 24229 2403 83.9 MiB 0.49 0.01 11.7745 10.1195 -2670 -10.1195 10.1195 0.19 0.0035954 0.00320083 0.224754 0.197673 -1 -1 -1 -1 62 12786 36 1.21132e+07 7.49127e+06 968026. 3781.35 2.14 1.16173 1.01486 28084 189262 -1 11901 21 4007 8912 293191 53923 10.7115 10.7115 -2827.56 -10.7115 0 0 1.20332e+06 4700.46 0.03 0.27 0.11 -1 -1 0.03 0.207459 0.188642 +k6_frac_N10_frac_chain_mem32K_40nm.xml boundtop.v common 14.77 vpr 71.92 MiB -1 -1 9.79 45204 3 0.61 -1 -1 35392 -1 -1 47 196 1 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 73648 196 193 1201 1346 1 592 437 15 15 225 io auto 32.8 MiB 0.58 6911 3057 146253 37880 94608 13765 71.9 MiB 0.39 0.01 3.04383 2.21331 -1098.79 -2.21331 2.21331 0.19 0.00181143 0.00167906 0.171476 0.158363 -1 -1 -1 -1 38 5820 21 1.03862e+07 3.08102e+06 544116. 2418.30 1.62 0.679631 0.627147 21558 109668 -1 4978 10 1591 2448 151620 45926 2.57055 2.57055 -1194.35 -2.57055 0 0 690508. 3068.92 0.02 0.09 0.06 -1 -1 0.02 0.0694194 0.066214 +k6_frac_N10_frac_chain_mem32K_40nm.xml raygentop.v common 15.04 vpr 84.71 MiB -1 -1 2.58 42840 3 0.56 -1 -1 37000 -1 -1 127 236 1 6 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 86744 236 305 3199 3011 1 1523 675 19 19 361 io auto 45.6 MiB 1.97 25195 12600 275862 99499 162512 13851 84.7 MiB 1.30 0.02 6.75568 4.64882 -2837.55 -4.64882 4.64882 0.29 0.00513714 0.00475976 0.519055 0.470381 -1 -1 -1 -1 62 23840 49 1.72706e+07 9.76854e+06 1.42198e+06 3939.00 5.43 1.97221 1.78662 40483 281719 -1 20436 15 5933 14959 1286779 322599 4.8554 4.8554 -3009.05 -4.8554 0 0 1.76637e+06 4892.99 0.06 0.45 0.17 -1 -1 0.06 0.248103 0.234994 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test3/complex_switch/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test3/complex_switch/config/golden_results.txt index 4719bdbbc41..743e4766b3c 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test3/complex_switch/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test3/complex_switch/config/golden_results.txt @@ -1,15 +1,15 @@ - arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time 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 - k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm.xml bgm.v common 86.33 parmys 237.66 MiB -1 -1 59.56 243368 18 8.03 -1 -1 47792 -1 -1 690 257 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 131604 257 32 6023 6055 1 5218 979 30 30 900 clb auto 50.4 MiB 1.32 30778 384840 112160 259942 12738 128.5 MiB 5.07 0.06 6.21971 -2685.64 -6.21971 6.21971 0.00 0.0121286 0.010889 1.07079 0.930807 -1 -1 -1 -1 48326 9.26495 23261 4.45955 24183 85231 10762077 2437584 4.97244e+06 2.691e+06 9.69309e+06 10770.1 19 207906 1928213 -1 6.7296 6.7296 -2945.08 -6.7296 0 0 3.08 -1 -1 128.5 MiB 2.73 1.64504 1.43517 128.5 MiB -1 1.06 - k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm.xml blob_merge.v common 69.59 parmys 308.92 MiB -1 -1 20.53 316332 11 11.34 -1 -1 60732 -1 -1 1320 36 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 232392 36 100 10357 10457 1 9801 1456 41 41 1681 clb auto 78.0 MiB 1.62 84812 768613 262427 482842 23344 226.9 MiB 14.06 0.14 4.39308 -1711.02 -4.39308 4.39308 0.01 0.022016 0.0196054 2.33652 1.96707 -1 -1 -1 -1 138657 14.2256 61058 6.26429 47871 161906 24294871 4760787 8.95136e+06 5.148e+06 1.84779e+07 10992.2 18 392750 3677203 -1 4.59418 4.59418 -1851.22 -4.59418 0 0 6.19 -1 -1 226.9 MiB 6.17 3.45481 2.92361 226.9 MiB -1 2.09 - k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm.xml boundtop.v common 20.54 vpr 65.45 MiB -1 -1 16.87 31768 7 0.22 -1 -1 34408 -1 -1 84 195 1 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 67016 195 193 1168 1361 1 833 473 15 15 225 io memory auto 25.1 MiB 0.15 4149 116519 30489 77528 8502 65.4 MiB 0.67 0.01 2.05786 -845.694 -2.05786 2.05786 0.00 0.00358265 0.00334889 0.236637 0.220258 -1 -1 -1 -1 5820 7.04600 2934 3.55206 2158 7108 836065 203922 1.16234e+06 410348 2.18283e+06 9701.45 17 48952 428016 -1 2.20416 2.20416 -941.195 -2.20416 -5.04525 -0.362152 0.68 -1 -1 65.4 MiB 0.28 0.370687 0.343567 65.4 MiB -1 0.15 - k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm.xml LU8PEEng.v common 274.74 vpr 777.04 MiB -1 -1 83.07 347172 198 58.46 -1 -1 81260 -1 -1 3007 114 84 8 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 795688 114 102 27514 27424 1 24905 3315 86 86 7396 memory auto 170.7 MiB 7.52 250054 2844620 1146946 1672566 25108 777.0 MiB 55.92 0.50 66.2365 -37444.4 -66.2365 66.2365 0.03 0.0719073 0.0590585 8.30877 6.87541 -1 -1 -1 -1 335253 13.4721 155368 6.24344 86691 292279 36780303 8465074 4.18276e+07 1.96285e+07 8.44414e+07 11417.2 24 1767072 16882712 -1 70.2921 70.2921 -60297.3 -70.2921 -110.441 -0.36083 28.98 -1 -1 777.0 MiB 12.56 12.1445 10.0766 777.0 MiB -1 10.31 - k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm.xml mkDelayWorker32B.v common 73.08 vpr 620.53 MiB -1 -1 17.95 124768 6 3.38 -1 -1 56996 -1 -1 530 506 80 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 635420 506 553 3101 3654 1 3095 1669 82 82 6724 memory auto 42.3 MiB 2.14 25405 1218877 631944 388945 197988 620.5 MiB 5.58 0.06 6.36014 -1487.33 -6.36014 6.36014 0.02 0.0224669 0.0202745 2.8854 2.57995 -1 -1 -1 -1 27932 19.9514 10368 7.40571 4777 5953 1376059 343598 3.85878e+07 8.68684e+06 7.66484e+07 11399.2 21 1605176 15314284 -1 6.5448 6.5448 -1848.22 -6.5448 -0.972977 -0.141294 25.68 -1 -1 620.5 MiB 1.55 3.99336 3.59651 620.5 MiB -1 10.26 - k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm.xml mkSMAdapter4B.v common 23.67 vpr 147.68 MiB -1 -1 8.41 55880 12 2.17 -1 -1 37716 -1 -1 272 193 10 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 151220 193 205 2702 2907 1 2077 680 37 37 1369 memory auto 33.5 MiB 0.48 16016 320503 103025 185798 31680 147.7 MiB 2.61 0.03 4.08522 -2332.4 -4.08522 4.08522 0.01 0.00778378 0.00708911 0.828223 0.743596 -1 -1 -1 -1 23965 11.8521 10835 5.35856 7511 24534 3256668 748305 7.45627e+06 1.88828e+06 1.49196e+07 10898.2 16 318394 2964149 -1 4.35451 4.35451 -2541.42 -4.35451 -24.4938 -0.362934 4.82 -1 -1 147.7 MiB 0.89 1.11325 1.00034 147.7 MiB -1 1.52 - k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm.xml or1200.v common 28.65 vpr 105.23 MiB -1 -1 7.65 67984 45 3.84 -1 -1 42248 -1 -1 507 385 4 1 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 107756 385 394 4999 5330 1 4334 1291 27 27 729 io clb auto 46.7 MiB 0.86 41641 689839 241566 416847 31426 105.2 MiB 7.31 0.09 12.8735 -9951.57 -12.8735 12.8735 0.00 0.0260078 0.0241428 1.96109 1.79428 -1 -1 -1 -1 59914 13.8690 27944 6.46852 14932 56161 6978653 1633667 4.06709e+06 2.42709e+06 7.75339e+06 10635.7 18 167232 1538736 -1 13.6878 13.6878 -10969.7 -13.6878 0 0 2.47 -1 -1 105.2 MiB 2.35 2.72247 2.49544 105.2 MiB -1 0.73 - k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm.xml raygentop.v common 16.48 vpr 89.94 MiB -1 -1 5.88 46220 13 1.05 -1 -1 37316 -1 -1 258 235 1 6 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 92096 235 305 3050 3211 1 2409 805 26 26 676 mult_36 auto 34.0 MiB 0.56 18548 318960 106153 197804 15003 89.9 MiB 2.65 0.04 4.63435 -2030.57 -4.63435 4.63435 0.00 0.00827489 0.0076449 0.769092 0.705313 -1 -1 -1 -1 27327 11.3768 12604 5.24729 7556 24511 3145050 770465 3.88769e+06 1.80175e+06 7.17610e+06 10615.5 17 154908 1423382 -1 4.95816 4.95816 -2400.04 -4.95816 -4.91839 -0.302506 2.27 -1 -1 89.9 MiB 0.93 1.12269 1.03119 89.9 MiB -1 0.68 - k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm.xml sha.v common 15.25 vpr 78.47 MiB -1 -1 4.12 47116 31 2.37 -1 -1 40420 -1 -1 339 38 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 80356 38 36 3594 3630 1 2712 413 22 22 484 clb auto 36.8 MiB 0.58 17999 98781 25241 68531 5009 78.5 MiB 1.84 0.03 10.7412 -2419.14 -10.7412 10.7412 0.00 0.00821692 0.00743293 0.528021 0.461966 -1 -1 -1 -1 30168 11.1280 14799 5.45887 10929 43555 5053693 1185379 2.41174e+06 1.3221e+06 5.02684e+06 10386.0 20 109406 996619 -1 11.4575 11.4575 -2860.74 -11.4575 0 0 1.58 -1 -1 78.5 MiB 1.35 0.870992 0.761788 78.5 MiB -1 0.47 - k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm.xml stereovision0.v common 103.28 vpr 294.09 MiB -1 -1 17.98 122104 8 39.33 -1 -1 64452 -1 -1 1787 169 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 301152 169 197 22094 22291 1 13644 2153 47 47 2209 clb auto 117.4 MiB 2.78 84093 1433441 529843 874670 28928 294.1 MiB 19.06 0.15 2.84155 -9368.95 -2.84155 2.84155 0.01 0.0199557 0.017421 3.02047 2.53301 -1 -1 -1 -1 115302 8.46067 53202 3.90387 38990 116247 13530534 3173474 1.16296e+07 6.9693e+06 2.45588e+07 11117.6 16 519358 4899383 -1 2.96164 2.96164 -11594.8 -2.96164 0 0 8.02 -1 -1 294.1 MiB 4.21 4.45013 3.76666 294.1 MiB -1 3.48 - k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm.xml stereovision1.v common 98.48 vpr 447.37 MiB -1 -1 19.52 136472 10 16.43 -1 -1 68076 -1 -1 1715 113 0 44 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 458104 113 145 23238 21103 1 16079 2017 62 62 3844 mult_36 auto 119.0 MiB 3.08 134593 1403197 540133 835168 27896 447.4 MiB 23.88 0.24 4.23784 -17475.8 -4.23784 4.23784 0.01 0.0346943 0.0300817 4.16831 3.52318 -1 -1 -1 -1 176092 10.9564 75407 4.69182 50926 135810 19956608 4725070 2.17057e+07 1.19157e+07 4.33614e+07 11280.3 14 911886 8653859 -1 4.38297 4.38297 -19916.5 -4.38297 0 0 14.28 -1 -1 447.4 MiB 5.54 5.64953 4.81546 447.4 MiB -1 6.14 - k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm.xml stereovision2.v common 372.97 vpr 1.48 GiB -1 -1 50.73 340684 27 70.28 -1 -1 133796 -1 -1 4514 149 0 179 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 1552900 149 182 51692 43978 1 42908 5024 122 122 14884 mult_36 auto 259.4 MiB 12.71 621019 5252244 2230923 2978613 42708 1516.5 MiB 123.00 0.94 14.0121 -39813.6 -14.0121 14.0121 0.05 0.104595 0.0884544 13.3662 11.3391 -1 -1 -1 -1 742073 17.3479 293415 6.85934 188011 479712 70501963 16268887 8.48203e+07 3.88698e+07 1.71497e+08 11522.2 19 3576636 34359014 -1 14.4461 14.4461 -50058 -14.4461 0 0 47.11 -1 -1 1516.5 MiB 20.56 18.3681 15.6666 1516.5 MiB -1 23.25 - k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm.xml LU32PEEng.v common 1674.43 vpr 2.85 GiB -1 -1 256.57 1022168 199 537.09 -1 -1 242520 -1 -1 10114 114 300 32 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 2990340 114 102 92654 91988 1 84766 10662 169 169 28561 memory auto 525.1 MiB 31.09 1203406 15024678 6357887 8639212 27579 2920.3 MiB 574.23 3.72 67.3778 -210140 -67.3778 67.3778 0.11 0.278779 0.222735 37.1223 30.3265 -1 -1 -1 -1 1463950 17.2795 649390 7.66495 258955 907352 119266978 27221298 1.64515e+08 6.80716e+07 3.31299e+08 11599.7 23 6883162 66233393 -1 70.9748 70.9748 -425681 -70.9748 -218.84 -0.303936 116.22 -1 -1 2920.3 MiB 45.72 50.9414 41.7057 2920.3 MiB -1 51.89 - k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm.xml mcml.v common 5150.59 vpr 2.98 GiB -1 -1 677.26 1443056 107 3544.23 -1 -1 351720 -1 -1 11492 36 318 27 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 3125316 36 356 138376 137161 1 92319 12229 169 169 28561 memory auto 678.5 MiB 47.34 1163441 20009663 9094677 10835623 79363 3052.1 MiB 590.30 3.67 55.3268 -200630 -55.3268 55.3268 0.11 0.27376 0.236978 43.1291 36.3531 -1 -1 -1 -1 1075540 11.6506 502988 5.44855 311069 1247888 150917753 35326137 1.64515e+08 7.43477e+07 3.31299e+08 11599.7 22 6883162 66233393 -1 58.8084 58.8084 -304419 -58.8084 -0.0952056 -0.03838 104.27 -1 -1 3052.1 MiB 56.17 58.8307 49.565 3052.1 MiB -1 54.29 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time 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 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm.xml bgm.v common 62.72 parmys 233.21 MiB -1 -1 41.35 238808 18 8.62 -1 -1 47704 -1 -1 691 257 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 124296 257 32 6023 6055 1 5218 980 30 30 900 clb auto 55.2 MiB 0.69 104675 29518 395045 118762 263859 12424 121.4 MiB 4.17 0.08 11.3319 6.35898 -2679.82 -6.35898 6.35898 0.00 0.0201003 0.0184433 0.930952 0.787084 -1 -1 -1 -1 46824 8.97699 22545 4.32228 24363 85509 10869534 2448458 4.97244e+06 2.6949e+06 9.69309e+06 10770.1 20 207906 1928213 -1 6.79844 6.79844 -2909.9 -6.79844 0 0 1.48 -1 -1 121.4 MiB 2.52 1.44158 1.23937 121.4 MiB -1 1.21 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm.xml blob_merge.v common 61.17 parmys 294.91 MiB -1 -1 14.41 301992 11 15.66 -1 -1 59900 -1 -1 1328 36 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 215464 36 100 10357 10457 1 9801 1464 41 41 1681 clb auto 86.3 MiB 0.98 232683 85043 732656 236867 472411 23378 210.4 MiB 14.29 0.11 7.68887 4.36693 -1676.32 -4.36693 4.36693 0.01 0.0219024 0.020056 2.67189 2.16449 -1 -1 -1 -1 137627 14.1199 60728 6.23043 45415 156214 23019942 4532445 8.95136e+06 5.1792e+06 1.84779e+07 10992.2 16 392750 3677203 -1 4.66971 4.66971 -1819.82 -4.66971 0 0 2.68 -1 -1 210.4 MiB 5.34 3.69375 3.0658 210.4 MiB -1 2.87 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm.xml boundtop.v common 12.60 vpr 67.22 MiB -1 -1 10.71 31804 7 0.19 -1 -1 34520 -1 -1 85 195 1 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 68832 195 193 1168 1361 1 833 474 15 15 225 io memory auto 27.4 MiB 0.07 9452 4087 122376 32196 80431 9749 67.2 MiB 0.47 0.01 2.40346 2.04254 -855.189 -2.04254 2.04254 0.00 0.00321312 0.00307104 0.165795 0.154259 -1 -1 -1 -1 5516 6.67797 2823 3.41768 2000 6369 701843 174823 1.16234e+06 414248 2.18283e+06 9701.45 13 48952 428016 -1 2.20549 2.20549 -967.458 -2.20549 -5.33769 -0.375057 0.29 -1 -1 67.2 MiB 0.19 0.243382 0.226345 67.2 MiB -1 0.15 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm.xml LU8PEEng.v common 243.01 vpr 779.94 MiB -1 -1 51.71 340904 198 64.73 -1 -1 79300 -1 -1 3009 114 84 8 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 798660 114 102 27514 27424 1 24905 3317 86 86 7396 memory auto 192.7 MiB 5.84 1 246581 2772741 1072169 1680961 19611 779.9 MiB 64.78 0.46 110.986 67.2085 -36668.8 -67.2085 67.2085 0.02 0.0565045 0.0510033 8.36652 6.80096 -1 -1 -1 -1 334056 13.4240 155599 6.25272 86237 292438 36684736 8497031 4.18276e+07 1.96363e+07 8.44414e+07 11417.2 23 1767072 16882712 -1 71.4888 71.4888 -59750.8 -71.4888 -120.811 -0.300576 13.90 -1 -1 779.9 MiB 16.08 13.9815 11.4816 779.9 MiB -1 13.24 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm.xml mkDelayWorker32B.v common 56.32 vpr 673.20 MiB -1 -1 13.12 123964 6 5.85 -1 -1 56756 -1 -1 527 506 82 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 689356 506 553 3101 3654 1 3095 1668 86 86 7396 memory auto 48.8 MiB 1.57 62715 21962 1208004 614006 398198 195800 673.2 MiB 3.32 0.04 7.18204 5.5466 -1446.05 -5.5466 5.5466 0.02 0.0135307 0.0125281 1.60216 1.4636 -1 -1 -1 -1 24146 17.2471 9062 6.47286 4940 6239 1389912 344494 4.18276e+07 8.84064e+06 8.44414e+07 11417.2 19 1767072 16882712 -1 5.93615 5.93615 -1683.61 -5.93615 -20.0492 -0.302506 15.73 -1 -1 673.2 MiB 1.09 2.29308 2.11581 673.2 MiB -1 11.63 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm.xml mkSMAdapter4B.v common 15.73 vpr 145.68 MiB -1 -1 5.01 54836 12 2.03 -1 -1 36288 -1 -1 273 193 10 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 149172 193 205 2702 2907 1 2077 681 37 37 1369 memory auto 37.2 MiB 0.26 38508 15724 318151 106831 176085 35235 145.7 MiB 1.93 0.02 5.72172 4.01871 -2281.15 -4.01871 4.01871 0.01 0.00458389 0.00419047 0.601353 0.535847 -1 -1 -1 -1 23644 11.6934 10718 5.30069 8294 26389 3518439 803455 7.45627e+06 1.89218e+06 1.49196e+07 10898.2 19 318394 2964149 -1 4.37242 4.37242 -2491.91 -4.37242 -29.8719 -0.362934 2.35 -1 -1 145.7 MiB 1.01 0.877546 0.790039 145.7 MiB -1 1.78 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm.xml or1200.v common 23.28 vpr 104.08 MiB -1 -1 5.30 67900 45 5.20 -1 -1 42140 -1 -1 502 385 4 1 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 106576 385 394 4999 5330 1 4334 1286 27 27 729 io auto 51.8 MiB 0.47 83677 41913 658346 221084 409258 28004 104.1 MiB 6.49 0.06 17.0338 13.5484 -9839.74 -13.5484 13.5484 0.00 0.0126964 0.0119393 1.80662 1.60509 -1 -1 -1 -1 59999 13.8887 28048 6.49259 15211 56803 7018752 1644677 4.06709e+06 2.40759e+06 7.75339e+06 10635.7 19 167232 1538736 -1 14.5003 14.5003 -10926.8 -14.5003 0 0 1.11 -1 -1 104.1 MiB 2.04 2.41572 2.16482 104.1 MiB -1 0.84 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm.xml raygentop.v common 10.88 vpr 89.85 MiB -1 -1 3.96 45728 13 1.03 -1 -1 38652 -1 -1 260 235 1 6 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 92004 235 305 3050 3211 1 2409 807 26 26 676 mult_36 auto 38.3 MiB 0.39 42167 19963 323737 103083 202082 18572 89.8 MiB 1.78 0.02 6.43501 4.41374 -2022.49 -4.41374 4.41374 0.00 0.00538431 0.00499578 0.515212 0.464289 -1 -1 -1 -1 29501 12.2818 13139 5.47003 8334 26611 3445015 839406 3.88769e+06 1.80955e+06 7.17610e+06 10615.5 18 154908 1423382 -1 4.41715 4.41715 -2278.59 -4.41715 -13.491 -0.297776 0.98 -1 -1 89.8 MiB 0.88 0.775192 0.706558 89.8 MiB -1 0.78 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm.xml sha.v common 10.30 vpr 81.24 MiB -1 -1 2.10 48136 31 1.89 -1 -1 40748 -1 -1 340 38 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 83188 38 36 3594 3630 1 2712 414 22 22 484 clb auto 41.3 MiB 0.31 37523 18664 99102 24205 70033 4864 81.2 MiB 1.51 0.03 14.6307 10.6694 -2395.86 -10.6694 10.6694 0.00 0.00960521 0.00885912 0.477577 0.415527 -1 -1 -1 -1 30882 11.3914 15010 5.53670 11818 45694 5360765 1250456 2.41174e+06 1.326e+06 5.02684e+06 10386.0 22 109406 996619 -1 11.322 11.322 -2854.65 -11.322 0 0 0.86 -1 -1 81.2 MiB 1.91 0.979369 0.864347 81.2 MiB -1 0.50 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm.xml stereovision0.v common 95.91 vpr 287.41 MiB -1 -1 10.30 121276 8 50.74 -1 -1 64572 -1 -1 1789 169 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 294312 169 197 22094 22291 1 13644 2155 47 47 2209 clb auto 130.7 MiB 1.65 296616 82252 1393555 509135 861988 22432 287.4 MiB 18.07 0.16 6.73893 2.79891 -9090.8 -2.79891 2.79891 0.01 0.0257551 0.0228883 2.97138 2.48184 -1 -1 -1 -1 113167 8.30401 52601 3.85977 39381 116998 13696156 3217836 1.16296e+07 6.9771e+06 2.45588e+07 11117.6 20 519358 4899383 -1 3.16997 3.16997 -11244.2 -3.16997 0 0 3.49 -1 -1 287.4 MiB 4.15 4.42465 3.74681 287.4 MiB -1 3.10 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm.xml stereovision1.v common 76.56 vpr 432.16 MiB -1 -1 13.20 135908 10 18.05 -1 -1 69020 -1 -1 1728 113 0 44 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 442528 113 145 23238 21103 1 16079 2030 62 62 3844 mult_36 auto 133.5 MiB 1.93 464566 140683 1376766 529393 826004 21369 432.2 MiB 20.20 0.21 6.49702 4.19774 -17481.8 -4.19774 4.19774 0.02 0.0290359 0.0261236 3.49495 2.91514 -1 -1 -1 -1 182617 11.3624 77136 4.79940 56582 154824 23877894 5676827 2.17057e+07 1.19664e+07 4.33614e+07 11280.3 18 911886 8653859 -1 4.51371 4.51371 -20867.2 -4.51371 0 0 6.27 -1 -1 432.2 MiB 5.98 5.01762 4.245 432.2 MiB -1 5.59 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm.xml stereovision2.v common 341.09 vpr 1.48 GiB -1 -1 33.35 342772 27 81.80 -1 -1 133556 -1 -1 4508 149 0 179 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 1554604 149 182 51692 43978 1 42908 5018 122 122 14884 mult_36 auto 292.6 MiB 7.71 2 610555 5286884 2218097 3004477 64310 1518.2 MiB 128.70 1.06 42.5031 13.5262 -39704.8 -13.5262 13.5262 0.05 0.0867315 0.0793853 13.2576 11.1988 -1 -1 -1 -1 736583 17.2195 289148 6.75958 207127 529507 77274312 17716707 8.48203e+07 3.88464e+07 1.71497e+08 11522.2 20 3576636 34359014 -1 13.9421 13.9421 -49958.2 -13.9421 0 0 27.45 -1 -1 1518.2 MiB 22.37 18.6002 15.864 1518.2 MiB -1 24.75 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm.xml LU32PEEng.v common 1564.74 vpr 2.85 GiB -1 -1 169.71 1005424 199 648.07 -1 -1 240660 -1 -1 10127 114 300 32 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 2990168 114 102 92654 91988 1 84766 10675 169 169 28561 memory auto 603.0 MiB 16.94 6 1169551 14931524 6314811 8578405 38308 2920.1 MiB 540.32 3.31 183.298 68.4997 -205073 -68.4997 68.4997 0.13 0.224889 0.199606 35.6755 28.4271 -1 -1 -1 -1 1429089 16.8680 637842 7.52865 260993 905980 118710487 27205397 1.64515e+08 6.81223e+07 3.31299e+08 11599.7 23 6883162 66233393 -1 73.0461 73.0461 -408864 -73.0461 -158.391 -0.303936 52.19 -1 -1 2920.1 MiB 45.14 49.5464 39.7886 2920.1 MiB -1 52.32 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm.xml mcml.v common 4798.35 vpr 2.99 GiB -1 -1 482.74 1402976 107 3634.95 -1 -1 347088 -1 -1 11481 36 318 27 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 3130736 36 356 138376 137161 1 92319 12218 169 169 28561 memory auto 782.0 MiB 15.53 6 1160463 19704338 8803888 10822718 77732 3057.4 MiB 468.78 2.85 140.602 55.2965 -212224 -55.2965 55.2965 0.09 0.202736 0.179676 33.0622 27.398 -1 -1 -1 -1 1073968 11.6336 502193 5.43993 312182 1239709 147666283 34765349 1.64515e+08 7.43047e+07 3.31299e+08 11599.7 22 6883162 66233393 -1 58.2368 58.2368 -298549 -58.2368 -0.797149 -0.124294 52.65 -1 -1 3057.4 MiB 45.35 44.9196 37.5371 3057.4 MiB -1 47.98 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 5fc9ae47bce..52cfffff857 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test3/vtr_reg_qor_chain/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test3/vtr_reg_qor_chain/config/golden_results.txt @@ -1,22 +1,22 @@ - arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - k6_frac_N10_frac_chain_mem32K_40nm.xml arm_core.v common 237.52 vpr 262.28 MiB -1 -1 32.91 121376 20 45.70 -1 -1 67188 -1 -1 857 133 25 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 268572 133 179 14228 14085 1 7013 1194 37 37 1369 clb auto 123.1 MiB 53.30 118244 596308 187805 386918 21585 185.1 MiB 14.11 0.14 22.8372 -207023 -22.8372 22.8372 1.66 0.0425386 0.0375764 4.48215 3.81006 -1 -1 -1 -1 108 181970 35 7.54166e+07 5.98881e+07 9.28840e+06 6784.81 67.59 16.5132 13.7215 198916 1972836 -1 161583 15 29674 114770 9098344 1675362 24.0804 24.0804 -223110 -24.0804 0 0 1.17342e+07 8571.36 0.47 4.41 1.87 -1 -1 0.47 2.21375 1.92596 - k6_frac_N10_frac_chain_mem32K_40nm.xml bgm.v common 494.13 vpr 712.53 MiB -1 -1 67.51 634620 14 70.59 -1 -1 122036 -1 -1 2741 257 0 11 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 729628 257 32 36080 33722 1 19295 3041 63 63 3969 clb auto 300.2 MiB 92.25 247801 2183219 784650 1370393 28176 712.5 MiB 71.53 0.62 19.785 -25840.1 -19.785 19.785 16.56 0.102779 0.0918008 11.5762 9.76479 -1 -1 -1 -1 72 386360 42 2.36641e+08 1.52081e+08 1.98694e+07 5006.15 110.59 42.9221 35.5891 498330 4113940 -1 362013 19 91449 417245 17088983 2690880 20.0733 20.0733 -26346.1 -20.0733 0 0 2.48734e+07 6266.93 1.16 11.31 3.82 -1 -1 1.16 5.98384 5.18194 - k6_frac_N10_frac_chain_mem32K_40nm.xml blob_merge.v common 81.79 parmys 261.76 MiB -1 -1 16.25 268040 5 3.83 -1 -1 54936 -1 -1 499 36 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 144920 36 100 10178 7632 1 2726 635 29 29 841 clb auto 89.3 MiB 20.95 42663 237971 70464 152269 15238 136.4 MiB 5.32 0.05 14.7669 -2473.22 -14.7669 14.7669 0.97 0.0211143 0.0190909 2.35792 2.11102 -1 -1 -1 -1 70 69685 21 4.4999e+07 2.68931e+07 3.87716e+06 4610.18 22.40 6.46234 5.5956 101140 791177 -1 63521 14 12660 66318 2601627 385811 14.9702 14.9702 -2667.46 -14.9702 0 0 4.87732e+06 5799.43 0.18 1.24 0.61 -1 -1 0.18 0.765348 0.685884 - k6_frac_N10_frac_chain_mem32K_40nm.xml boundtop.v common 27.98 vpr 70.30 MiB -1 -1 19.04 45836 3 0.71 -1 -1 35388 -1 -1 48 196 1 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 71984 196 193 1201 1346 1 606 438 15 15 225 io auto 31.0 MiB 0.83 3130 146694 39708 93961 13025 70.3 MiB 0.75 0.01 2.24601 -1081.12 -2.24601 2.24601 0.23 0.00372098 0.00347122 0.346766 0.322935 -1 -1 -1 -1 36 6058 29 1.03862e+07 3.13491e+06 520410. 2312.93 4.20 1.65535 1.51569 21110 102306 -1 5134 10 1618 2340 136007 39516 2.56471 2.56471 -1177.45 -2.56471 0 0 643451. 2859.78 0.02 0.14 0.09 -1 -1 0.02 0.105047 0.098196 - k6_frac_N10_frac_chain_mem32K_40nm.xml ch_intrinsics.v common 2.63 vpr 65.72 MiB -1 -1 0.47 18896 3 0.09 -1 -1 33312 -1 -1 68 99 1 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 67300 99 130 344 474 1 227 298 12 12 144 clb auto 26.5 MiB 0.17 749 71938 22933 33485 15520 65.7 MiB 0.13 0.00 1.86413 -118.59 -1.86413 1.86413 0.10 0.000549638 0.000516276 0.0433027 0.040723 -1 -1 -1 -1 42 1520 10 5.66058e+06 4.21279e+06 345696. 2400.67 0.59 0.187247 0.170993 13090 66981 -1 1349 11 399 648 28156 8528 2.01841 2.01841 -138.411 -2.01841 0 0 434636. 3018.30 0.01 0.05 0.06 -1 -1 0.01 0.0359727 0.0332907 - k6_frac_N10_frac_chain_mem32K_40nm.xml diffeq1.v common 9.83 vpr 68.52 MiB -1 -1 0.57 22264 5 0.15 -1 -1 34252 -1 -1 32 162 0 5 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 70164 162 96 1075 892 1 665 295 16 16 256 mult_36 auto 29.5 MiB 0.47 5186 94471 34661 52400 7410 68.5 MiB 0.71 0.01 15.8635 -1239.63 -15.8635 15.8635 0.26 0.00331121 0.00311453 0.328384 0.30882 -1 -1 -1 -1 58 10489 28 1.21132e+07 3.70461e+06 904541. 3533.36 5.64 1.61544 1.48773 27572 180683 -1 8500 19 2932 4812 741239 227046 17.067 17.067 -1349.92 -17.067 0 0 1.15318e+06 4504.63 0.04 0.31 0.16 -1 -1 0.04 0.144606 0.134419 - k6_frac_N10_frac_chain_mem32K_40nm.xml diffeq2.v common 11.47 vpr 67.82 MiB -1 -1 0.42 21216 5 0.11 -1 -1 33532 -1 -1 21 66 0 5 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 69452 66 96 778 595 1 467 188 16 16 256 mult_36 auto 28.2 MiB 0.61 3552 38386 11370 22642 4374 67.8 MiB 0.36 0.01 11.8641 -739.791 -11.8641 11.8641 0.26 0.00237331 0.00224591 0.18002 0.170428 -1 -1 -1 -1 56 8238 44 1.21132e+07 3.11177e+06 870502. 3400.40 7.66 1.20105 1.10303 27064 172478 -1 6899 24 3920 8254 1448980 464078 13.0139 13.0139 -835.321 -13.0139 0 0 1.11200e+06 4343.75 0.04 0.43 0.15 -1 -1 0.04 0.125507 0.116065 - k6_frac_N10_frac_chain_mem32K_40nm.xml mkDelayWorker32B.v common 66.31 vpr 349.85 MiB -1 -1 18.06 118764 5 3.19 -1 -1 44732 -1 -1 482 506 44 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 358248 506 553 3236 3734 1 2871 1585 50 50 2500 memory auto 51.8 MiB 6.65 15677 1193158 583612 419742 189804 349.9 MiB 5.89 0.07 7.82454 -2101.77 -7.82454 7.82454 10.39 0.0232107 0.0209756 3.11831 2.78915 -1 -1 -1 -1 38 23230 14 1.47946e+08 5.00895e+07 6.86579e+06 2746.32 11.78 8.44468 7.65217 258216 1426232 -1 22340 13 3999 5540 1044268 276431 8.15652 8.15652 -2449.78 -8.15652 0 0 8.69102e+06 3476.41 0.36 0.62 0.94 -1 -1 0.36 0.474915 0.450631 - k6_frac_N10_frac_chain_mem32K_40nm.xml mkPktMerge.v common 14.83 vpr 75.46 MiB -1 -1 1.65 25776 2 0.13 -1 -1 34240 -1 -1 32 311 15 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 77268 311 156 1015 1158 1 965 514 28 28 784 memory auto 31.5 MiB 0.84 8771 212488 81670 120789 10029 71.8 MiB 1.28 0.02 4.24034 -4274.29 -4.24034 4.24034 0.91 0.00591498 0.00525545 0.632092 0.561616 -1 -1 -1 -1 46 13629 17 4.25198e+07 9.94461e+06 2.40571e+06 3068.51 6.49 2.43454 2.16131 81794 492802 -1 13067 13 2559 2889 592994 173675 4.10368 4.10368 -4803.02 -4.10368 -0.000474482 -0.000474482 3.09729e+06 3950.62 0.12 0.33 0.43 -1 -1 0.12 0.19988 0.181279 - k6_frac_N10_frac_chain_mem32K_40nm.xml mkSMAdapter4B.v common 24.37 vpr 81.55 MiB -1 -1 6.55 53024 5 1.65 -1 -1 39496 -1 -1 170 193 5 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 83508 193 205 2718 2652 1 1367 573 20 20 400 memory auto 40.7 MiB 3.02 11072 243231 85018 132684 25529 81.6 MiB 2.05 0.03 5.05891 -2813.63 -5.05891 5.05891 0.43 0.00798011 0.00703653 0.846187 0.756249 -1 -1 -1 -1 52 19118 33 2.07112e+07 1.1902e+07 1.31074e+06 3276.84 6.44 2.84139 2.53272 42580 268535 -1 16450 14 4598 11278 570237 127961 5.38192 5.38192 -3001.18 -5.38192 0 0 1.72518e+06 4312.96 0.06 0.45 0.23 -1 -1 0.06 0.306487 0.281362 - k6_frac_N10_frac_chain_mem32K_40nm.xml or1200.v common 66.97 vpr 107.66 MiB -1 -1 6.90 62616 8 3.11 -1 -1 40568 -1 -1 250 385 2 1 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 110248 385 362 4415 4299 1 2365 1000 26 26 676 io auto 52.9 MiB 8.14 30064 545782 201861 320153 23768 96.4 MiB 5.58 0.07 9.17025 -9814.95 -9.17025 9.17025 0.80 0.0163028 0.0152115 1.90499 1.74695 -1 -1 -1 -1 86 44693 20 3.69863e+07 1.49655e+07 3.69198e+06 5461.52 35.19 9.11242 8.32756 89040 769342 -1 41511 17 9662 32287 1739041 311622 9.36868 9.36868 -10331.7 -9.36868 0 0 4.67059e+06 6909.16 0.18 1.17 0.69 -1 -1 0.18 0.716853 0.668029 - k6_frac_N10_frac_chain_mem32K_40nm.xml raygentop.v common 22.37 vpr 83.04 MiB -1 -1 4.90 42944 3 0.55 -1 -1 37604 -1 -1 129 236 1 6 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 85036 236 305 3199 3011 1 1520 677 19 19 361 io auto 42.2 MiB 2.97 12761 268067 88565 164726 14776 83.0 MiB 2.08 0.03 4.74988 -2887.79 -4.74988 4.74988 0.39 0.00887262 0.00821018 0.850069 0.782416 -1 -1 -1 -1 62 24213 37 1.72706e+07 9.87633e+06 1.42198e+06 3939.00 7.42 3.57822 3.25701 40483 281719 -1 20603 18 6062 15441 1381198 347776 4.88181 4.88181 -3127.07 -4.88181 0 0 1.76637e+06 4892.99 0.06 0.70 0.24 -1 -1 0.06 0.408372 0.379499 - k6_frac_N10_frac_chain_mem32K_40nm.xml sha.v common 16.67 vpr 81.33 MiB -1 -1 3.50 44744 3 1.23 -1 -1 39752 -1 -1 141 38 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 83280 38 36 2739 2488 1 1022 215 17 17 289 clb auto 40.3 MiB 1.97 8926 42010 10393 28489 3128 81.3 MiB 0.94 0.02 10.0828 -2706.04 -10.0828 10.0828 0.30 0.00581633 0.00515675 0.417217 0.368285 -1 -1 -1 -1 58 14183 39 1.34605e+07 7.59905e+06 1.03370e+06 3576.80 5.06 2.06621 1.78557 31195 207102 -1 12451 20 4121 9643 348072 63845 10.9297 10.9297 -2988.87 -10.9297 0 0 1.31783e+06 4559.95 0.04 0.45 0.18 -1 -1 0.04 0.311517 0.277211 - k6_frac_N10_frac_chain_mem32K_40nm.xml spree.v common 15.04 vpr 72.55 MiB -1 -1 3.93 32244 16 0.46 -1 -1 34912 -1 -1 60 45 3 1 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 74296 45 32 1192 1151 1 782 141 14 14 196 memory auto 33.0 MiB 2.61 6900 30885 8865 18758 3262 72.6 MiB 0.66 0.01 10.7041 -7102.05 -10.7041 10.7041 0.20 0.00375059 0.00334308 0.345865 0.307399 -1 -1 -1 -1 60 13080 27 9.20055e+06 5.27364e+06 710723. 3626.14 4.65 1.49178 1.29898 21456 140545 -1 11406 14 3518 9267 727533 186037 11.4629 11.4629 -7580.27 -11.4629 0 0 894373. 4563.13 0.03 0.32 0.13 -1 -1 0.03 0.15979 0.145282 - k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision0.v common 80.41 vpr 230.75 MiB -1 -1 14.04 99996 5 7.02 -1 -1 66224 -1 -1 721 169 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 236292 169 197 23225 21365 1 6061 1087 34 34 1156 clb auto 145.3 MiB 11.54 37017 593203 196123 370826 26254 203.3 MiB 8.12 0.08 3.50768 -13965.8 -3.50768 3.50768 1.39 0.0314237 0.026993 3.68019 3.10409 -1 -1 -1 -1 46 58126 45 6.50233e+07 3.88578e+07 3.64223e+06 3150.72 21.83 13.775 11.4226 123264 752332 -1 51405 13 15223 24254 807106 167773 3.87082 3.87082 -15222.1 -3.87082 0 0 4.69209e+06 4058.90 0.20 1.57 0.63 -1 -1 0.20 1.51477 1.34949 - k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision1.v common 144.19 vpr 269.33 MiB -1 -1 12.21 122580 3 10.12 -1 -1 74072 -1 -1 768 115 0 40 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 275792 115 145 22864 19301 1 9609 1068 40 40 1600 mult_36 auto 143.1 MiB 11.43 79476 584967 186467 369840 28660 213.0 MiB 10.55 0.11 5.41341 -23480.4 -5.41341 5.41341 2.17 0.0319079 0.0275548 3.94511 3.37191 -1 -1 -1 -1 78 126298 33 9.16046e+07 5.72315e+07 8.23220e+06 5145.12 76.60 16.9981 14.2428 204032 1723206 -1 115064 14 29800 47012 6851687 1564903 5.46393 5.46393 -25542.6 -5.46393 0 0 1.04203e+07 6512.68 0.43 3.13 1.54 -1 -1 0.43 1.68782 1.49543 - k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision2.v common 305.89 vpr 1.03 GiB -1 -1 16.73 194960 3 6.23 -1 -1 152176 -1 -1 1699 149 0 179 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 1075592 149 182 55415 37074 1 28414 2209 80 80 6400 mult_36 auto 293.3 MiB 30.70 276200 2001029 706104 1220084 74841 1050.4 MiB 59.88 0.40 12.9413 -50214.8 -12.9413 12.9413 28.80 0.0899255 0.0755434 13.3433 11.2726 -1 -1 -1 -1 84 389613 48 3.90281e+08 1.62448e+08 3.63717e+07 5683.08 105.23 42.721 36.1082 857088 7768622 -1 366997 20 100923 120240 14759319 3128518 13.8463 13.8463 -54794.6 -13.8463 0 0 4.62462e+07 7225.96 2.39 8.04 7.35 -1 -1 2.39 4.60189 4.03624 - k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision3.v common 2.86 vpr 65.79 MiB -1 -1 0.98 23176 4 0.13 -1 -1 32552 -1 -1 15 11 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 67372 11 2 303 283 2 78 28 7 7 49 clb auto 26.2 MiB 0.22 262 1078 238 765 75 65.8 MiB 0.04 0.00 2.0391 -163.079 -2.0391 1.90116 0.04 0.00079628 0.000729774 0.0247413 0.0227926 -1 -1 -1 -1 28 333 12 1.07788e+06 808410 72669.7 1483.05 0.17 0.112952 0.0979406 3564 12808 -1 288 8 200 345 4799 1871 2.11979 1.94261 -165.174 -2.11979 0 0 87745.0 1790.71 0.00 0.03 0.01 -1 -1 0.00 0.022123 0.0200623 - k6_frac_N10_frac_chain_mem32K_40nm.xml LU8PEEng.v common 497.88 vpr 611.74 MiB -1 -1 77.76 452540 97 80.96 -1 -1 112748 -1 -1 2151 114 45 8 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 626424 114 102 35834 31925 1 16897 2420 56 56 3136 clb auto 279.1 MiB 70.81 224666 1805060 668533 1109456 27071 611.7 MiB 64.72 0.55 75.1122 -53345.7 -75.1122 75.1122 13.40 0.101362 0.0900982 12.5616 10.6146 -1 -1 -1 -1 88 335261 49 1.8697e+08 1.43756e+08 1.84122e+07 5871.24 134.02 47.1194 39.1334 423474 3861999 -1 307396 22 65997 258491 13780558 2468289 76.0017 76.0017 -64554.6 -76.0017 0 0 2.30976e+07 7365.31 1.10 10.19 3.64 -1 -1 1.10 6.17356 5.28565 - k6_frac_N10_frac_chain_mem32K_40nm.xml LU32PEEng.v common 2692.08 vpr 2.42 GiB -1 -1 242.89 1496112 97 858.98 -1 -1 355104 -1 -1 7513 114 168 32 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 2535652 114 102 120350 108159 1 57345 7929 103 103 10609 clb auto 892.1 MiB 262.75 1003045 9728742 4018902 5663791 46049 2004.2 MiB 480.49 3.14 72.4024 -329114 -72.4024 72.4024 47.02 0.346214 0.301919 48.3359 40.4685 -1 -1 -1 -1 124 1323068 31 6.46441e+08 5.09602e+08 8.61045e+07 8116.18 587.22 199.076 163.111 1699828 18865638 -1 1270470 22 208280 903882 50603811 8413337 73.1548 73.1548 -457667 -73.1548 0 0 1.09063e+08 10280.2 5.97 39.87 20.11 -1 -1 5.97 22.9615 19.528 - k6_frac_N10_frac_chain_mem32K_40nm.xml mcml.v common 5532.81 vpr 2.11 GiB -1 -1 301.74 1243688 25 2880.43 -1 -1 369296 -1 -1 6763 36 159 27 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 2217356 36 356 185159 159806 1 63309 7341 98 98 9604 clb auto 1056.9 MiB 254.50 722860 10062756 3907097 5967087 188572 2054.1 MiB 616.55 3.41 47.3986 -303024 -47.3986 47.3986 45.23 0.338735 0.29516 55.1437 45.9685 -1 -1 -1 -1 126 949879 27 5.9175e+08 4.62277e+08 7.90658e+07 8232.59 1240.96 214.222 174.297 1551988 17290692 -1 919494 20 208733 484691 28296676 5077184 47.6251 47.6251 -321060 -47.6251 0 0 9.99791e+07 10410.1 5.20 27.91 18.77 -1 -1 5.20 19.465 16.7334 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +k6_frac_N10_frac_chain_mem32K_40nm.xml arm_core.v common 252.57 vpr 243.06 MiB -1 -1 25.79 122128 20 53.12 -1 -1 66816 -1 -1 855 133 25 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 248896 133 179 14228 14085 1 7100 1192 37 37 1369 clb auto 137.3 MiB 29.37 266135 116292 607624 202148 389460 16016 197.5 MiB 11.96 0.11 36.2085 22.0917 -209321 -22.0917 22.0917 1.30 0.0362607 0.0326055 4.24626 3.52876 -1 -1 -1 -1 98 183926 48 7.54166e+07 5.97803e+07 8.55474e+06 6248.90 115.49 17.5043 14.4482 190708 1812325 -1 160975 15 32365 127542 9954229 1823700 23.0474 23.0474 -216590 -23.0474 0 0 1.08529e+07 7927.61 0.42 3.70 1.34 -1 -1 0.42 1.8165 1.60589 +k6_frac_N10_frac_chain_mem32K_40nm.xml bgm.v common 395.52 vpr 711.73 MiB -1 -1 46.70 618468 14 73.53 -1 -1 121516 -1 -1 2726 257 0 11 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 728808 257 32 36080 33722 1 19365 3026 63 63 3969 clb auto 330.3 MiB 62.66 1 247291 2190826 791581 1368690 30555 711.7 MiB 75.23 0.60 57.7426 19.5687 -25817.2 -19.5687 19.5687 14.64 0.100048 0.0915718 12.244 9.79811 -1 -1 -1 -1 72 383840 34 2.36641e+08 1.51273e+08 1.98694e+07 5006.15 77.18 35.852 29.2404 498330 4113940 -1 361511 21 93841 425892 16850398 2639390 19.686 19.686 -26274.8 -19.686 0 0 2.48734e+07 6266.93 1.20 10.41 2.87 -1 -1 1.20 5.89141 5.06974 +k6_frac_N10_frac_chain_mem32K_40nm.xml blob_merge.v common 57.20 parmys 254.52 MiB -1 -1 10.12 260628 5 3.65 -1 -1 54908 -1 -1 495 36 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 144616 36 100 10178 7632 1 2724 631 29 29 841 clb auto 96.8 MiB 14.41 97439 42545 241376 72681 154090 14605 140.5 MiB 3.96 0.04 27.6725 14.8675 -2411.82 -14.8675 14.8675 0.78 0.0177993 0.0163606 1.88812 1.64858 -1 -1 -1 -1 70 67015 21 4.4999e+07 2.66775e+07 3.87716e+06 4610.18 15.46 5.57727 4.81634 101140 791177 -1 62172 16 12850 65502 2552081 382161 15.0937 15.0937 -2598.2 -15.0937 0 0 4.87732e+06 5799.43 0.26 1.50 0.74 -1 -1 0.26 0.958764 0.852505 +k6_frac_N10_frac_chain_mem32K_40nm.xml boundtop.v common 16.43 vpr 71.90 MiB -1 -1 10.97 44964 3 0.60 -1 -1 35988 -1 -1 47 196 1 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 73624 196 193 1201 1346 1 592 437 15 15 225 io auto 33.2 MiB 0.53 6911 3057 146253 37880 94608 13765 71.9 MiB 0.66 0.01 3.04383 2.21331 -1098.79 -2.21331 2.21331 0.27 0.00361775 0.00339713 0.322435 0.299654 -1 -1 -1 -1 38 5820 21 1.03862e+07 3.08102e+06 544116. 2418.30 1.87 0.930701 0.862606 21558 109668 -1 4978 10 1591 2448 151620 45926 2.57055 2.57055 -1194.35 -2.57055 0 0 690508. 3068.92 0.02 0.10 0.06 -1 -1 0.02 0.0752757 0.0718822 +k6_frac_N10_frac_chain_mem32K_40nm.xml ch_intrinsics.v common 2.22 vpr 67.36 MiB -1 -1 0.22 18464 3 0.09 -1 -1 33104 -1 -1 68 99 1 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 68976 99 130 344 474 1 228 298 12 12 144 clb auto 27.9 MiB 0.16 1675 738 66963 20485 31997 14481 67.4 MiB 0.11 0.00 2.18408 1.84343 -119.22 -1.84343 1.84343 0.10 0.000565844 0.000528749 0.0413467 0.0386163 -1 -1 -1 -1 38 1412 19 5.66058e+06 4.21279e+06 319126. 2216.15 0.76 0.275337 0.250779 12802 62767 -1 1311 13 501 760 32489 10211 2.02284 2.02284 -140.313 -2.02284 0 0 406307. 2821.58 0.01 0.03 0.04 -1 -1 0.01 0.0232764 0.0218676 +k6_frac_N10_frac_chain_mem32K_40nm.xml diffeq1.v common 8.29 vpr 70.50 MiB -1 -1 0.44 22308 5 0.20 -1 -1 33800 -1 -1 32 162 0 5 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 72196 162 96 1075 892 1 666 295 16 16 256 mult_36 auto 30.9 MiB 0.48 8583 5421 87604 32328 48998 6278 70.5 MiB 0.52 0.01 17.0345 15.9116 -1282.7 -15.9116 15.9116 0.35 0.00161197 0.00150016 0.239728 0.223735 -1 -1 -1 -1 56 11035 40 1.21132e+07 3.70461e+06 870502. 3400.40 4.56 0.816605 0.758167 27064 172478 -1 9127 22 3456 5983 1005760 304802 17.1604 17.1604 -1414.2 -17.1604 0 0 1.11200e+06 4343.75 0.03 0.27 0.11 -1 -1 0.03 0.101075 0.0953089 +k6_frac_N10_frac_chain_mem32K_40nm.xml diffeq2.v common 9.29 vpr 68.90 MiB -1 -1 0.31 21540 5 0.14 -1 -1 33800 -1 -1 21 66 0 5 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 70552 66 96 778 595 1 468 188 16 16 256 mult_36 auto 29.8 MiB 0.57 6929 3851 46456 15752 25638 5066 68.9 MiB 0.28 0.00 13.1599 11.7559 -749.569 -11.7559 11.7559 0.33 0.0011598 0.00108633 0.134145 0.126067 -1 -1 -1 -1 42 9288 42 1.21132e+07 3.11177e+06 666202. 2602.35 6.12 0.737694 0.68405 24768 131944 -1 7591 22 3377 6818 1297563 374051 12.9969 12.9969 -873.1 -12.9969 0 0 835786. 3264.79 0.03 0.28 0.08 -1 -1 0.03 0.0745914 0.0703876 +k6_frac_N10_frac_chain_mem32K_40nm.xml mkDelayWorker32B.v common 50.48 vpr 316.59 MiB -1 -1 11.09 116552 5 3.66 -1 -1 44796 -1 -1 468 506 44 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 324192 506 553 3236 3734 1 2870 1571 50 50 2500 memory auto 57.5 MiB 3.70 42225 16423 1151825 559617 409148 183060 316.6 MiB 3.18 0.04 9.60271 7.54011 -2101.2 -7.54011 7.54011 9.17 0.0138822 0.012928 1.64496 1.51199 -1 -1 -1 -1 36 24075 16 1.47946e+08 4.9335e+07 6.56144e+06 2624.58 10.61 5.42964 5.09228 253220 1325892 -1 23190 15 4220 5713 1048715 269288 7.91646 7.91646 -2520.23 -7.91646 0 0 8.08089e+06 3232.35 0.38 0.81 0.88 -1 -1 0.38 0.610851 0.579925 +k6_frac_N10_frac_chain_mem32K_40nm.xml mkPktMerge.v common 11.56 vpr 73.19 MiB -1 -1 1.37 25764 2 0.13 -1 -1 34464 -1 -1 32 311 15 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 74944 311 156 1015 1158 1 965 514 28 28 784 memory auto 34.0 MiB 0.80 19108 8800 191908 68666 113655 9587 73.2 MiB 0.67 0.01 4.8046 3.96043 -4267.42 -3.96043 3.96043 0.70 0.00276535 0.00246069 0.316785 0.282016 -1 -1 -1 -1 40 14495 38 4.25198e+07 9.94461e+06 2.13295e+06 2720.61 5.33 1.41992 1.27782 78662 432578 -1 13570 13 2569 2925 685756 206450 4.25544 4.25544 -4882.54 -4.25544 0 0 2.67004e+06 3405.67 0.10 0.23 0.28 -1 -1 0.10 0.119725 0.111356 +k6_frac_N10_frac_chain_mem32K_40nm.xml mkSMAdapter4B.v common 22.13 vpr 83.45 MiB -1 -1 4.85 51328 5 1.46 -1 -1 39324 -1 -1 166 193 5 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 85456 193 205 2718 2652 1 1364 569 20 20 400 memory auto 44.0 MiB 2.92 22680 10809 243340 85140 132100 26100 83.5 MiB 1.86 0.02 6.63944 5.2954 -2886 -5.2954 5.2954 0.53 0.00476311 0.00438704 0.868366 0.779949 -1 -1 -1 -1 48 20190 40 2.07112e+07 1.16864e+07 1.23055e+06 3076.38 7.30 2.43842 2.19541 41384 246652 -1 16751 14 4968 12159 623503 134505 5.52631 5.52631 -3041.76 -5.52631 0 0 1.57501e+06 3937.52 0.08 0.34 0.18 -1 -1 0.08 0.259371 0.243916 +k6_frac_N10_frac_chain_mem32K_40nm.xml or1200.v common 35.15 vpr 100.80 MiB -1 -1 4.23 62244 8 2.83 -1 -1 41916 -1 -1 247 385 2 1 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 103224 385 362 4415 4299 1 2357 997 26 26 676 io auto 57.2 MiB 5.42 60299 29833 558533 214306 321077 23150 97.5 MiB 4.08 0.05 12.9571 9.08653 -9982.73 -9.08653 9.08653 0.62 0.0118283 0.0111006 1.51022 1.3448 -1 -1 -1 -1 86 44651 39 3.69863e+07 1.48038e+07 3.69198e+06 5461.52 12.41 5.80252 5.20681 89040 769342 -1 41400 21 10076 33666 1743244 311635 9.30121 9.30121 -10341.1 -9.30121 0 0 4.67059e+06 6909.16 0.16 0.99 0.79 -1 -1 0.16 0.617813 0.571762 +k6_frac_N10_frac_chain_mem32K_40nm.xml raygentop.v common 15.37 vpr 84.48 MiB -1 -1 2.70 42844 3 0.56 -1 -1 36996 -1 -1 127 236 1 6 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 86512 236 305 3199 3011 1 1523 675 19 19 361 io auto 45.5 MiB 1.98 25195 12600 275862 99499 162512 13851 84.5 MiB 1.35 0.02 6.75568 4.64882 -2837.55 -4.64882 4.64882 0.31 0.00549613 0.00510822 0.566275 0.514224 -1 -1 -1 -1 62 23840 49 1.72706e+07 9.76854e+06 1.42198e+06 3939.00 5.85 2.24814 2.0487 40483 281719 -1 20436 15 5933 14959 1286779 322599 4.8554 4.8554 -3009.05 -4.8554 0 0 1.76637e+06 4892.99 0.06 0.47 0.17 -1 -1 0.06 0.250698 0.237004 +k6_frac_N10_frac_chain_mem32K_40nm.xml sha.v common 9.91 vpr 83.59 MiB -1 -1 2.10 44688 3 1.07 -1 -1 39952 -1 -1 139 38 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 85596 38 36 2739 2488 1 1049 213 16 16 256 clb auto 43.3 MiB 1.18 14059 8662 34503 7871 24229 2403 83.6 MiB 0.52 0.01 11.7745 10.1195 -2670 -10.1195 10.1195 0.19 0.00383665 0.00344661 0.246909 0.216894 -1 -1 -1 -1 58 13567 49 1.21132e+07 7.49127e+06 904541. 3533.36 2.69 1.35061 1.18242 27572 180683 -1 12180 19 4139 9511 324475 59593 10.8291 10.8291 -2841.73 -10.8291 0 0 1.15318e+06 4504.63 0.04 0.30 0.11 -1 -1 0.04 0.222745 0.202612 +k6_frac_N10_frac_chain_mem32K_40nm.xml spree.v common 16.93 vpr 73.76 MiB -1 -1 1.98 32292 16 0.59 -1 -1 34884 -1 -1 61 45 3 1 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 75528 45 32 1192 1151 1 792 142 14 14 196 memory auto 35.0 MiB 2.68 10043 6565 23822 6254 15540 2028 73.8 MiB 0.59 0.01 13.3138 11.239 -7207.5 -11.239 11.239 0.24 0.00448329 0.00410023 0.332932 0.298965 -1 -1 -1 -1 64 12481 30 9.20055e+06 5.32753e+06 762053. 3888.03 8.48 2.38399 2.14556 22040 150681 -1 10537 14 3342 8767 663858 168108 11.6206 11.6206 -7527.99 -11.6206 0 0 953435. 4864.47 0.04 0.35 0.18 -1 -1 0.04 0.188032 0.175235 +k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision0.v common 69.35 vpr 236.99 MiB -1 -1 10.22 98344 5 11.48 -1 -1 65608 -1 -1 723 169 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 242676 169 197 23225 21365 1 6048 1089 34 34 1156 clb auto 158.7 MiB 7.61 135279 37585 577889 189065 363964 24860 205.9 MiB 7.38 0.09 6.79679 3.48144 -13874.2 -3.48144 3.48144 1.20 0.0367946 0.0320323 3.53071 2.995 -1 -1 -1 -1 46 59522 44 6.50233e+07 3.89656e+07 3.64223e+06 3150.72 18.71 11.9208 10.1086 123264 752332 -1 52482 14 15977 25751 857559 179259 3.70894 3.70894 -15069.9 -3.70894 0 0 4.69209e+06 4058.90 0.20 1.32 0.74 -1 -1 0.20 1.26195 1.14674 +k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision1.v common 107.97 vpr 304.24 MiB -1 -1 10.05 121396 3 10.65 -1 -1 73876 -1 -1 761 115 0 40 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 311540 115 145 22864 19301 1 9598 1061 40 40 1600 mult_36 auto 157.2 MiB 7.70 216707 80047 579824 190762 365771 23291 228.1 MiB 8.16 0.08 7.82034 5.55779 -23040.2 -5.55779 5.55779 2.29 0.0215767 0.0190627 3.0521 2.59567 -1 -1 -1 -1 82 124601 48 9.16046e+07 5.68542e+07 8.58295e+06 5364.35 54.09 17.337 14.8874 207228 1787768 -1 113911 14 29248 44540 5876852 1327853 5.72835 5.72835 -25879.2 -5.72835 0 0 1.07702e+07 6731.38 0.48 2.39 1.35 -1 -1 0.48 1.37334 1.26744 +k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision2.v common 273.92 vpr 939.73 MiB -1 -1 13.85 194876 3 5.84 -1 -1 151880 -1 -1 1693 149 0 179 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 962288 149 182 55415 37074 1 28410 2203 80 80 6400 mult_36 auto 318.0 MiB 25.88 1 279853 2022451 708543 1241399 72509 939.7 MiB 46.68 0.31 27.175 13.8922 -50923.4 -13.8922 13.8922 30.81 0.0656328 0.0591708 10.1964 8.76379 -1 -1 -1 -1 84 384146 39 3.90281e+08 1.62125e+08 3.63717e+07 5683.08 102.27 44.1695 37.9463 857088 7768622 -1 367849 21 98815 117998 14005042 3008515 14.8174 14.8174 -56086.4 -14.8174 0 0 4.62462e+07 7225.96 2.53 7.16 5.76 -1 -1 2.53 4.08161 3.62281 +k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision3.v common 2.16 vpr 66.80 MiB -1 -1 0.44 22692 4 0.11 -1 -1 33008 -1 -1 15 11 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 68408 11 2 303 283 2 85 28 7 7 49 clb auto 27.5 MiB 0.20 462 294 1372 325 946 101 66.8 MiB 0.04 0.00 2.20626 2.0391 -157.497 -2.0391 1.90116 0.04 0.000720929 0.000639654 0.0290609 0.0262716 -1 -1 -1 -1 26 435 16 1.07788e+06 808410 68696.0 1401.96 0.33 0.197388 0.171083 3516 12294 -1 372 15 293 527 8455 3007 2.11125 1.89738 -161.275 -2.11125 0 0 84249.8 1719.38 0.00 0.04 0.01 -1 -1 0.00 0.0298989 0.0270866 +k6_frac_N10_frac_chain_mem32K_40nm.xml LU8PEEng.v common 455.11 vpr 590.73 MiB -1 -1 48.28 451352 97 86.37 -1 -1 110592 -1 -1 2144 114 45 8 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 604904 114 102 35834 31925 1 16899 2413 56 56 3136 clb auto 311.6 MiB 54.53 934215 218876 1830527 680211 1116146 34170 590.7 MiB 76.63 0.49 142.326 73.8063 -53329.6 -73.8063 73.8063 12.23 0.089699 0.0819079 14.4758 11.8124 -1 -1 -1 -1 86 331425 45 1.8697e+08 1.43379e+08 1.79819e+07 5734.03 137.97 42.5414 34.9669 420342 3799571 -1 301758 22 66654 261893 13479107 2432831 73.243 73.243 -66857.7 -73.243 0 0 2.27638e+07 7258.87 1.06 8.85 2.83 -1 -1 1.06 5.46509 4.6883 +k6_frac_N10_frac_chain_mem32K_40nm.xml LU32PEEng.v common 5085.56 vpr 2.00 GiB -1 -1 160.14 1452796 97 895.48 -1 -1 354436 -1 -1 7478 114 168 32 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 2093276 114 102 120350 108159 1 57530 7894 102 102 10404 clb auto 1002.8 MiB 178.54 5 937620 9671512 3979219 5647220 45073 1897.7 MiB 498.57 2.88 186.365 72.9848 -317425 -72.9848 72.9848 40.28 0.354498 0.271431 49.7107 39.17 -1 -1 -1 -1 112 1263786 24 6.36957e+08 5.07716e+08 7.72010e+07 7420.32 3176.91 152.247 121.841 1584492 16730607 -1 1213440 21 216534 945339 50802610 8610369 74.2493 74.2493 -440401 -74.2493 0 0 9.78368e+07 9403.76 4.47 30.31 13.30 -1 -1 4.47 18.2361 15.3655 +k6_frac_N10_frac_chain_mem32K_40nm.xml mcml.v common 4271.47 vpr 2.07 GiB -1 -1 192.31 1212884 25 2963.89 -1 -1 367440 -1 -1 6759 36 159 27 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 2170912 36 356 185159 159806 1 63407 7337 98 98 9604 clb auto 1175.9 MiB 160.15 4 726368 10055420 3866973 6000930 187517 2081.1 MiB 528.58 3.09 138.532 56.0715 -322739 -56.0715 56.0715 35.68 0.267313 0.237876 43.3544 35.7269 -1 -1 -1 -1 124 951238 25 5.9175e+08 4.62062e+08 7.79543e+07 8116.86 256.86 141.996 117.65 1542384 17086260 -1 922124 23 211344 490899 28645964 5116509 55.8407 55.8407 -362186 -55.8407 0 0 9.87684e+07 10284.1 4.81 23.81 14.26 -1 -1 4.81 17.1091 14.4811 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 cf218b6f42d..8d45c568ac5 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 ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - k6_frac_N10_frac_chain_mem32K_40nm.xml arm_core.v common 220.60 vpr 258.80 MiB -1 -1 32.77 121676 20 41.63 -1 -1 67228 -1 -1 857 133 25 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 265012 133 179 14228 14085 1 7013 1194 37 37 1369 clb auto 123.2 MiB 52.98 117241 583646 194344 373759 15543 184.7 MiB 13.08 0.13 22.6552 -207062 -22.6552 22.6552 1.62 0.0407574 0.0356824 4.19626 3.54119 -1 -1 -1 -1 102 177496 34 7.54166e+07 5.98881e+07 8.84326e+06 6459.65 56.40 16.9397 14.0699 193444 1864326 -1 162723 14 31022 120994 9555365 1733447 24.3598 24.3598 -215921 -24.3598 0 0 1.10984e+07 8106.95 0.39 4.72 1.75 -1 -1 0.39 2.18738 1.88506 - k6_frac_N10_frac_chain_mem32K_40nm.xml bgm.v common 459.06 vpr 747.54 MiB -1 -1 66.92 634636 14 66.21 -1 -1 121812 -1 -1 2741 257 0 11 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 765484 257 32 36080 33722 1 19295 3041 63 63 3969 clb auto 299.9 MiB 91.07 246576 2183219 779788 1375542 27889 747.5 MiB 63.52 0.58 18.719 -25586.3 -18.719 18.719 16.30 0.0997124 0.0890543 11.1519 9.38394 -1 -1 -1 -1 70 390691 45 2.36641e+08 1.52081e+08 1.93981e+07 4887.41 92.61 39.2846 32.3608 494362 4028736 -1 366303 20 98427 446372 17944375 2776232 18.5784 18.5784 -26041.2 -18.5784 0 0 2.43753e+07 6141.41 1.21 11.43 3.66 -1 -1 1.21 5.85046 5.10781 - k6_frac_N10_frac_chain_mem32K_40nm.xml blob_merge.v common 78.97 parmys 261.77 MiB -1 -1 15.49 268052 5 3.27 -1 -1 55068 -1 -1 499 36 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 151748 36 100 10178 7632 1 2726 635 29 29 841 clb auto 89.3 MiB 20.97 41290 240699 69942 155074 15683 136.3 MiB 4.72 0.05 15.0315 -2426.67 -15.0315 15.0315 0.96 0.0200853 0.0181387 1.92947 1.71159 -1 -1 -1 -1 68 72348 36 4.4999e+07 2.68931e+07 3.78783e+06 4503.96 21.04 7.0819 6.06747 99460 760244 -1 61879 16 12452 65489 2491571 367156 14.9612 14.9612 -2605.63 -14.9612 0 0 4.70015e+06 5588.76 0.17 1.60 0.65 -1 -1 0.17 0.96287 0.854503 - k6_frac_N10_frac_chain_mem32K_40nm.xml boundtop.v common 26.86 vpr 70.02 MiB -1 -1 18.23 46068 3 0.72 -1 -1 35452 -1 -1 48 196 1 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 71704 196 193 1201 1346 1 606 438 15 15 225 io auto 30.9 MiB 0.83 3085 145032 37661 93382 13989 70.0 MiB 0.74 0.01 2.25666 -1099.55 -2.25666 2.25666 0.23 0.00365063 0.00340349 0.337081 0.313383 -1 -1 -1 -1 40 5631 16 1.03862e+07 3.13491e+06 568276. 2525.67 3.82 1.44063 1.3189 21782 113316 -1 4895 13 1543 2324 133236 38778 2.51692 2.51692 -1174.27 -2.51692 0 0 712852. 3168.23 0.02 0.16 0.10 -1 -1 0.02 0.124338 0.115851 - k6_frac_N10_frac_chain_mem32K_40nm.xml ch_intrinsics.v common 3.54 vpr 65.74 MiB -1 -1 0.46 18940 3 0.09 -1 -1 33148 -1 -1 68 99 1 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 67316 99 130 344 474 1 227 298 12 12 144 clb auto 26.6 MiB 0.27 728 65968 18859 34313 12796 65.7 MiB 0.23 0.00 1.84343 -119.549 -1.84343 1.84343 0.14 0.00129356 0.00122501 0.0899037 0.0850148 -1 -1 -1 -1 38 1521 13 5.66058e+06 4.21279e+06 319126. 2216.15 1.20 0.526166 0.481346 12802 62767 -1 1190 8 347 541 19340 5772 2.02505 2.02505 -132.661 -2.02505 0 0 406307. 2821.58 0.01 0.04 0.06 -1 -1 0.01 0.0292785 0.0272629 - k6_frac_N10_frac_chain_mem32K_40nm.xml diffeq1.v common 17.74 vpr 68.76 MiB -1 -1 0.55 22212 5 0.17 -1 -1 34256 -1 -1 32 162 0 5 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 70408 162 96 1075 892 1 665 295 16 16 256 mult_36 auto 29.5 MiB 0.46 5192 86623 30832 48552 7239 68.8 MiB 0.65 0.01 15.9204 -1248.52 -15.9204 15.9204 0.26 0.00323801 0.00305102 0.296153 0.278827 -1 -1 -1 -1 52 10572 36 1.21132e+07 3.70461e+06 805949. 3148.24 13.61 1.81362 1.666 26552 162987 -1 8855 19 3315 5650 841386 247320 17.1128 17.1128 -1334.38 -17.1128 0 0 1.06067e+06 4143.25 0.03 0.31 0.14 -1 -1 0.03 0.139605 0.129607 - k6_frac_N10_frac_chain_mem32K_40nm.xml diffeq2.v common 8.37 vpr 67.73 MiB -1 -1 0.43 21352 5 0.12 -1 -1 33516 -1 -1 21 66 0 5 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 69356 66 96 778 595 1 467 188 16 16 256 mult_36 auto 28.1 MiB 0.60 3665 46994 16162 26226 4606 67.7 MiB 0.42 0.01 12.0063 -749.927 -12.0063 12.0063 0.26 0.00230616 0.00217938 0.211958 0.200407 -1 -1 -1 -1 66 8504 40 1.21132e+07 3.11177e+06 1035765. 4045.96 4.62 0.810993 0.747228 26044 153858 -1 7152 21 3778 7722 1367723 423082 13.0897 13.0897 -855.954 -13.0897 0 0 1.00276e+06 3917.05 0.03 0.37 0.14 -1 -1 0.03 0.111581 0.103372 - k6_frac_N10_frac_chain_mem32K_40nm.xml LU8PEEng.v common 1424.18 vpr 619.46 MiB -1 -1 76.20 454548 97 74.10 -1 -1 112760 -1 -1 2151 114 45 8 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 634332 114 102 35834 31925 1 16897 2420 56 56 3136 clb auto 278.6 MiB 75.33 232887 1837540 680686 1129201 27653 608.1 MiB 55.72 0.49 72.8941 -53639.2 -72.8941 72.8941 12.76 0.100317 0.0831972 12.1805 10.1888 -1 -1 -1 -1 90 347302 35 1.8697e+08 1.43756e+08 1.87445e+07 5977.21 1073.10 61.9545 50.6787 426610 3924124 -1 318054 23 68377 268167 14385228 2561497 73.8231 73.8231 -64614.2 -73.8231 0 0 2.34582e+07 7480.28 1.30 10.84 3.69 -1 -1 1.30 6.47983 5.55553 - k6_frac_N10_frac_chain_mem32K_40nm.xml mkDelayWorker32B.v common 67.14 vpr 349.72 MiB -1 -1 17.52 118684 5 3.19 -1 -1 44700 -1 -1 482 506 44 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 358112 506 553 3236 3734 1 2871 1585 50 50 2500 memory auto 52.0 MiB 6.68 15936 1193158 577376 425225 190557 349.7 MiB 5.83 0.07 7.10685 -2128.82 -7.10685 7.10685 10.04 0.0231676 0.0209658 3.091 2.77392 -1 -1 -1 -1 38 22888 13 1.47946e+08 5.00895e+07 6.86579e+06 2746.32 11.67 8.40888 7.63323 258216 1426232 -1 22075 13 4031 5658 1086587 273830 7.72559 7.72559 -2477.01 -7.72559 0 0 8.69102e+06 3476.41 0.39 1.00 1.29 -1 -1 0.39 0.799737 0.740311 - k6_frac_N10_frac_chain_mem32K_40nm.xml mkPktMerge.v common 15.42 vpr 80.04 MiB -1 -1 1.42 26020 2 0.13 -1 -1 34232 -1 -1 32 311 15 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 81964 311 156 1015 1158 1 965 514 28 28 784 memory auto 31.4 MiB 0.84 8982 206314 76497 119197 10620 72.3 MiB 1.22 0.02 4.5269 -4391.67 -4.5269 4.5269 0.93 0.00579142 0.00513528 0.604532 0.536129 -1 -1 -1 -1 40 14593 15 4.25198e+07 9.94461e+06 2.13295e+06 2720.61 7.26 2.55624 2.26242 78662 432578 -1 13692 13 2679 3112 717136 216657 4.28969 4.28969 -5035.02 -4.28969 0 0 2.67004e+06 3405.67 0.10 0.36 0.37 -1 -1 0.10 0.216825 0.197387 - k6_frac_N10_frac_chain_mem32K_40nm.xml mkSMAdapter4B.v common 39.85 vpr 81.62 MiB -1 -1 8.43 52680 5 1.64 -1 -1 39440 -1 -1 170 193 5 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 83584 193 205 2718 2652 1 1367 573 20 20 400 memory auto 40.8 MiB 3.01 10921 238473 79955 132805 25713 81.6 MiB 1.97 0.03 4.92269 -2810.7 -4.92269 4.92269 0.43 0.00749299 0.00680289 0.815358 0.734533 -1 -1 -1 -1 46 19734 42 2.07112e+07 1.1902e+07 1.18195e+06 2954.87 20.16 3.52581 3.11318 40984 239309 -1 16952 15 5126 12547 615330 132325 5.17533 5.17533 -3082.01 -5.17533 0 0 1.52036e+06 3800.91 0.05 0.45 0.20 -1 -1 0.05 0.304205 0.277623 - k6_frac_N10_frac_chain_mem32K_40nm.xml or1200.v common 52.28 vpr 133.93 MiB -1 -1 6.89 62664 8 3.09 -1 -1 40824 -1 -1 250 385 2 1 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 137148 385 362 4415 4299 1 2365 1000 26 26 676 io auto 53.1 MiB 8.07 30144 550780 207283 320078 23419 96.1 MiB 5.72 0.07 9.01641 -9994.92 -9.01641 9.01641 0.76 0.0175005 0.0163837 2.00438 1.84436 -1 -1 -1 -1 106 42932 15 3.69863e+07 1.49655e+07 4.42570e+06 6546.89 20.29 8.10528 7.4405 97812 938682 -1 40817 16 8863 29554 1529165 270024 9.38639 9.38639 -10275 -9.38639 0 0 5.60562e+06 8292.34 0.21 1.07 0.90 -1 -1 0.21 0.671683 0.625212 - k6_frac_N10_frac_chain_mem32K_40nm.xml raygentop.v common 20.40 vpr 83.15 MiB -1 -1 4.95 42652 3 0.69 -1 -1 37712 -1 -1 129 236 1 6 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 85144 236 305 3199 3011 1 1520 677 19 19 361 io auto 42.3 MiB 2.96 12613 265096 95493 155775 13828 83.1 MiB 2.04 0.03 4.87079 -2867.74 -4.87079 4.87079 0.39 0.00874694 0.00809124 0.837199 0.769496 -1 -1 -1 -1 60 22507 29 1.72706e+07 9.87633e+06 1.37250e+06 3801.94 5.31 2.82995 2.58049 40123 275431 -1 20290 17 5897 15357 1368544 349388 4.89215 4.89215 -3057.94 -4.89215 0 0 1.72840e+06 4787.81 0.06 0.66 0.24 -1 -1 0.06 0.37961 0.351635 - k6_frac_N10_frac_chain_mem32K_40nm.xml sha.v common 18.68 vpr 81.04 MiB -1 -1 3.48 45112 3 1.23 -1 -1 39672 -1 -1 141 38 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 82988 38 36 2739 2488 1 1022 215 17 17 289 clb auto 40.1 MiB 1.97 8958 42653 11395 28389 2869 81.0 MiB 0.93 0.01 10.0306 -2595.46 -10.0306 10.0306 0.30 0.00563668 0.00499161 0.411349 0.362575 -1 -1 -1 -1 58 15080 45 1.34605e+07 7.59905e+06 1.03370e+06 3576.80 7.09 3.0793 2.62682 31195 207102 -1 12819 22 4248 9862 350375 63434 10.8941 10.8941 -2909.82 -10.8941 0 0 1.31783e+06 4559.95 0.04 0.45 0.18 -1 -1 0.04 0.322361 0.28551 - k6_frac_N10_frac_chain_mem32K_40nm.xml spree.v common 14.62 vpr 72.09 MiB -1 -1 3.90 32592 16 0.46 -1 -1 34784 -1 -1 60 45 3 1 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 73824 45 32 1192 1151 1 782 141 14 14 196 memory auto 32.6 MiB 2.64 6823 26859 7335 15944 3580 72.1 MiB 0.56 0.01 10.958 -7233.76 -10.958 10.958 0.20 0.00348886 0.00309362 0.282542 0.250806 -1 -1 -1 -1 66 13449 49 9.20055e+06 5.27364e+06 787562. 4018.17 4.34 1.29546 1.12707 22236 154735 -1 10952 14 3335 8795 693161 168301 11.3764 11.3764 -7707.18 -11.3764 0 0 978561. 4992.66 0.03 0.31 0.14 -1 -1 0.03 0.156586 0.142149 - k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision0.v common 70.08 vpr 230.16 MiB -1 -1 13.83 100176 5 5.66 -1 -1 66176 -1 -1 721 169 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 235688 169 197 23225 21365 1 6061 1087 34 34 1156 clb auto 145.2 MiB 11.37 38474 604375 204189 371506 28680 203.8 MiB 8.13 0.08 3.46077 -13892.2 -3.46077 3.46077 1.39 0.03105 0.0265371 3.68938 3.11547 -1 -1 -1 -1 48 59150 27 6.50233e+07 3.88578e+07 3.79520e+06 3283.05 12.78 10.4783 8.76719 124420 775892 -1 52898 13 15534 24900 864227 176456 3.4636 3.4636 -15245.2 -3.4636 0 0 4.86353e+06 4207.21 0.20 1.57 0.65 -1 -1 0.20 1.46742 1.31137 - k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision1.v common 290.27 vpr 265.57 MiB -1 -1 11.65 122540 3 9.69 -1 -1 74020 -1 -1 768 115 0 40 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 271948 115 145 22864 19301 1 9609 1068 40 40 1600 mult_36 auto 142.9 MiB 11.46 77552 595881 196750 373726 25405 212.8 MiB 10.18 0.11 5.13349 -22954.5 -5.13349 5.13349 1.96 0.0315004 0.027208 3.80196 3.23508 -1 -1 -1 -1 76 129415 35 9.16046e+07 5.72315e+07 8.06023e+06 5037.64 224.38 20.2923 16.9388 200832 1659634 -1 114258 16 31257 49053 7202028 1662365 5.39064 5.39064 -25594 -5.39064 0 0 1.00808e+07 6300.50 0.41 3.41 1.46 -1 -1 0.41 1.81066 1.60735 - k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision2.v common 283.85 vpr 1.02 GiB -1 -1 16.34 195452 3 5.92 -1 -1 152084 -1 -1 1699 149 0 179 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 1072748 149 182 55415 37074 1 28414 2209 80 80 6400 mult_36 auto 290.2 MiB 30.79 283700 2029789 714222 1242257 73310 1047.6 MiB 50.81 0.36 13.4478 -51665.2 -13.4478 13.4478 27.71 0.0798307 0.0706002 12.5716 10.7877 -1 -1 -1 -1 90 390411 49 3.90281e+08 1.62448e+08 3.88106e+07 6064.16 94.93 41.9844 35.7412 876284 8162653 -1 372587 18 96713 115717 14180687 3026082 14.5611 14.5611 -57854.4 -14.5611 0 0 4.85641e+07 7588.14 2.99 7.91 7.71 -1 -1 2.99 4.41036 3.90021 - k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision3.v common 2.78 vpr 65.62 MiB -1 -1 0.94 23248 4 0.13 -1 -1 32564 -1 -1 15 11 0 0 success v8.0.0-11925-ga544f5fea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2025-01-14T21:35:49 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/release/vtr-verilog-to-routing 67192 11 2 303 283 2 78 28 7 7 49 clb auto 26.0 MiB 0.21 280 994 173 731 90 65.6 MiB 0.04 0.00 2.0401 -164.361 -2.0401 1.90163 0.03 0.000802622 0.000736286 0.0231253 0.0212941 -1 -1 -1 -1 22 397 12 1.07788e+06 808410 57331.5 1170.03 0.32 0.150968 0.128977 3372 10412 -1 355 11 172 254 4023 1475 2.14906 1.91429 -169.055 -2.14906 0 0 72669.7 1483.05 0.00 0.02 0.01 -1 -1 0.00 0.0172996 0.0159743 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +k6_frac_N10_frac_chain_mem32K_40nm.xml arm_core.v common 212.47 vpr 279.51 MiB -1 -1 19.33 119976 20 47.22 -1 -1 68076 -1 -1 855 133 25 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 286220 133 179 14228 14085 1 7100 1192 37 37 1369 clb auto 135.8 MiB 30.67 264290 118331 588673 187049 381129 20495 196.5 MiB 10.93 0.10 32.7899 22.873 -208698 -22.873 22.873 1.43 0.0324797 0.0292432 3.84677 3.23963 -1 -1 -1 -1 110 176725 27 7.54166e+07 5.97803e+07 9.46577e+06 6914.37 87.45 21.2205 17.8322 201652 2027183 -1 162249 14 30432 117983 9007020 1696919 24.0504 24.0504 -216487 -24.0504 0 0 1.20852e+07 8827.75 0.45 3.53 1.54 -1 -1 0.45 1.77327 1.56805 +k6_frac_N10_frac_chain_mem32K_40nm.xml bgm.v common 482.62 vpr 710.52 MiB -1 -1 45.25 619668 14 76.05 -1 -1 122284 -1 -1 2726 257 0 11 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 727576 257 32 36080 33722 1 19365 3026 63 63 3969 clb auto 329.7 MiB 70.76 1 246198 2147070 770352 1350261 26457 710.5 MiB 79.70 0.59 60.4933 18.7554 -25815 -18.7554 18.7554 16.05 0.0947419 0.0860547 13.1929 10.7692 -1 -1 -1 -1 72 383970 26 2.36641e+08 1.51273e+08 1.98694e+07 5006.15 146.80 56.49 46.364 498330 4113940 -1 361584 22 95063 428737 17085321 2684393 19.1335 19.1335 -26346.5 -19.1335 0 0 2.48734e+07 6266.93 1.24 12.09 2.89 -1 -1 1.24 6.67177 5.73047 +k6_frac_N10_frac_chain_mem32K_40nm.xml blob_merge.v common 68.96 parmys 254.32 MiB -1 -1 10.19 260420 5 3.55 -1 -1 54908 -1 -1 495 36 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 143288 36 100 10178 7632 1 2724 631 29 29 841 clb auto 96.0 MiB 15.82 95360 41180 227851 69677 144196 13978 139.9 MiB 4.01 0.04 22.4661 14.8203 -2362.24 -14.8203 14.8203 0.86 0.0174468 0.0161202 1.90119 1.64273 -1 -1 -1 -1 68 66817 22 4.4999e+07 2.66775e+07 3.78783e+06 4503.96 24.80 6.79508 5.87269 99460 760244 -1 60459 14 12442 64371 2376927 356438 15.0178 15.0178 -2542.17 -15.0178 0 0 4.70015e+06 5588.76 0.18 1.64 0.67 -1 -1 0.18 0.999677 0.893759 +k6_frac_N10_frac_chain_mem32K_40nm.xml boundtop.v common 15.71 vpr 71.91 MiB -1 -1 11.65 44576 3 0.60 -1 -1 35600 -1 -1 47 196 1 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 73640 196 193 1201 1346 1 592 437 15 15 225 io auto 33.1 MiB 0.52 7097 3082 141282 36274 93188 11820 71.9 MiB 0.39 0.01 2.88013 2.23271 -1111.45 -2.23271 2.23271 0.17 0.00181996 0.00167433 0.170233 0.157242 -1 -1 -1 -1 38 6015 35 1.03862e+07 3.08102e+06 544116. 2418.30 0.99 0.562766 0.519528 21558 109668 -1 5038 10 1765 2614 165080 48924 2.65248 2.65248 -1216.21 -2.65248 0 0 690508. 3068.92 0.02 0.10 0.06 -1 -1 0.02 0.070957 0.0676966 +k6_frac_N10_frac_chain_mem32K_40nm.xml ch_intrinsics.v common 2.27 vpr 66.99 MiB -1 -1 0.38 18464 3 0.07 -1 -1 33120 -1 -1 68 99 1 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 68596 99 130 344 474 1 228 298 12 12 144 clb auto 28.3 MiB 0.16 1708 681 71938 21850 35232 14856 67.0 MiB 0.12 0.00 2.12112 1.86413 -119.258 -1.86413 1.86413 0.10 0.000566216 0.000530411 0.0447479 0.0419328 -1 -1 -1 -1 42 1388 10 5.66058e+06 4.21279e+06 345696. 2400.67 0.67 0.20809 0.190737 13090 66981 -1 1237 10 456 706 29446 8797 1.96058 1.96058 -139.503 -1.96058 0 0 434636. 3018.30 0.01 0.03 0.04 -1 -1 0.01 0.0198907 0.018763 +k6_frac_N10_frac_chain_mem32K_40nm.xml diffeq1.v common 6.34 vpr 70.60 MiB -1 -1 0.40 22304 5 0.21 -1 -1 33772 -1 -1 32 162 0 5 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 72292 162 96 1075 892 1 666 295 16 16 256 mult_36 auto 31.3 MiB 0.47 8262 5112 85642 26726 51784 7132 70.6 MiB 0.61 0.01 16.5991 15.8982 -1286.15 -15.8982 15.8982 0.35 0.00310373 0.00289519 0.287074 0.267623 -1 -1 -1 -1 52 9636 23 1.21132e+07 3.70461e+06 805949. 3148.24 2.31 0.817068 0.760008 26552 162987 -1 8698 17 2587 4144 731400 221181 17.1356 17.1356 -1376.18 -17.1356 0 0 1.06067e+06 4143.25 0.04 0.37 0.15 -1 -1 0.04 0.174555 0.164858 +k6_frac_N10_frac_chain_mem32K_40nm.xml diffeq2.v common 18.31 vpr 68.98 MiB -1 -1 0.20 21540 5 0.09 -1 -1 33460 -1 -1 21 66 0 5 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 70640 66 96 778 595 1 468 188 16 16 256 mult_36 auto 29.4 MiB 0.36 6204 3763 43766 14011 25945 3810 69.0 MiB 0.21 0.00 13.1588 11.8959 -748.769 -11.8959 11.8959 0.19 0.00113406 0.00106371 0.101179 0.0951234 -1 -1 -1 -1 60 7674 24 1.21132e+07 3.11177e+06 934704. 3651.19 15.60 0.842417 0.781631 27828 185084 -1 6554 21 3570 7405 1259231 373839 12.6374 12.6374 -804.724 -12.6374 0 0 1.17753e+06 4599.72 0.05 0.41 0.19 -1 -1 0.05 0.119941 0.113336 +k6_frac_N10_frac_chain_mem32K_40nm.xml LU8PEEng.v common 397.07 vpr 588.61 MiB -1 -1 47.51 442352 97 87.76 -1 -1 111932 -1 -1 2144 114 45 8 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 602736 114 102 35834 31925 1 16899 2413 56 56 3136 clb auto 309.4 MiB 53.73 920886 213746 1814349 675153 1108132 31064 588.6 MiB 55.30 0.51 154.738 72.3421 -53235.9 -72.3421 72.3421 11.14 0.111004 0.0889287 11.5817 9.28701 -1 -1 -1 -1 86 321106 26 1.8697e+08 1.43379e+08 1.79819e+07 5734.03 92.36 40.2067 32.6519 420342 3799571 -1 296141 22 64120 253670 12914238 2332073 74.2773 74.2773 -68437.4 -74.2773 0 0 2.27638e+07 7258.87 1.70 13.36 4.62 -1 -1 1.70 8.68523 7.49958 +k6_frac_N10_frac_chain_mem32K_40nm.xml mkDelayWorker32B.v common 50.68 vpr 315.80 MiB -1 -1 10.11 117064 5 5.53 -1 -1 44796 -1 -1 468 506 44 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 323384 506 553 3236 3734 1 2870 1571 50 50 2500 memory auto 57.7 MiB 3.71 43258 16890 1151825 563056 405712 183057 315.8 MiB 3.48 0.04 10.3136 6.751 -2071.22 -6.751 6.751 9.71 0.012349 0.0113575 1.79514 1.64399 -1 -1 -1 -1 38 24480 15 1.47946e+08 4.9335e+07 6.86579e+06 2746.32 9.05 5.36946 5.00747 258216 1426232 -1 23492 14 4552 6284 1218142 310467 6.93887 6.93887 -2608.52 -6.93887 0 0 8.69102e+06 3476.41 0.38 0.71 1.07 -1 -1 0.38 0.528311 0.503268 +k6_frac_N10_frac_chain_mem32K_40nm.xml mkPktMerge.v common 8.15 vpr 73.20 MiB -1 -1 0.80 25764 2 0.10 -1 -1 34472 -1 -1 32 311 15 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 74952 311 156 1015 1158 1 965 514 28 28 784 memory auto 33.9 MiB 0.79 20788 7954 214546 78290 125007 11249 73.2 MiB 0.67 0.01 5.14999 3.96264 -4383.87 -3.96264 3.96264 0.70 0.00278678 0.00248288 0.315079 0.280645 -1 -1 -1 -1 38 13997 22 4.25198e+07 9.94461e+06 2.03941e+06 2601.29 2.23 0.858239 0.774237 77878 418209 -1 12797 12 2813 3148 647576 204191 4.19809 4.19809 -4942.1 -4.19809 -0.00135869 -0.00135869 2.58563e+06 3298.00 0.09 0.23 0.25 -1 -1 0.09 0.125259 0.116996 +k6_frac_N10_frac_chain_mem32K_40nm.xml mkSMAdapter4B.v common 19.47 vpr 83.66 MiB -1 -1 4.55 51492 5 1.45 -1 -1 39328 -1 -1 166 193 5 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 85672 193 205 2718 2652 1 1364 569 20 20 400 memory auto 44.0 MiB 1.94 21635 10677 236269 74431 136781 25057 83.7 MiB 1.26 0.01 6.95823 5.89435 -2880.21 -5.89435 5.89435 0.33 0.00448873 0.00407934 0.520725 0.458822 -1 -1 -1 -1 50 19020 48 2.07112e+07 1.16864e+07 1.26946e+06 3173.65 7.33 2.53112 2.27541 41784 253636 -1 16909 18 4979 12133 652802 138307 6.28852 6.28852 -3109.62 -6.28852 -0.00135869 -0.00135869 1.63222e+06 4080.54 0.05 0.37 0.15 -1 -1 0.05 0.246451 0.229778 +k6_frac_N10_frac_chain_mem32K_40nm.xml or1200.v common 112.46 vpr 101.39 MiB -1 -1 3.74 61476 8 2.81 -1 -1 41920 -1 -1 247 385 2 1 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 103820 385 362 4415 4299 1 2357 997 26 26 676 io auto 56.8 MiB 5.49 60367 29168 553555 209559 320264 23732 97.1 MiB 4.21 0.04 12.484 9.22286 -10001.9 -9.22286 9.22286 0.61 0.0109639 0.0102538 1.47142 1.32279 -1 -1 -1 -1 96 41816 25 3.69863e+07 1.48038e+07 4.07810e+06 6032.69 88.96 8.68882 7.83852 93088 846470 -1 40322 20 9413 32446 1640117 290110 9.26797 9.26797 -10463.8 -9.26797 0 0 5.10087e+06 7545.67 0.27 1.53 0.96 -1 -1 0.27 1.0006 0.922311 +k6_frac_N10_frac_chain_mem32K_40nm.xml raygentop.v common 16.70 vpr 84.32 MiB -1 -1 2.91 42012 3 0.56 -1 -1 37000 -1 -1 127 236 1 6 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 86348 236 305 3199 3011 1 1523 675 19 19 361 io auto 45.1 MiB 2.38 25623 12744 275862 97068 164529 14265 84.3 MiB 1.45 0.02 6.4321 4.87079 -2820.2 -4.87079 4.87079 0.30 0.00560063 0.00518298 0.604935 0.553038 -1 -1 -1 -1 60 23814 39 1.72706e+07 9.76854e+06 1.37250e+06 3801.94 6.34 2.17617 1.98275 40123 275431 -1 20936 19 6245 16081 1455169 369652 4.86514 4.86514 -3116.44 -4.86514 0 0 1.72840e+06 4787.81 0.05 0.53 0.17 -1 -1 0.05 0.287741 0.270352 +k6_frac_N10_frac_chain_mem32K_40nm.xml sha.v common 14.92 vpr 83.92 MiB -1 -1 2.98 44692 3 1.09 -1 -1 39956 -1 -1 139 38 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 85932 38 36 2739 2488 1 1049 213 16 16 256 clb auto 43.6 MiB 1.25 14747 8429 40218 10764 26818 2636 83.9 MiB 0.67 0.01 12.6186 10.0194 -2444.29 -10.0194 10.0194 0.20 0.00478325 0.0044014 0.318391 0.282226 -1 -1 -1 -1 52 14156 42 1.21132e+07 7.49127e+06 805949. 3148.24 6.25 1.87194 1.62272 26552 162987 -1 12220 20 4506 10512 364577 68819 10.9834 10.9834 -2789.57 -10.9834 0 0 1.06067e+06 4143.25 0.03 0.34 0.10 -1 -1 0.03 0.248301 0.225121 +k6_frac_N10_frac_chain_mem32K_40nm.xml spree.v common 10.99 vpr 73.14 MiB -1 -1 2.17 32292 16 0.48 -1 -1 34992 -1 -1 61 45 3 1 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 74900 45 32 1192 1151 1 792 142 14 14 196 memory auto 34.6 MiB 2.57 10230 6724 27522 7495 16921 3106 73.1 MiB 0.34 0.00 13.9782 11.2901 -7209.19 -11.2901 11.2901 0.14 0.00197313 0.00176092 0.168386 0.150089 -1 -1 -1 -1 68 12586 25 9.20055e+06 5.32753e+06 806220. 4113.37 3.63 0.879144 0.780585 22432 157909 -1 10569 14 3362 8864 714686 176877 11.347 11.347 -7521.29 -11.347 0 0 1.00082e+06 5106.22 0.03 0.22 0.10 -1 -1 0.03 0.118227 0.11088 +k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision0.v common 49.68 vpr 238.52 MiB -1 -1 8.91 99444 5 6.21 -1 -1 65612 -1 -1 723 169 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 244244 169 197 23225 21365 1 6048 1089 34 34 1156 clb auto 159.4 MiB 7.36 138950 37803 566689 185725 358886 22078 206.7 MiB 5.55 0.05 7.50543 3.47733 -14028.3 -3.47733 3.47733 1.08 0.0240631 0.0193328 2.6984 2.20346 -1 -1 -1 -1 46 59195 29 6.50233e+07 3.89656e+07 3.64223e+06 3150.72 9.78 7.53696 6.32877 123264 752332 -1 52144 15 15228 24079 778526 165004 3.95658 3.95658 -15092.4 -3.95658 0 0 4.69209e+06 4058.90 0.19 1.34 0.44 -1 -1 0.19 1.3312 1.21354 +k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision1.v common 129.15 vpr 301.43 MiB -1 -1 6.97 121944 3 10.79 -1 -1 73876 -1 -1 761 115 0 40 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 308664 115 145 22864 19301 1 9598 1061 40 40 1600 mult_36 auto 157.2 MiB 8.89 218173 82528 552779 175008 354397 23374 227.7 MiB 12.42 0.08 8.24796 5.97877 -23026.7 -5.97877 5.97877 2.52 0.0296366 0.0232576 5.18169 4.47986 -1 -1 -1 -1 82 129392 40 9.16046e+07 5.68542e+07 8.58295e+06 5364.35 72.16 18.2188 15.5745 207228 1787768 -1 115904 12 29451 44673 6496904 1453626 6.28596 6.28596 -25323 -6.28596 0 0 1.07702e+07 6731.38 0.42 2.40 1.26 -1 -1 0.42 1.27287 1.1697 +k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision2.v common 249.03 vpr 927.26 MiB -1 -1 10.71 194260 3 5.49 -1 -1 151880 -1 -1 1693 149 0 179 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 949512 149 182 55415 37074 1 28410 2203 80 80 6400 mult_36 auto 317.6 MiB 24.65 1 282083 1936483 673873 1194432 68178 927.3 MiB 53.04 0.41 29.8396 13.6204 -50663.4 -13.6204 13.6204 26.08 0.0857036 0.0779151 11.8098 10.1507 -1 -1 -1 -1 86 389128 32 3.90281e+08 1.62125e+08 3.72333e+07 5817.70 84.75 35.4904 30.579 863488 7902436 -1 370287 22 99498 118781 13877842 2992969 13.7303 13.7303 -54909.4 -13.7303 0 0 4.71374e+07 7365.22 2.26 7.09 5.78 -1 -1 2.26 4.22602 3.76697 +k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision3.v common 1.81 vpr 66.79 MiB -1 -1 0.48 22692 4 0.11 -1 -1 32964 -1 -1 15 11 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 68392 11 2 303 283 2 85 28 7 7 49 clb auto 27.5 MiB 0.12 405 294 1078 210 791 77 66.8 MiB 0.02 0.00 2.07098 2.04849 -155.044 -2.04849 1.9058 0.02 0.000390247 0.00034808 0.0136362 0.0123455 -1 -1 -1 -1 34 389 13 1.07788e+06 808410 84249.8 1719.38 0.24 0.135196 0.115303 3756 15224 -1 348 10 168 283 4715 1617 2.10231 1.90634 -156.224 -2.10231 0 0 103542. 2113.11 0.00 0.03 0.01 -1 -1 0.00 0.025836 0.0238112 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test7/3d_cb_titan_other_auto_bb/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test7/3d_cb_titan_other_auto_bb/config/golden_results.txt index 82805da6c73..41f25935228 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test7/3d_cb_titan_other_auto_bb/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test7/3d_cb_titan_other_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 244.09 vpr 1.63 GiB 274 1048 36 59 0 2 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 1710388 22 252 53001 29054 7 22984 1419 54 40 4320 DSP auto 1201.8 MiB 72.33 204820 846239 237450 497497 111292 1670.3 MiB 74.90 0.65 7.79489 -43439.9 -6.79489 3.28078 0.10 0.145044 0.126909 16.2828 14.2166 303821 13.2372 69243 3.01686 62436 131482 118528064 33642231 0 0 9.32900e+07 21594.9 16 1265168 16897716 -1 7.83099 3.2527 -39766.3 -6.83099 0 0 28.25 -1 -1 1670.3 MiB 34.12 23.3299 20.6779 1670.3 MiB -1 9.52 -3d_full_OPIN_inter_die_stratixiv_arch.timing.xml CH_DFSIN_stratixiv_arch_timing.blif common 283.46 vpr 1.50 GiB 36 1585 10 10 0 0 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 1568820 3 33 48977 39238 1 26095 1641 40 30 2400 LAB auto 1223.9 MiB 100.65 250483 930441 270744 617644 42053 1427.9 MiB 105.66 1.16 88.0477 -77760.6 -87.0477 88.0477 0.04 0.138248 0.121195 14.6541 12.2965 344948 13.2210 84158 3.22556 78118 205246 82686512 15002058 0 0 5.14202e+07 21425.1 21 702232 9282330 -1 70.8752 70.8752 -96523.7 -69.8752 0 0 15.93 -1 -1 1478.1 MiB 30.26 22.7139 19.3696 1427.9 MiB -1 5.06 -3d_full_OPIN_inter_die_stratixiv_arch.timing.xml CHERI_stratixiv_arch_timing.blif common 546.32 vpr 1.95 GiB 211 2277 3 210 0 0 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 2047732 38 173 62892 59064 3 35370 2701 60 44 5280 M9K auto 1407.8 MiB 197.71 509639 1864099 634981 1176586 52532 1902.3 MiB 202.15 1.98 13.0046 -365555 -12.0046 7.96311 0.08 0.240136 0.202587 26.0846 21.1277 742613 20.9997 172139 4.86777 125805 451636 168920802 27374866 0 0 1.14226e+08 21633.7 20 1553068 20716258 -1 12.6705 7.40682 -365097 -11.6705 0 0 34.41 -1 -1 1902.3 MiB 62.35 40.2332 33.4484 1902.3 MiB -1 12.28 -3d_full_OPIN_inter_die_stratixiv_arch.timing.xml EKF-SLAM_Jacobians_stratixiv_arch_timing.blif common 585.36 vpr 1.92 GiB 574 2786 16 0 0 0 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 2009276 4 570 66175 54803 2 39221 3376 51 38 3876 LAB auto 1446.3 MiB 179.14 542870 2585506 917648 1577326 90532 1765.2 MiB 247.87 2.16 32.1444 -118378 -31.1444 6.23584 0.07 0.26061 0.217278 28.1774 23.7022 787384 20.0781 179841 4.58591 168930 665993 263454811 44272964 0 0 8.35478e+07 21555.2 21 1135740 15114436 -1 31.2519 6.12513 -116198 -30.2519 0 0 26.38 -1 -1 1858.7 MiB 86.58 43.2996 37.0968 1765.2 MiB -1 8.44 -3d_full_OPIN_inter_die_stratixiv_arch.timing.xml fir_cascade_stratixiv_arch_timing.blif common 665.68 vpr 4.50 GiB 40 3697 172 1 0 0 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 4722308 19 21 171111 96274 1 69059 3910 129 96 24768 DSP auto 1880.9 MiB 143.60 659423 3667920 1455149 2188340 24431 4611.6 MiB 189.33 1.99 5.44974 -115422 -4.44974 3.12297 0.45 0.489655 0.429947 60.4384 53.4484 794955 11.5117 173671 2.51493 139983 173257 122973577 32392189 0 0 5.40274e+08 21813.4 12 7186500 97663758 -1 5.74024 3.40489 -147279 -4.74024 0 0 162.31 -1 -1 4611.6 MiB 45.39 79.3348 71.0438 4611.6 MiB -1 68.45 -3d_full_OPIN_inter_die_stratixiv_arch.timing.xml jacobi_stratixiv_arch_timing.blif common 369.28 vpr 1.63 GiB 536 1955 7 4 0 0 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 1705764 227 309 49176 40422 1 28301 2502 47 35 3290 io auto 1276.4 MiB 132.64 278563 1870082 659393 1159933 50756 1577.3 MiB 148.04 1.40 223.632 -132177 -222.632 223.632 0.05 0.153184 0.136333 19.0846 16.0118 379374 13.4069 91772 3.24317 82642 255456 77638931 11638769 0 0 7.07061e+07 21491.2 20 956596 12773992 -1 190.135 190.135 -130112 -189.135 0 0 21.26 -1 -1 1598.5 MiB 30.66 28.1882 24.0263 1577.3 MiB -1 6.97 -3d_full_OPIN_inter_die_stratixiv_arch.timing.xml JPEG_stratixiv_arch_timing.blif common 301.91 vpr 1.70 GiB 36 1393 8 149 2 0 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 1787064 3 33 52402 39411 1 26961 1588 57 42 4788 M9K auto 1243.6 MiB 111.07 267316 798034 216514 557130 24390 1745.2 MiB 83.83 0.97 17.6841 -330571 -16.6841 17.6841 0.08 0.142592 0.123421 13.5697 11.1733 388393 14.4100 90639 3.36285 77554 201450 104702784 19227779 0 0 1.03316e+08 21578.1 23 1396452 18714052 -1 16.8884 16.8884 -322143 -15.8884 0 0 31.36 -1 -1 1745.2 MiB 37.27 22.9987 19.4136 1745.2 MiB -1 9.87 -3d_full_OPIN_inter_die_stratixiv_arch.timing.xml leon2_stratixiv_arch_timing.blif common 129.79 vpr 1.23 GiB 251 955 1 17 0 0 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 1288736 55 196 20131 19956 1 8273 1224 32 24 1536 LAB auto 1088.4 MiB 60.90 109402 531288 160105 346309 24874 1229.7 MiB 21.34 0.27 7.65386 -81772.1 -6.65386 7.65386 0.03 0.0542655 0.0415901 4.69487 3.74852 159807 19.3237 38947 4.70943 27112 111164 42415566 5550679 0 0 3.29272e+07 21437.0 15 447460 5950766 -1 7.62538 7.62538 -77759.3 -6.62538 0 0 10.12 -1 -1 1229.7 MiB 15.08 7.2902 6.0554 1229.7 MiB -1 2.80 -3d_full_OPIN_inter_die_stratixiv_arch.timing.xml leon3mp_stratixiv_arch_timing.blif common 294.21 vpr 1.53 GiB 255 2122 1 28 0 0 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 1605968 84 171 36458 36247 3 20327 2406 45 33 2970 LAB auto 1229.4 MiB 149.56 245617 1517216 535912 903537 77767 1503.4 MiB 67.74 0.64 12.3707 -91754.7 -11.3707 4.62772 0.04 0.123763 0.0993875 12.5521 10.1851 366533 18.0443 84029 4.13671 58196 217697 65258498 9131006 0 0 6.38257e+07 21490.1 17 866116 11532596 -1 12.1773 4.52077 -87689.2 -11.1773 0 0 19.45 -1 -1 1503.4 MiB 24.63 19.0845 15.7987 1503.4 MiB -1 5.86 -3d_full_OPIN_inter_die_stratixiv_arch.timing.xml MCML_stratixiv_arch_timing.blif common 373.27 vpr 2.31 GiB 69 2192 10 295 16 0 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 2418176 36 33 57796 49182 1 19758 2582 79 59 9322 M144K auto 1354.2 MiB 113.69 225912 2286656 861887 1362579 62190 2361.5 MiB 99.88 0.94 9.64748 -102230 -8.64748 9.64748 0.14 0.158799 0.128764 21.1153 17.3148 383721 19.4260 88332 4.47183 55000 174045 129359271 32477749 0 0 2.01410e+08 21605.9 18 2701980 36491882 -1 8.6078 8.6078 -177231 -7.6078 0 0 60.49 -1 -1 2361.5 MiB 43.58 29.7071 24.9856 2361.5 MiB -1 22.04 -3d_full_OPIN_inter_die_stratixiv_arch.timing.xml MMM_stratixiv_arch_timing.blif common 287.89 vpr 2.03 GiB 478 1233 1 300 4 0 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 2130704 202 276 35125 30509 3 21219 2016 73 54 7884 M9K auto 1185.2 MiB 94.47 222406 1491426 518693 900478 72255 2080.8 MiB 60.89 0.53 9.27552 -41609.1 -8.27552 3.17342 0.13 0.131124 0.103107 15.5709 12.4005 371010 17.4897 81992 3.86518 55375 161185 120683489 26150077 0 0 1.70845e+08 21669.8 17 2296616 31015204 -1 9.29871 3.26388 -44629 -8.29871 0 0 50.69 -1 -1 2080.8 MiB 36.84 22.1828 18.2794 2080.8 MiB -1 17.67 -3d_full_OPIN_inter_die_stratixiv_arch.timing.xml radar20_stratixiv_arch_timing.blif common 115.46 vpr 1.42 GiB 5 333 31 105 0 2 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 1487204 3 2 14862 10304 26 7583 476 49 36 3528 DSP auto 1035.3 MiB 45.32 98385 149036 34562 99301 15173 1452.3 MiB 10.21 0.11 5.55968 -32411 -4.55968 4.12503 0.05 0.05808 0.0509959 5.30612 4.48561 158711 21.0019 34047 4.50536 20479 45132 33648692 7897451 0 0 7.61223e+07 21576.6 14 1038076 13772104 -1 5.83812 3.95731 -37986.2 -4.83812 0 0 22.99 -1 -1 1452.3 MiB 10.69 8.06663 7.00321 1452.3 MiB -1 7.95 -3d_full_OPIN_inter_die_stratixiv_arch.timing.xml random_stratixiv_arch_timing.blif common 308.79 vpr 1.75 GiB 693 1797 25 16 0 0 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 1838356 35 658 51416 37539 1 27427 2531 58 43 4988 io auto 1276.3 MiB 90.95 215620 2002487 658856 1202364 141267 1795.3 MiB 112.04 0.92 42.7601 -66808.9 -41.7601 42.7601 0.09 0.161772 0.13883 20.582 17.6888 320121 12.3518 76529 2.95285 71977 215082 87258601 20096356 0 0 1.07584e+08 21568.7 22 1452444 19486512 -1 38.7113 38.7113 -63596.1 -37.7113 0 0 32.70 -1 -1 1795.3 MiB 31.75 30.3911 26.5086 1795.3 MiB -1 11.75 -3d_full_OPIN_inter_die_stratixiv_arch.timing.xml Reed_Solomon_stratixiv_arch_timing.blif common 194.32 vpr 1.76 GiB 753 1113 5 32 0 0 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 1848104 13 740 25173 25306 1 12716 1903 63 47 5922 io auto 1132.2 MiB 67.11 123583 1109975 381766 683735 44474 1804.8 MiB 39.31 0.39 9.15523 -32316.9 -8.15523 9.15523 0.10 0.0795356 0.0699448 8.32413 7.00496 172751 13.5928 41221 3.24345 30616 114657 28576108 5137032 0 0 1.28005e+08 21615.1 15 1733724 23216534 -1 8.8255 8.62305 -32652.3 -7.8255 0 0 39.07 -1 -1 1804.8 MiB 12.08 12.4456 10.6768 1804.8 MiB -1 13.32 -3d_full_OPIN_inter_die_stratixiv_arch.timing.xml smithwaterman_stratixiv_arch_timing.blif common 379.96 vpr 1.71 GiB 117 2338 0 0 0 0 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 1788552 79 38 66795 54922 1 35698 2455 47 35 3290 LAB auto 1329.9 MiB 152.43 244085 1624747 493620 1093099 38028 1607.0 MiB 139.05 1.16 10.4142 -184930 -9.41415 10.4142 0.05 0.16033 0.126535 18.0534 14.5425 331959 9.29987 79923 2.23905 99630 253842 70436166 10502572 0 0 7.07061e+07 21491.2 17 956596 12773992 -1 9.6278 9.6278 -188775 -8.6278 0 0 21.47 -1 -1 1660.8 MiB 28.25 26.8951 22.1285 1607.0 MiB -1 7.63 -3d_full_OPIN_inter_die_stratixiv_arch.timing.xml stap_steering_stratixiv_arch_timing.blif common 241.84 vpr 1.65 GiB 213 1565 26 4 0 0 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 1727976 139 74 57121 41054 1 24001 1808 49 36 3528 DSP auto 1289.3 MiB 91.18 155434 1168868 372786 754711 41371 1617.1 MiB 70.29 0.65 5.78947 -22744 -4.78947 5.78947 0.06 0.166564 0.140884 17.2708 14.567 220363 9.18294 52613 2.19248 52262 94777 51757158 12255510 0 0 7.61223e+07 21576.6 17 1038076 13772104 -1 6.13383 6.13383 -28632.3 -5.13383 0 0 23.67 -1 -1 1626.7 MiB 20.25 25.2854 21.7301 1617.1 MiB -1 7.50 -3d_full_OPIN_inter_die_stratixiv_arch.timing.xml sudoku_check_stratixiv_arch_timing.blif common 123.74 vpr 1.21 GiB 54 665 0 40 0 1 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 1272416 2 52 16673 16662 2 12027 760 32 24 1536 M9K auto 1066.6 MiB 48.17 156959 264252 69818 174977 19457 1223.8 MiB 19.40 0.22 6.30018 -21278.5 -5.30018 5.08848 0.02 0.0625285 0.0502951 5.37481 4.40679 214370 17.8300 51439 4.27838 52424 159985 69493207 10252744 0 0 3.29272e+07 21437.0 19 447460 5950766 -1 6.55525 5.17583 -23692.3 -5.55525 0 0 10.23 -1 -1 1223.8 MiB 22.52 9.11353 7.72653 1223.8 MiB -1 2.91 -3d_full_OPIN_inter_die_stratixiv_arch.timing.xml SURF_desc_stratixiv_arch_timing.blif common 378.16 vpr 1.77 GiB 445 2156 19 52 0 0 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 1853480 131 314 57881 45152 1 32833 2672 49 36 3528 DSP auto 1362.9 MiB 112.93 299223 1985810 694705 1211569 79536 1665.8 MiB 167.05 1.45 220.781 -74322.2 -219.781 220.781 0.07 0.200934 0.169269 24.1803 20.5128 416847 12.7247 100775 3.07625 94693 283672 85089101 14646952 0 0 7.61223e+07 21576.6 21 1038076 13772104 -1 190.574 190.574 -74796.5 -189.574 0 0 22.90 -1 -1 1729.6 MiB 34.84 36.1614 31.133 1665.8 MiB -1 7.44 -3d_full_OPIN_inter_die_stratixiv_arch.timing.xml ucsb_152_tap_fir_stratixiv_arch_timing.blif common 60.08 vpr 1.18 GiB 42 758 0 0 0 0 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 1240452 13 29 26295 20086 1 12439 800 29 21 1218 LAB auto 1062.9 MiB 15.84 61122 230944 38935 173615 18394 1188.2 MiB 11.81 0.18 4.96737 -5434.49 -3.96737 2.8073 0.02 0.0387336 0.0317178 2.57184 2.12328 72725 5.84747 18233 1.46603 25673 34471 10834392 1619170 0 0 2.60031e+07 21349.0 15 354380 4692432 -1 5.00956 2.55962 -5093.98 -4.00956 0 0 8.03 -1 -1 1188.2 MiB 4.50 4.29731 3.66237 1188.2 MiB -1 2.18 -3d_full_OPIN_inter_die_stratixiv_arch.timing.xml uoft_raytracer_stratixiv_arch_timing.blif common 297.39 vpr 2.16 GiB 964 1119 19 34 0 0 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 2263120 542 422 37277 26038 1 20403 2136 78 58 9048 io auto 1150.4 MiB 73.81 204576 1445886 511132 869441 65313 2210.1 MiB 89.30 0.98 8.29539 -39922.7 -7.29539 8.29539 0.17 0.107171 0.0943286 12.3686 10.4512 291171 14.2731 67635 3.31544 59148 140903 91946515 22482953 0 0 1.96207e+08 21685.1 19 2627776 35613460 -1 7.77837 7.50651 -37244.2 -6.77837 0 0 58.79 -1 -1 2210.1 MiB 28.79 18.2832 15.7996 2210.1 MiB -1 21.60 -3d_full_OPIN_inter_die_stratixiv_arch.timing.xml wb_conmax_stratixiv_arch_timing.blif common 209.37 vpr 2.38 GiB 1107 725 0 0 0 0 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 2494924 403 704 15490 16194 1 8534 1832 88 65 11440 io auto 1060.9 MiB 49.01 125640 1144742 417642 695010 32090 2436.4 MiB 27.60 0.29 12.1377 -20404.2 -11.1377 5.98066 0.18 0.0583692 0.0490098 6.35528 5.34844 169403 19.8527 34281 4.01746 23768 95388 22780638 3618006 0 0 2.47896e+08 21669.2 14 3325632 44947178 -1 12.3671 6.09382 -23278.4 -11.3671 0 0 74.30 -1 -1 2436.4 MiB 9.07 9.00673 7.74787 2436.4 MiB -1 27.37 -3d_full_OPIN_inter_die_stratixiv_arch.timing.xml picosoc_stratixiv_arch_timing.blif common 116.44 vpr 1.17 GiB 35 739 0 6 0 0 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 1231712 18 17 16969 16357 1 6288 780 28 21 1176 LAB auto 1057.8 MiB 66.58 77598 237654 57043 175228 5383 1183.4 MiB 12.28 0.19 7.75636 -48829.2 -6.75636 7.75636 0.02 0.0387637 0.0330252 3.16043 2.55192 107783 17.1520 26590 4.23138 18971 91032 29347868 3748700 0 0 2.50861e+07 21331.7 15 342304 4525318 -1 7.25059 7.25059 -44231.5 -6.25059 0 0 7.74 -1 -1 1183.4 MiB 10.12 5.32204 4.46908 1183.4 MiB -1 2.14 -3d_full_OPIN_inter_die_stratixiv_arch.timing.xml murax_stratixiv_arch_timing.blif common 23.94 vpr 993.17 MiB 35 78 0 8 0 0 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 1017004 18 17 2291 2142 1 1448 121 13 10 260 LAB auto 954.6 MiB 6.88 10123 9091 942 7112 1037 993.2 MiB 0.58 0.01 5.30858 -4060.6 -4.30858 4.62312 0.00 0.00627854 0.00548745 0.259054 0.223136 13428 9.29273 3606 2.49550 3290 8079 3159547 482733 0 0 5.17151e+06 19890.4 10 69776 908778 -1 5.28356 4.46405 -3916.13 -4.28356 0 0 1.74 -1 -1 993.2 MiB 1.11 0.547712 0.492658 993.2 MiB -1 0.20 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est 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 165.23 vpr 1.63 GiB 274 1042 36 59 0 2 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 1709648 22 252 53001 29054 7 22943 1413 54 40 4320 DSP auto 1236.1 MiB 40.53 578922 181131 841569 239646 513371 88552 1669.6 MiB 53.63 0.52 11.8556 7.81898 -42319.1 -6.81898 3.29835 0.03 0.135616 0.124385 16.0465 13.8938 277230 12.1003 64381 2.81005 62818 132705 116667443 33165919 0 0 9.32900e+07 21594.9 18 1265168 16897716 -1 7.55982 3.09933 -38446.9 -6.55982 0 0 17.20 -1 -1 1669.6 MiB 26.52 22.7893 20.0135 1669.6 MiB -1 6.41 +3d_full_OPIN_inter_die_stratixiv_arch.timing.xml CH_DFSIN_stratixiv_arch_timing.blif common 194.29 vpr 1.51 GiB 36 1580 9 10 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 1578392 3 33 48977 39238 1 26189 1635 40 30 2400 LAB auto 1260.5 MiB 55.04 757873 274435 916295 263230 624392 28673 1444.8 MiB 77.31 0.86 103.199 88.716 -80010.6 -87.716 88.716 0.02 0.137583 0.112092 13.1911 10.6825 374986 14.3206 89842 3.43105 87924 246005 97241593 17317420 0 0 5.14202e+07 21425.1 24 702232 9282330 -1 70.9171 70.9171 -98532.9 -69.9171 0 0 9.76 -1 -1 1487.4 MiB 27.11 20.5289 17.0272 1444.8 MiB -1 3.90 +3d_full_OPIN_inter_die_stratixiv_arch.timing.xml CHERI_stratixiv_arch_timing.blif common 377.31 vpr 1.95 GiB 211 2281 3 210 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 2045912 38 173 62892 59064 3 35490 2705 60 44 5280 M9K auto 1469.8 MiB 114.90 1 523120 1867766 631559 1187077 49130 1908.1 MiB 152.42 1.10 23.156 13.2224 -362193 -12.2224 8.03046 0.05 0.195577 0.167935 25.6333 19.9211 754105 21.2532 173913 4.90144 133627 487188 180124176 29221336 0 0 1.14226e+08 21633.7 18 1553068 20716258 -1 12.6128 7.39073 -357104 -11.6128 0 0 20.95 -1 -1 1908.1 MiB 48.70 36.7578 29.411 1908.1 MiB -1 9.39 +3d_full_OPIN_inter_die_stratixiv_arch.timing.xml EKF-SLAM_Jacobians_stratixiv_arch_timing.blif common 417.05 vpr 1.91 GiB 574 2788 16 0 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 2006360 4 570 66175 54803 2 39253 3378 51 38 3876 LAB auto 1498.7 MiB 101.02 1 535331 2587548 913566 1578253 95729 1776.7 MiB 183.46 1.34 45.2277 30.3105 -116990 -29.3105 6.52897 0.04 0.195666 0.174112 25.6084 20.3089 792100 20.1819 180091 4.58854 202831 840406 332686158 55982239 0 0 8.35478e+07 21555.2 23 1135740 15114436 -1 29.4773 6.2883 -117164 -28.4773 0 0 15.61 -1 -1 1855.5 MiB 80.57 38.7669 31.6392 1776.7 MiB -1 5.93 +3d_full_OPIN_inter_die_stratixiv_arch.timing.xml fir_cascade_stratixiv_arch_timing.blif common 443.03 vpr 4.50 GiB 40 3707 172 1 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 4723060 19 21 171111 96274 1 69189 3920 129 96 24768 DSP auto 2000.8 MiB 71.06 2 636893 3680425 1441522 2221827 17076 4612.4 MiB 140.90 1.75 6.62096 5.38274 -122739 -4.38274 3.41533 0.15 0.428725 0.373986 45.4388 39.5342 777057 11.2314 170068 2.45813 137555 171570 117628280 30536280 0 0 5.40274e+08 21813.4 12 7186500 97663758 -1 5.58128 3.52408 -142033 -4.58128 0 0 98.71 -1 -1 4612.4 MiB 33.17 59.5818 52.6569 4612.4 MiB -1 53.06 +3d_full_OPIN_inter_die_stratixiv_arch.timing.xml jacobi_stratixiv_arch_timing.blif common 274.78 vpr 1.63 GiB 536 1945 7 4 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 1713652 227 309 49176 40422 1 28286 2492 47 35 3290 io auto 1318.4 MiB 72.05 1 275433 1843284 648037 1152717 42530 1590.5 MiB 139.26 1.07 289.572 222.374 -130782 -221.374 222.374 0.02 0.149074 0.117901 20.4499 16.2564 372383 13.1668 90057 3.18425 84611 265316 75779256 12463701 0 0 7.07061e+07 21491.2 21 956596 12773992 -1 190.263 190.263 -132409 -189.263 0 0 12.88 -1 -1 1605.6 MiB 23.30 28.2031 22.9215 1590.5 MiB -1 4.64 +3d_full_OPIN_inter_die_stratixiv_arch.timing.xml JPEG_stratixiv_arch_timing.blif common 203.70 vpr 1.70 GiB 36 1395 8 151 2 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 1786780 3 33 52402 39411 1 26915 1592 57 42 4788 M9K auto 1285.8 MiB 61.57 876864 264364 791412 212031 554916 24465 1744.9 MiB 65.16 0.65 24.0259 17.4002 -332154 -16.4002 17.4002 0.05 0.142536 0.112127 13.0905 10.2581 382383 14.2113 89662 3.33229 75758 194667 95589814 17130134 0 0 1.03316e+08 21578.1 21 1396452 18714052 -1 16.7321 16.7321 -316694 -15.7321 0 0 19.24 -1 -1 1744.9 MiB 26.75 20.6792 16.8831 1744.9 MiB -1 8.15 +3d_full_OPIN_inter_die_stratixiv_arch.timing.xml leon2_stratixiv_arch_timing.blif common 88.03 vpr 1.23 GiB 251 958 1 17 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 1290232 55 196 20131 19956 1 8019 1227 32 24 1536 LAB auto 1105.6 MiB 35.07 223666 106034 533073 154980 351492 26601 1251.9 MiB 15.87 0.20 10.5638 7.98463 -82831 -6.98463 7.98463 0.01 0.0581793 0.0521859 5.06741 3.88947 155185 19.3594 37908 4.72904 26635 120171 44318653 5861047 0 0 3.29272e+07 21437.0 15 447460 5950766 -1 8.10181 8.10181 -79267.3 -7.10181 0 0 6.32 -1 -1 1251.9 MiB 12.19 7.83315 6.28675 1251.9 MiB -1 2.07 +3d_full_OPIN_inter_die_stratixiv_arch.timing.xml leon3mp_stratixiv_arch_timing.blif common 181.25 vpr 1.53 GiB 255 2083 1 28 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 1603172 84 171 36458 36247 3 20790 2367 44 33 2904 LAB auto 1268.1 MiB 81.14 599300 255080 1437255 479979 885421 71855 1501.7 MiB 46.87 0.45 17.1545 12.4465 -91330.5 -11.4465 4.45992 0.02 0.120982 0.0894776 12.0224 9.07078 364406 17.5398 83448 4.01656 55999 185251 56555792 7754659 0 0 6.23802e+07 21480.8 16 847384 11269474 -1 12.7357 4.18797 -90999.3 -11.7357 0 0 11.56 -1 -1 1501.7 MiB 16.62 17.272 13.5403 1501.7 MiB -1 4.42 +3d_full_OPIN_inter_die_stratixiv_arch.timing.xml MCML_stratixiv_arch_timing.blif common 249.79 vpr 2.31 GiB 69 2179 10 295 16 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 2419068 36 33 57796 49182 1 19635 2569 79 59 9322 M144K auto 1407.1 MiB 63.37 687588 226099 2218531 834530 1355192 28809 2362.4 MiB 68.81 0.68 18.0423 9.78823 -106228 -8.78823 9.78823 0.06 0.156822 0.12818 17.4559 14.0039 383131 19.5176 88177 4.49195 55287 189555 142027050 36001459 0 0 2.01410e+08 21605.9 18 2701980 36491882 -1 8.62869 8.62869 -135986 -7.62869 0 0 36.79 -1 -1 2362.4 MiB 36.89 23.9234 19.6875 2362.4 MiB -1 17.24 +3d_full_OPIN_inter_die_stratixiv_arch.timing.xml MMM_stratixiv_arch_timing.blif common 183.23 vpr 2.03 GiB 478 1237 1 300 4 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 2129380 202 276 35125 30509 3 21318 2020 73 54 7884 M9K auto 1220.8 MiB 49.25 782109 226940 1316712 439612 818763 58337 2079.5 MiB 41.20 0.36 10.3029 9.12883 -43356.7 -8.12883 3.36482 0.05 0.110797 0.0823899 12.5992 9.50036 371195 17.4172 82710 3.88091 55579 159944 111563169 23433137 0 0 1.70845e+08 21669.8 15 2296616 31015204 -1 9.1859 3.56835 -47482.5 -8.1859 0 0 30.53 -1 -1 2079.5 MiB 25.86 17.6423 13.833 2079.5 MiB -1 13.21 +3d_full_OPIN_inter_die_stratixiv_arch.timing.xml radar20_stratixiv_arch_timing.blif common 70.27 vpr 1.42 GiB 5 323 31 105 0 2 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 1485336 3 2 14862 10304 26 7561 466 49 36 3528 DSP auto 1055.8 MiB 19.02 184798 85297 135916 31512 94725 9679 1450.5 MiB 7.99 0.10 7.29278 5.55968 -34908.3 -4.55968 4.09325 0.02 0.0617226 0.0506659 4.97988 4.16457 139805 18.5541 31297 4.15355 18124 38759 27933959 6509280 0 0 7.61223e+07 21576.6 14 1038076 13772104 -1 5.63749 3.99239 -40563.9 -4.63749 0 0 14.25 -1 -1 1450.5 MiB 7.47 7.35481 6.30369 1450.5 MiB -1 5.97 +3d_full_OPIN_inter_die_stratixiv_arch.timing.xml random_stratixiv_arch_timing.blif common 241.81 vpr 1.75 GiB 693 1777 25 16 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 1838024 35 658 51416 37539 1 27424 2511 58 43 4988 io auto 1316.4 MiB 51.04 948323 229942 1896171 635436 1127325 133410 1794.9 MiB 106.03 0.65 67.4142 43.6805 -67218.9 -42.6805 43.6805 0.05 0.147176 0.118236 22.3082 17.9517 337800 13.0359 80019 3.08799 92021 297464 123311075 28490887 0 0 1.07584e+08 21568.7 23 1452444 19486512 -1 38.5807 38.5807 -63507.4 -37.5807 0 0 19.82 -1 -1 1794.9 MiB 33.41 30.8252 25.4394 1794.9 MiB -1 8.55 +3d_full_OPIN_inter_die_stratixiv_arch.timing.xml Reed_Solomon_stratixiv_arch_timing.blif common 124.50 vpr 1.76 GiB 753 1100 5 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 1844452 13 740 25173 25306 1 12838 1890 63 47 5922 io auto 1153.9 MiB 36.81 511809 123464 1123170 386810 683070 53290 1801.2 MiB 25.01 0.25 14.0109 8.89156 -32729.6 -7.89156 8.89156 0.04 0.0798946 0.060212 7.54908 5.83542 174594 13.6072 41482 3.23295 30417 111693 28104765 5049543 0 0 1.28005e+08 21615.1 12 1733724 23216534 -1 9.312 7.90522 -32948 -8.312 0 0 24.14 -1 -1 1801.2 MiB 8.53 10.4774 8.39933 1801.2 MiB -1 10.73 +3d_full_OPIN_inter_die_stratixiv_arch.timing.xml smithwaterman_stratixiv_arch_timing.blif common 253.88 vpr 1.71 GiB 117 2311 0 0 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 1795052 79 38 66795 54922 1 35224 2428 47 35 3290 LAB auto 1380.7 MiB 94.09 1 250576 1568380 463687 1064695 39998 1616.6 MiB 99.48 0.83 19.7664 10.4808 -184122 -9.48083 10.4808 0.02 0.157661 0.119423 16.476 12.6508 340352 9.66333 81776 2.32180 86206 207566 53826209 8209764 0 0 7.07061e+07 21491.2 16 956596 12773992 -1 10.0058 10.0058 -194535 -9.00582 0 0 13.02 -1 -1 1666.0 MiB 17.88 23.576 18.6595 1616.6 MiB -1 5.01 +3d_full_OPIN_inter_die_stratixiv_arch.timing.xml stap_steering_stratixiv_arch_timing.blif common 152.90 vpr 1.65 GiB 213 1559 26 4 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 1730980 139 74 57121 41054 1 23901 1802 49 36 3528 DSP auto 1330.5 MiB 46.92 523367 148917 1108863 331082 721190 56591 1626.9 MiB 48.59 0.49 7.59102 5.69228 -22418.3 -4.69228 5.69228 0.03 0.128597 0.102115 13.8422 11.2402 213091 8.91706 51264 2.14521 51274 92514 47975319 11532374 0 0 7.61223e+07 21576.6 18 1038076 13772104 -1 6.06924 6.06924 -28283.6 -5.06924 0 0 14.31 -1 -1 1629.7 MiB 14.95 20.3691 17.088 1626.9 MiB -1 5.62 +3d_full_OPIN_inter_die_stratixiv_arch.timing.xml sudoku_check_stratixiv_arch_timing.blif common 78.09 vpr 1.21 GiB 54 664 0 40 0 1 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 1270700 2 52 16673 16662 2 11970 759 32 24 1536 M9K auto 1087.8 MiB 25.88 316622 151272 249879 62506 169778 17595 1222.8 MiB 12.56 0.16 8.23152 6.10201 -21277.5 -5.10201 5.06369 0.01 0.0608657 0.0448446 4.65112 3.49451 206638 17.2688 49600 4.14508 49955 156078 65896959 9506054 0 0 3.29272e+07 21437.0 17 447460 5950766 -1 5.95759 5.05709 -22801.2 -4.95759 0 0 6.24 -1 -1 1222.8 MiB 16.01 7.6001 6.00867 1222.8 MiB -1 1.96 +3d_full_OPIN_inter_die_stratixiv_arch.timing.xml SURF_desc_stratixiv_arch_timing.blif common 278.89 vpr 1.77 GiB 445 2154 19 52 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 1856896 131 314 57881 45152 1 32883 2670 49 36 3528 DSP auto 1414.2 MiB 62.82 1 299910 2002290 699814 1233269 69207 1675.6 MiB 138.83 1.39 284.301 222.426 -75627 -221.426 222.426 0.03 0.236157 0.194737 23.5659 19.1088 418537 12.7579 101272 3.08700 110009 337269 96294911 17389823 0 0 7.61223e+07 21576.6 20 1038076 13772104 -1 194.866 194.866 -77192.9 -193.866 0 0 14.01 -1 -1 1735.4 MiB 30.32 33.6401 27.7968 1675.6 MiB -1 5.73 +3d_full_OPIN_inter_die_stratixiv_arch.timing.xml ucsb_152_tap_fir_stratixiv_arch_timing.blif common 39.68 vpr 1.18 GiB 42 749 0 0 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 1240084 13 29 26295 20086 1 12646 791 29 21 1218 LAB auto 1077.4 MiB 8.17 181772 63669 220151 34297 170189 15665 1190.5 MiB 7.36 0.10 5.43671 4.9834 -5379.72 -3.9834 2.7577 0.01 0.029861 0.0231527 2.09146 1.68198 74208 5.86903 18737 1.48189 26177 36020 11211877 1692426 0 0 2.60031e+07 21349.0 16 354380 4692432 -1 5.06256 2.57234 -4972.33 -4.06256 0 0 4.88 -1 -1 1190.5 MiB 3.58 3.54136 2.96155 1190.5 MiB -1 1.45 +3d_full_OPIN_inter_die_stratixiv_arch.timing.xml uoft_raytracer_stratixiv_arch_timing.blif common 204.51 vpr 2.16 GiB 964 1128 19 34 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 2260468 542 422 37277 26038 1 20404 2145 78 58 9048 io auto 1178.0 MiB 40.79 750296 228064 1467913 515344 879432 73137 2207.5 MiB 68.52 0.66 12.737 8.18785 -41350.9 -7.18785 8.18785 0.06 0.0966519 0.0771184 11.0478 8.92438 322744 15.8200 73105 3.58340 59794 137322 91182231 22125715 0 0 1.96207e+08 21685.1 20 2627776 35613460 -1 7.30285 7.27939 -40357.2 -6.30285 0 0 35.70 -1 -1 2207.5 MiB 22.97 16.1253 13.4219 2207.5 MiB -1 15.77 +3d_full_OPIN_inter_die_stratixiv_arch.timing.xml wb_conmax_stratixiv_arch_timing.blif common 134.50 vpr 2.38 GiB 1107 730 0 0 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 2492860 403 704 15490 16194 1 8443 1837 88 65 11440 io auto 1075.7 MiB 26.81 420969 123874 1171421 444803 693731 32887 2434.4 MiB 18.14 0.17 15.5138 11.646 -20021 -10.646 5.46969 0.09 0.0503342 0.0392748 5.60953 4.44327 169038 20.0235 34647 4.10412 24224 99582 23849257 3883264 0 0 2.47896e+08 21669.2 17 3325632 44947178 -1 11.6834 5.38195 -22298.1 -10.6834 0 0 44.54 -1 -1 2434.4 MiB 7.35 7.87318 6.44077 2434.4 MiB -1 19.44 +3d_full_OPIN_inter_die_stratixiv_arch.timing.xml picosoc_stratixiv_arch_timing.blif common 69.67 vpr 1.17 GiB 35 731 0 6 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 1229912 18 17 16969 16357 1 6487 772 28 21 1176 LAB auto 1072.8 MiB 35.55 163040 72492 241492 59461 177034 4997 1184.0 MiB 7.88 0.12 10.8841 7.97919 -43930.8 -6.97919 7.97919 0.01 0.0361636 0.0267893 2.69 2.03031 103493 15.9638 25861 3.98905 17521 69428 20784533 3065429 0 0 2.50861e+07 21331.7 13 342304 4525318 -1 7.06018 7.06018 -41291.6 -6.06018 0 0 4.79 -1 -1 1184.0 MiB 5.57 4.20349 3.36329 1184.0 MiB -1 1.39 +3d_full_OPIN_inter_die_stratixiv_arch.timing.xml murax_stratixiv_arch_timing.blif common 19.55 vpr 995.23 MiB 35 75 0 8 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 1019120 18 17 2291 2142 1 1462 118 13 10 260 LAB auto 956.8 MiB 4.11 13715 10389 9077 1002 7044 1031 995.2 MiB 0.43 0.01 5.45489 5.30858 -4076.26 -4.30858 4.57983 0.00 0.00509865 0.00456934 0.219625 0.189235 13990 9.58876 3763 2.57916 3281 7657 3126738 496499 0 0 5.17151e+06 19890.4 10 69776 908778 -1 5.24165 4.31206 -3750.06 -4.24165 0 0 1.11 -1 -1 995.2 MiB 0.80 0.440544 0.395044 995.2 MiB -1 0.12 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test7/3d_cb_titan_other_cube_bb/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test7/3d_cb_titan_other_cube_bb/config/golden_results.txt index 46f57bf760a..8c5e0d1eb21 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test7/3d_cb_titan_other_cube_bb/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test7/3d_cb_titan_other_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 245.62 vpr 1.63 GiB 274 1048 36 59 0 2 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 1710616 22 252 53001 29054 7 22984 1419 54 40 4320 DSP auto 1201.9 MiB 75.60 184944 854209 237356 546771 70082 1670.5 MiB 72.88 0.69 7.97251 -43075.7 -6.97251 3.30339 0.08 0.146166 0.132698 17.0437 15.0301 301371 13.1305 69191 3.01460 59225 124430 116802792 31972323 0 0 9.32900e+07 21594.9 16 1265168 16897716 -1 8.04852 3.11041 -39249.7 -7.04852 0 0 28.37 -1 -1 1670.5 MiB 33.95 23.995 21.3968 1670.5 MiB -1 9.57 -3d_full_OPIN_inter_die_stratixiv_arch.timing.xml CH_DFSIN_stratixiv_arch_timing.blif common 270.96 vpr 1.50 GiB 36 1585 10 10 0 0 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 1570676 3 33 48977 39238 1 26095 1641 40 30 2400 LAB auto 1223.8 MiB 102.33 228282 920766 279042 595583 46141 1429.0 MiB 88.59 0.94 88.2845 -80659 -87.2845 88.2845 0.04 0.14392 0.1195 14.5711 12.2042 355838 13.6383 86376 3.31057 77310 201105 89811404 15105784 0 0 5.14202e+07 21425.1 24 702232 9282330 -1 70.4773 70.4773 -94845.6 -69.4773 0 0 15.57 -1 -1 1479.9 MiB 33.28 23.5591 20.0191 1429.0 MiB -1 4.91 -3d_full_OPIN_inter_die_stratixiv_arch.timing.xml CHERI_stratixiv_arch_timing.blif common 509.62 vpr 1.95 GiB 211 2277 3 210 0 0 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 2047208 38 173 62892 59064 3 35370 2701 60 44 5280 M9K auto 1407.5 MiB 198.26 451048 1864099 647919 1164574 51606 1901.9 MiB 164.98 1.47 13.1506 -361183 -12.1506 7.9921 0.08 0.247442 0.196485 26.6398 21.6013 732955 20.7266 171188 4.84088 124728 456761 177820618 26065245 0 0 1.14226e+08 21633.7 19 1553068 20716258 -1 12.8769 7.53335 -363190 -11.8769 0 0 34.42 -1 -1 1901.9 MiB 62.40 40.217 33.3925 1901.9 MiB -1 11.90 -3d_full_OPIN_inter_die_stratixiv_arch.timing.xml EKF-SLAM_Jacobians_stratixiv_arch_timing.blif common 567.58 vpr 1.92 GiB 574 2786 16 0 0 0 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 2010460 4 570 66175 54803 2 39221 3376 51 38 3876 LAB auto 1446.8 MiB 182.98 484271 2560191 884458 1582491 93242 1765.5 MiB 199.71 1.77 30.1698 -117772 -29.1698 6.32625 0.06 0.250873 0.209174 27.8047 23.3414 819023 20.8849 185777 4.73728 196681 798495 366587115 55913961 0 0 8.35478e+07 21555.2 22 1135740 15114436 -1 29.383 6.18561 -115406 -28.383 0 0 25.30 -1 -1 1859.5 MiB 114.24 42.8002 36.5375 1765.5 MiB -1 8.24 -3d_full_OPIN_inter_die_stratixiv_arch.timing.xml fir_cascade_stratixiv_arch_timing.blif common 659.64 vpr 4.50 GiB 40 3697 172 1 0 0 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 4722024 19 21 171111 96274 1 69059 3910 129 96 24768 DSP auto 1880.9 MiB 143.54 633199 3760290 1490720 2235840 33730 4611.4 MiB 182.36 1.64 5.44974 -120174 -4.44974 3.48061 0.38 0.500711 0.446581 64.3668 57.2048 792964 11.4829 169052 2.44804 136130 168139 120657048 30423925 0 0 5.40274e+08 21813.4 11 7186500 97663758 -1 5.66375 3.85682 -156124 -4.66375 0 0 164.59 -1 -1 4611.4 MiB 43.21 81.7626 73.4249 4611.4 MiB -1 67.85 -3d_full_OPIN_inter_die_stratixiv_arch.timing.xml jacobi_stratixiv_arch_timing.blif common 346.58 vpr 1.63 GiB 536 1955 7 4 0 0 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 1706888 227 309 49176 40422 1 28301 2502 47 35 3290 io auto 1277.2 MiB 130.96 235454 1785192 630171 1108259 46762 1578.0 MiB 123.59 1.24 223.973 -131867 -222.973 223.973 0.06 0.15399 0.137707 18.3847 15.5681 381869 13.4950 92844 3.28105 78342 247729 91337050 11782368 0 0 7.07061e+07 21491.2 19 956596 12773992 -1 184.913 184.913 -126417 -183.913 0 0 21.19 -1 -1 1599.2 MiB 34.88 27.0233 23.1993 1578.0 MiB -1 6.86 -3d_full_OPIN_inter_die_stratixiv_arch.timing.xml JPEG_stratixiv_arch_timing.blif common 293.47 vpr 1.70 GiB 36 1393 8 149 2 0 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 1786932 3 33 52402 39411 1 26961 1588 57 42 4788 M9K auto 1243.4 MiB 111.19 242706 816556 231855 560850 23851 1745.1 MiB 73.99 0.84 17.4268 -331657 -16.4268 17.4268 0.09 0.152091 0.122991 14.1776 11.6814 398717 14.7930 92932 3.44793 77467 205644 117024334 20394306 0 0 1.03316e+08 21578.1 21 1396452 18714052 -1 16.917 16.917 -320368 -15.917 0 0 31.30 -1 -1 1745.1 MiB 38.71 22.7388 19.2113 1745.1 MiB -1 9.99 -3d_full_OPIN_inter_die_stratixiv_arch.timing.xml leon2_stratixiv_arch_timing.blif common 125.97 vpr 1.23 GiB 251 955 1 17 0 0 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 1288384 55 196 20131 19956 1 8273 1224 32 24 1536 LAB auto 1088.4 MiB 59.12 92593 557464 169405 360888 27171 1229.7 MiB 20.18 0.28 7.84939 -78165.6 -6.8494 7.84939 0.02 0.0579092 0.0459609 5.05811 4.04769 159733 19.3148 38820 4.69408 24505 101419 42311105 5071555 0 0 3.29272e+07 21437.0 15 447460 5950766 -1 7.81851 7.81851 -71908.7 -6.81851 0 0 10.15 -1 -1 1229.7 MiB 14.27 7.7811 6.44817 1229.7 MiB -1 2.82 -3d_full_OPIN_inter_die_stratixiv_arch.timing.xml leon3mp_stratixiv_arch_timing.blif common 281.85 vpr 1.53 GiB 255 2122 1 28 0 0 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 1606428 84 171 36458 36247 3 20327 2406 45 33 2970 LAB auto 1229.5 MiB 149.46 215765 1517216 518543 921536 77137 1503.3 MiB 58.02 0.60 11.9872 -86085.7 -10.9872 4.67996 0.04 0.124604 0.100056 12.4857 10.1291 368614 18.1467 84927 4.18092 54529 192216 59535264 7516911 0 0 6.38257e+07 21490.1 16 866116 11532596 -1 12.0375 4.6146 -82845.8 -11.0375 0 0 19.13 -1 -1 1503.3 MiB 22.39 18.634 15.5175 1503.3 MiB -1 6.30 -3d_full_OPIN_inter_die_stratixiv_arch.timing.xml MCML_stratixiv_arch_timing.blif common 351.01 vpr 2.30 GiB 69 2192 10 295 16 0 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 2416864 36 33 57796 49182 1 19758 2582 79 59 9322 M144K auto 1354.1 MiB 113.80 191652 2198126 837039 1305954 55133 2360.2 MiB 85.43 0.84 9.95158 -103978 -8.95158 9.95158 0.14 0.157427 0.126297 20.3063 16.4066 380882 19.2822 88412 4.47588 48910 148956 112086751 26603030 0 0 2.01410e+08 21605.9 17 2701980 36491882 -1 9.01423 9.01423 -137565 -8.01423 0 0 60.43 -1 -1 2360.2 MiB 36.97 28.4438 23.7031 2360.2 MiB -1 21.63 -3d_full_OPIN_inter_die_stratixiv_arch.timing.xml MMM_stratixiv_arch_timing.blif common 283.30 vpr 2.03 GiB 478 1233 1 300 4 0 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 2130904 202 276 35125 30509 3 21219 2016 73 54 7884 M9K auto 1185.7 MiB 91.45 212379 1465966 513016 878305 74645 2081.0 MiB 57.22 0.51 9.02677 -43039.7 -8.02677 3.39009 0.15 0.130982 0.112127 16.0361 12.8184 388469 18.3128 85167 4.01485 54060 155006 126101728 25409947 0 0 1.70845e+08 21669.8 17 2296616 31015204 -1 9.33987 3.47782 -46390.5 -8.33987 0 0 50.94 -1 -1 2081.0 MiB 38.16 22.6708 18.6622 2081.0 MiB -1 18.21 -3d_full_OPIN_inter_die_stratixiv_arch.timing.xml radar20_stratixiv_arch_timing.blif common 116.04 vpr 1.42 GiB 5 333 31 105 0 2 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 1487240 3 2 14862 10304 26 7583 476 49 36 3528 DSP auto 1035.3 MiB 44.85 91640 143465 34428 97411 11626 1452.4 MiB 9.56 0.11 5.55968 -32627.3 -4.55968 4.03585 0.05 0.0580242 0.0511336 5.23009 4.40266 162858 21.5506 34640 4.58383 20772 47469 39442838 8696473 0 0 7.61223e+07 21576.6 17 1038076 13772104 -1 5.83812 3.81128 -37803.8 -4.83812 0 0 22.95 -1 -1 1452.4 MiB 12.55 8.31954 7.18554 1452.4 MiB -1 7.74 -3d_full_OPIN_inter_die_stratixiv_arch.timing.xml random_stratixiv_arch_timing.blif common 307.88 vpr 1.76 GiB 693 1797 25 16 0 0 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 1842824 35 658 51416 37539 1 27427 2531 58 43 4988 io auto 1280.9 MiB 92.83 193340 1985246 651294 1194899 139053 1799.6 MiB 104.91 0.90 42.817 -66341.8 -41.817 42.817 0.08 0.174464 0.149553 21.4513 18.52 318648 12.2949 76857 2.96551 72321 215661 101797360 20420450 0 0 1.07584e+08 21568.7 26 1452444 19486512 -1 38.0834 38.0834 -61419.7 -37.0834 0 0 32.89 -1 -1 1799.6 MiB 36.69 32.4273 28.3397 1799.6 MiB -1 11.41 -3d_full_OPIN_inter_die_stratixiv_arch.timing.xml Reed_Solomon_stratixiv_arch_timing.blif common 191.13 vpr 1.76 GiB 753 1113 5 32 0 0 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 1848728 13 740 25173 25306 1 12716 1903 63 47 5922 io auto 1133.0 MiB 66.11 114187 1121763 389127 687964 44672 1805.4 MiB 36.03 0.35 9.10047 -33210.9 -8.10047 9.10047 0.10 0.0829476 0.0672165 8.6028 7.09879 180406 14.1951 42811 3.36856 29439 106878 36794843 4980523 0 0 1.28005e+08 21615.1 13 1733724 23216534 -1 8.86459 8.53756 -33502.4 -7.86459 0 0 39.09 -1 -1 1805.4 MiB 13.39 12.4192 10.5234 1805.4 MiB -1 13.65 -3d_full_OPIN_inter_die_stratixiv_arch.timing.xml smithwaterman_stratixiv_arch_timing.blif common 365.42 vpr 1.71 GiB 117 2338 0 0 0 0 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 1789484 79 38 66795 54922 1 35698 2455 47 35 3290 LAB auto 1330.0 MiB 148.46 220034 1575085 472174 1056131 46780 1607.4 MiB 128.88 1.19 10.366 -185682 -9.366 10.366 0.05 0.166017 0.132704 17.7166 14.3298 340742 9.54593 82334 2.30660 86785 211666 72987830 8810844 0 0 7.07061e+07 21491.2 18 956596 12773992 -1 10.3348 10.3348 -186105 -9.33478 0 0 21.58 -1 -1 1659.8 MiB 29.02 26.9646 22.2301 1607.4 MiB -1 7.36 -3d_full_OPIN_inter_die_stratixiv_arch.timing.xml stap_steering_stratixiv_arch_timing.blif common 236.24 vpr 1.65 GiB 213 1565 26 4 0 0 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 1729420 139 74 57121 41054 1 24001 1808 49 36 3528 DSP auto 1290.4 MiB 89.13 143448 1223918 387573 791889 44456 1618.2 MiB 69.23 0.62 6.15923 -22935.6 -5.15923 6.15923 0.06 0.160924 0.134554 18.8103 16.0328 226941 9.45706 54238 2.26020 51698 93187 54990565 12041480 0 0 7.61223e+07 21576.6 16 1038076 13772104 -1 6.33927 6.33927 -28490.3 -5.33927 0 0 23.07 -1 -1 1627.8 MiB 19.85 26.0631 22.6082 1618.2 MiB -1 7.69 -3d_full_OPIN_inter_die_stratixiv_arch.timing.xml sudoku_check_stratixiv_arch_timing.blif common 121.12 vpr 1.21 GiB 54 665 0 40 0 1 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 1272616 2 52 16673 16662 2 12027 760 32 24 1536 M9K auto 1066.8 MiB 48.71 145866 267719 70212 178005 19502 1223.6 MiB 17.33 0.21 6.32104 -21443.6 -5.32104 5.1317 0.02 0.0642369 0.0519236 5.54676 4.5538 218475 18.1714 52270 4.34750 52154 158487 72130661 9975959 0 0 3.29272e+07 21437.0 17 447460 5950766 -1 6.2459 4.96992 -24617.9 -5.2459 0 0 10.12 -1 -1 1223.6 MiB 22.65 9.07986 7.70719 1223.6 MiB -1 2.99 -3d_full_OPIN_inter_die_stratixiv_arch.timing.xml SURF_desc_stratixiv_arch_timing.blif common 360.73 vpr 1.77 GiB 445 2156 19 52 0 0 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 1854860 131 314 57881 45152 1 32833 2672 49 36 3528 DSP auto 1363.2 MiB 112.86 262777 1930208 669923 1189043 71242 1666.5 MiB 145.10 1.38 223.441 -74881.2 -222.441 223.441 0.05 0.211297 0.180427 24.3293 20.7548 427696 13.0558 103553 3.16106 90894 273726 106018598 14702817 0 0 7.61223e+07 21576.6 21 1038076 13772104 -1 190.035 190.035 -73399.2 -189.035 0 0 23.08 -1 -1 1732.8 MiB 39.37 36.0725 31.1574 1666.5 MiB -1 7.54 -3d_full_OPIN_inter_die_stratixiv_arch.timing.xml ucsb_152_tap_fir_stratixiv_arch_timing.blif common 60.38 vpr 1.18 GiB 42 758 0 0 0 0 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 1239040 13 29 26295 20086 1 12439 800 29 21 1218 LAB auto 1061.9 MiB 15.77 60924 230944 39979 176254 14711 1186.8 MiB 11.56 0.18 5.04063 -5430.36 -4.04063 2.87222 0.02 0.0364742 0.0318647 2.60212 2.17525 74753 6.01053 18783 1.51025 25814 34889 12202224 1634430 0 0 2.60031e+07 21349.0 17 354380 4692432 -1 5.24483 2.65773 -5067.06 -4.24483 0 0 8.10 -1 -1 1186.8 MiB 4.94 4.43218 3.80588 1186.8 MiB -1 2.32 -3d_full_OPIN_inter_die_stratixiv_arch.timing.xml uoft_raytracer_stratixiv_arch_timing.blif common 296.54 vpr 2.16 GiB 964 1119 19 34 0 0 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 2262908 542 422 37277 26038 1 20403 2136 78 58 9048 io auto 1150.3 MiB 72.90 213411 1459636 524477 868204 66955 2209.9 MiB 84.09 0.87 8.12716 -41041.3 -7.12716 8.12716 0.14 0.11422 0.095868 12.9019 10.9024 322533 15.8104 73202 3.58833 58164 135585 115660664 26279570 0 0 1.96207e+08 21685.1 19 2627776 35613460 -1 7.60563 7.60563 -38875.6 -6.60563 0 0 58.66 -1 -1 2209.9 MiB 34.96 18.71 16.1454 2209.9 MiB -1 20.83 -3d_full_OPIN_inter_die_stratixiv_arch.timing.xml wb_conmax_stratixiv_arch_timing.blif common 209.98 vpr 2.38 GiB 1107 725 0 0 0 0 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 2494688 403 704 15490 16194 1 8534 1832 88 65 11440 io auto 1060.9 MiB 49.31 117261 1200767 458957 708379 33431 2436.2 MiB 25.42 0.26 11.7854 -20675.2 -10.7854 5.73126 0.18 0.0562212 0.0465333 6.50332 5.46368 182292 21.3632 36297 4.25372 22684 88666 28845037 3461649 0 0 2.47896e+08 21669.2 14 3325632 44947178 -1 11.9953 5.82624 -23038.5 -10.9953 0 0 74.42 -1 -1 2436.2 MiB 10.82 9.12659 7.84634 2436.2 MiB -1 27.36 -3d_full_OPIN_inter_die_stratixiv_arch.timing.xml picosoc_stratixiv_arch_timing.blif common 115.88 vpr 1.17 GiB 35 739 0 6 0 0 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 1230928 18 17 16969 16357 1 6288 780 28 21 1176 LAB auto 1057.5 MiB 66.57 64446 230476 54244 170900 5332 1183.1 MiB 10.85 0.17 7.74825 -47724 -6.74825 7.74825 0.02 0.0458274 0.0351245 3.17308 2.53234 105547 16.7961 26043 4.14433 16938 75501 27527280 3256994 0 0 2.50861e+07 21331.7 14 342304 4525318 -1 7.60467 7.60467 -45348.9 -6.60467 0 0 7.98 -1 -1 1183.1 MiB 9.47 5.27867 4.40168 1183.1 MiB -1 2.23 -3d_full_OPIN_inter_die_stratixiv_arch.timing.xml murax_stratixiv_arch_timing.blif common 23.87 vpr 993.03 MiB 35 78 0 8 0 0 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 1016864 18 17 2291 2142 1 1448 121 13 10 260 LAB auto 954.3 MiB 6.57 8979 9091 989 7145 957 993.0 MiB 0.57 0.01 5.30858 -4141.38 -4.30858 4.67064 0.00 0.00654281 0.00572201 0.265779 0.231578 13865 9.59516 3702 2.56194 3278 7822 3354574 494732 0 0 5.17151e+06 19890.4 12 69776 908778 -1 5.46939 4.48287 -3903.7 -4.46939 0 0 1.75 -1 -1 993.0 MiB 1.23 0.606378 0.546433 993.0 MiB -1 0.21 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est 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 163.02 vpr 1.63 GiB 274 1042 36 59 0 2 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 1710280 22 252 53001 29054 7 22943 1413 54 40 4320 DSP auto 1236.7 MiB 39.44 553143 184563 873273 250110 551395 71768 1670.2 MiB 51.56 0.44 11.8556 7.87174 -43548.4 -6.87174 3.3085 0.04 0.123505 0.111445 15.5558 13.296 304060 13.2714 69338 3.02641 61073 128176 122419449 33174955 0 0 9.32900e+07 21594.9 19 1265168 16897716 -1 7.53553 3.06212 -39277 -6.53553 0 0 17.19 -1 -1 1670.2 MiB 28.45 21.8553 18.9725 1670.2 MiB -1 6.50 +3d_full_OPIN_inter_die_stratixiv_arch.timing.xml CH_DFSIN_stratixiv_arch_timing.blif common 180.22 vpr 1.51 GiB 36 1580 9 10 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 1579152 3 33 48977 39238 1 26189 1635 40 30 2400 LAB auto 1260.6 MiB 54.69 675596 228461 906667 263743 600906 42018 1445.6 MiB 65.17 0.61 103.199 89.4627 -80347.1 -88.4627 89.4627 0.02 0.123029 0.0986105 14.199 11.4265 356523 13.6155 87289 3.33355 78260 206743 90689914 14925324 0 0 5.14202e+07 21425.1 22 702232 9282330 -1 70.9785 70.9785 -96386.4 -69.9785 0 0 9.85 -1 -1 1487.0 MiB 25.33 21.059 17.3632 1445.6 MiB -1 3.35 +3d_full_OPIN_inter_die_stratixiv_arch.timing.xml CHERI_stratixiv_arch_timing.blif common 340.01 vpr 1.95 GiB 211 2281 3 210 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 2048992 38 173 62892 59064 3 35490 2705 60 44 5280 M9K auto 1470.4 MiB 113.22 1 466891 1867766 638347 1188962 40457 1908.5 MiB 119.16 1.11 23.156 12.9703 -351376 -11.9703 8.02903 0.05 0.215422 0.185865 24.9657 19.578 756272 21.3142 175267 4.93960 128214 464786 184257221 27767301 0 0 1.14226e+08 21633.7 19 1553068 20716258 -1 12.3378 7.46737 -352387 -11.3378 0 0 20.97 -1 -1 1908.5 MiB 48.79 36.2864 29.2693 1908.5 MiB -1 7.98 +3d_full_OPIN_inter_die_stratixiv_arch.timing.xml EKF-SLAM_Jacobians_stratixiv_arch_timing.blif common 373.89 vpr 1.91 GiB 574 2788 16 0 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 2007384 4 570 66175 54803 2 39253 3378 51 38 3876 LAB auto 1499.1 MiB 99.87 1 482306 2562213 886867 1580400 94946 1776.8 MiB 144.28 1.36 45.2277 30.0102 -117157 -29.0102 6.49654 0.03 0.212298 0.19009 25.7913 20.7174 808619 20.6028 183919 4.68607 176656 706881 320986661 49813509 0 0 8.35478e+07 21555.2 21 1135740 15114436 -1 29.0374 6.24338 -115391 -28.0374 0 0 15.81 -1 -1 1856.1 MiB 78.25 38.3522 31.5254 1776.8 MiB -1 5.73 +3d_full_OPIN_inter_die_stratixiv_arch.timing.xml fir_cascade_stratixiv_arch_timing.blif common 429.60 vpr 4.50 GiB 40 3707 172 1 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 4722240 19 21 171111 96274 1 69189 3920 129 96 24768 DSP auto 2001.1 MiB 73.03 2 602918 3649530 1421026 2196167 32337 4611.6 MiB 132.23 1.27 6.62096 5.16746 -108678 -4.16746 3.16445 0.24 0.404496 0.351859 49.8836 43.962 760441 10.9913 164698 2.38051 138720 171477 121850186 30999203 0 0 5.40274e+08 21813.4 12 7186500 97663758 -1 5.18984 3.41724 -137387 -4.18984 0 0 98.44 -1 -1 4611.6 MiB 32.70 63.1285 56.2041 4611.6 MiB -1 49.27 +3d_full_OPIN_inter_die_stratixiv_arch.timing.xml jacobi_stratixiv_arch_timing.blif common 217.11 vpr 1.63 GiB 536 1945 7 4 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 1714264 227 309 49176 40422 1 28286 2492 47 35 3290 io auto 1318.1 MiB 72.14 949337 230310 1809508 633583 1119861 56064 1590.1 MiB 79.93 0.86 289.572 220.521 -127261 -219.521 220.521 0.02 0.156112 0.125918 17.0682 13.7681 371393 13.1318 90754 3.20890 78062 243708 86098619 10967186 0 0 7.07061e+07 21491.2 19 956596 12773992 -1 183.258 183.258 -122529 -182.258 0 0 13.56 -1 -1 1605.5 MiB 23.90 23.9832 19.7076 1590.1 MiB -1 4.56 +3d_full_OPIN_inter_die_stratixiv_arch.timing.xml JPEG_stratixiv_arch_timing.blif common 198.54 vpr 1.70 GiB 36 1395 8 151 2 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 1786688 3 33 52402 39411 1 26915 1592 57 42 4788 M9K auto 1285.6 MiB 61.21 807202 237745 809996 223571 562388 24037 1744.8 MiB 56.29 0.57 24.0259 17.5288 -339439 -16.5288 17.5288 0.05 0.140741 0.109909 14.9895 12.1055 395902 14.7137 92407 3.43431 79357 212916 121957158 21173533 0 0 1.03316e+08 21578.1 22 1396452 18714052 -1 17.0616 17.0616 -326321 -16.0616 0 0 19.00 -1 -1 1744.8 MiB 31.88 22.557 18.3795 1744.8 MiB -1 7.95 +3d_full_OPIN_inter_die_stratixiv_arch.timing.xml leon2_stratixiv_arch_timing.blif common 81.67 vpr 1.23 GiB 251 958 1 17 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 1291604 55 196 20131 19956 1 8019 1227 32 24 1536 LAB auto 1106.5 MiB 34.94 197415 91389 533073 155258 350786 27029 1252.7 MiB 12.28 0.15 10.5638 7.9694 -84401.8 -6.9694 7.9694 0.01 0.0391724 0.0337257 4.13053 3.13542 156922 19.5761 38124 4.75599 24144 106283 43472187 5062582 0 0 3.29272e+07 21437.0 17 447460 5950766 -1 8.0038 8.0038 -76147.9 -7.0038 0 0 6.09 -1 -1 1252.7 MiB 10.82 6.4594 5.1443 1252.7 MiB -1 1.83 +3d_full_OPIN_inter_die_stratixiv_arch.timing.xml leon3mp_stratixiv_arch_timing.blif common 174.35 vpr 1.53 GiB 255 2083 1 28 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 1603028 84 171 36458 36247 3 20790 2367 44 33 2904 LAB auto 1266.2 MiB 81.48 546571 214795 1437255 480391 886927 69937 1498.7 MiB 38.24 0.40 17.1545 12.2615 -90825 -11.2615 4.44627 0.02 0.118854 0.087873 11.8695 8.93815 368296 17.7270 84627 4.07331 55785 195975 64857507 8108532 0 0 6.23802e+07 21480.8 14 847384 11269474 -1 12.4986 4.24047 -87839 -11.4986 0 0 11.58 -1 -1 1498.7 MiB 18.31 16.6314 13.0164 1498.7 MiB -1 4.08 +3d_full_OPIN_inter_die_stratixiv_arch.timing.xml MCML_stratixiv_arch_timing.blif common 233.35 vpr 2.31 GiB 69 2179 10 295 16 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 2417992 36 33 57796 49182 1 19635 2569 79 59 9322 M144K auto 1406.8 MiB 62.54 653233 192546 2183357 844340 1310310 28707 2361.3 MiB 58.92 0.56 18.0423 9.76693 -96722.1 -8.76693 9.76693 0.06 0.125515 0.0975704 16.3759 12.9715 379198 19.3173 88012 4.48355 51383 170986 126474373 30291745 0 0 2.01410e+08 21605.9 16 2701980 36491882 -1 8.56238 8.56238 -127393 -7.56238 0 0 36.63 -1 -1 2361.3 MiB 32.09 22.3007 18.2177 2361.3 MiB -1 16.38 +3d_full_OPIN_inter_die_stratixiv_arch.timing.xml MMM_stratixiv_arch_timing.blif common 183.95 vpr 2.03 GiB 478 1237 1 300 4 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 2129820 202 276 35125 30509 3 21318 2020 73 54 7884 M9K auto 1221.4 MiB 50.16 716729 207560 1380532 469949 847523 63060 2079.9 MiB 35.53 0.34 10.3029 9.20592 -44245.9 -8.20592 3.37783 0.05 0.134527 0.101332 13.395 10.226 376235 17.6537 83221 3.90489 56995 167645 133187361 25954915 0 0 1.70845e+08 21669.8 16 2296616 31015204 -1 9.30202 3.57682 -47252 -8.30202 0 0 31.53 -1 -1 2079.9 MiB 31.26 18.6275 14.7303 2079.9 MiB -1 13.18 +3d_full_OPIN_inter_die_stratixiv_arch.timing.xml radar20_stratixiv_arch_timing.blif common 67.96 vpr 1.42 GiB 5 323 31 105 0 2 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 1486328 3 2 14862 10304 26 7561 466 49 36 3528 DSP auto 1055.6 MiB 18.96 169108 90003 135916 31625 92700 11591 1451.5 MiB 6.45 0.08 7.29278 5.55968 -33241.7 -4.55968 3.91952 0.02 0.0505029 0.0412837 4.05288 3.36705 161880 21.4837 34654 4.59907 19262 41383 32535712 7242694 0 0 7.61223e+07 21576.6 14 1038076 13772104 -1 5.7478 3.7418 -36662.8 -4.7478 0 0 13.92 -1 -1 1451.5 MiB 7.99 6.02567 5.12234 1451.5 MiB -1 5.58 +3d_full_OPIN_inter_die_stratixiv_arch.timing.xml random_stratixiv_arch_timing.blif common 204.01 vpr 1.75 GiB 693 1777 25 16 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 1838636 35 658 51416 37539 1 27424 2511 58 43 4988 io auto 1316.9 MiB 49.69 873485 208058 1947351 617969 1190949 138433 1795.5 MiB 71.44 0.68 67.4142 43.3331 -66203.9 -42.3331 43.3331 0.05 0.15867 0.129165 19.3481 15.9045 342451 13.2154 80916 3.12260 78710 239308 118664359 23155496 0 0 1.07584e+08 21568.7 28 1452444 19486512 -1 38.8692 38.8692 -61793.9 -37.8692 0 0 19.67 -1 -1 1795.5 MiB 32.19 28.9085 24.1772 1795.5 MiB -1 8.02 +3d_full_OPIN_inter_die_stratixiv_arch.timing.xml Reed_Solomon_stratixiv_arch_timing.blif common 119.98 vpr 1.76 GiB 753 1100 5 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 1845228 13 740 25173 25306 1 12838 1890 63 47 5922 io auto 1153.9 MiB 36.41 470725 111381 1111490 384644 673635 53211 1802.0 MiB 22.09 0.20 14.0109 8.87029 -33339 -7.87029 8.87029 0.04 0.0714492 0.0529662 7.49782 5.77897 179395 13.9814 42811 3.33653 29405 105946 37157864 4956640 0 0 1.28005e+08 21615.1 12 1733724 23216534 -1 9.27318 8.25275 -33374.7 -8.27318 0 0 23.38 -1 -1 1802.0 MiB 10.17 10.396 8.3228 1802.0 MiB -1 9.19 +3d_full_OPIN_inter_die_stratixiv_arch.timing.xml smithwaterman_stratixiv_arch_timing.blif common 245.62 vpr 1.71 GiB 117 2311 0 0 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 1796636 79 38 66795 54922 1 35224 2428 47 35 3290 LAB auto 1382.7 MiB 93.98 1 215377 1486820 430516 1012081 44223 1618.4 MiB 86.33 0.85 19.7664 10.4506 -183686 -9.45055 10.4506 0.02 0.156777 0.119319 15.6084 11.9943 339321 9.63405 80812 2.29443 96886 244258 86910997 10095189 0 0 7.07061e+07 21491.2 16 956596 12773992 -1 9.53723 9.53723 -187005 -8.53723 0 0 12.88 -1 -1 1667.2 MiB 23.92 22.6479 18.0205 1618.4 MiB -1 5.24 +3d_full_OPIN_inter_die_stratixiv_arch.timing.xml stap_steering_stratixiv_arch_timing.blif common 151.40 vpr 1.65 GiB 213 1559 26 4 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 1731440 139 74 57121 41054 1 23901 1802 49 36 3528 DSP auto 1329.9 MiB 46.56 503320 137704 1108863 333769 717933 57161 1626.9 MiB 43.96 0.51 7.59102 5.46013 -22573.5 -4.46013 5.46013 0.03 0.180195 0.165554 16.5709 13.7008 220251 9.21668 53111 2.22250 52406 96881 61898013 13579685 0 0 7.61223e+07 21576.6 19 1038076 13772104 -1 5.99682 5.99682 -24267.2 -4.99682 0 0 14.28 -1 -1 1630.1 MiB 17.88 23.1986 19.4889 1626.9 MiB -1 5.57 +3d_full_OPIN_inter_die_stratixiv_arch.timing.xml sudoku_check_stratixiv_arch_timing.blif common 75.64 vpr 1.21 GiB 54 664 0 40 0 1 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 1271256 2 52 16673 16662 2 11970 759 32 24 1536 M9K auto 1088.2 MiB 25.74 287692 137368 242959 60191 164382 18386 1223.0 MiB 10.25 0.13 8.23152 6.34257 -21161.6 -5.34257 5.09376 0.01 0.0560926 0.0414855 4.32633 3.28263 205192 17.1479 49371 4.12594 47973 149300 66746671 9307991 0 0 3.29272e+07 21437.0 18 447460 5950766 -1 6.25468 5.09564 -22684.1 -5.25468 0 0 6.19 -1 -1 1223.0 MiB 15.98 7.17592 5.75226 1223.0 MiB -1 1.87 +3d_full_OPIN_inter_die_stratixiv_arch.timing.xml SURF_desc_stratixiv_arch_timing.blif common 230.76 vpr 1.77 GiB 445 2154 19 52 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 1856468 131 314 57881 45152 1 32883 2670 49 36 3528 DSP auto 1412.8 MiB 63.31 1 257536 1909715 654346 1173189 82180 1674.1 MiB 92.41 1.05 284.301 220.986 -75834.1 -219.986 220.986 0.02 0.196207 0.158753 21.9219 17.9789 420532 12.8188 102359 3.12013 89184 263712 101905909 14381353 0 0 7.61223e+07 21576.6 20 1038076 13772104 -1 184.902 184.902 -76513.8 -183.902 0 0 13.99 -1 -1 1734.2 MiB 28.86 31.23 26.0791 1674.1 MiB -1 5.28 +3d_full_OPIN_inter_die_stratixiv_arch.timing.xml ucsb_152_tap_fir_stratixiv_arch_timing.blif common 39.93 vpr 1.18 GiB 42 749 0 0 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 1239412 13 29 26295 20086 1 12646 791 29 21 1218 LAB auto 1076.4 MiB 8.18 177076 60430 220151 37040 166912 16199 1189.7 MiB 7.30 0.11 5.43671 4.98186 -5389.45 -3.98186 2.74369 0.01 0.0330879 0.0259898 2.22718 1.78099 73991 5.85187 18405 1.45563 25780 35867 12871709 1745504 0 0 2.60031e+07 21349.0 14 354380 4692432 -1 5.1649 2.66536 -5084.57 -4.1649 0 0 4.88 -1 -1 1189.7 MiB 3.94 3.62393 3.00964 1189.7 MiB -1 1.45 +3d_full_OPIN_inter_die_stratixiv_arch.timing.xml uoft_raytracer_stratixiv_arch_timing.blif common 183.79 vpr 2.15 GiB 964 1128 19 34 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 2259360 542 422 37277 26038 1 20404 2145 78 58 9048 io auto 1178.3 MiB 40.93 718781 204992 1467913 504698 890114 73101 2206.4 MiB 50.27 0.49 12.737 8.21006 -40868.3 -7.21006 8.21006 0.06 0.0958342 0.0782222 10.5753 8.68058 311797 15.2834 70688 3.46493 55201 125849 88584799 20461803 0 0 1.96207e+08 21685.1 17 2627776 35613460 -1 7.63571 7.3669 -38752.7 -6.63571 0 0 36.77 -1 -1 2206.4 MiB 20.74 14.778 12.4345 2206.4 MiB -1 15.04 +3d_full_OPIN_inter_die_stratixiv_arch.timing.xml wb_conmax_stratixiv_arch_timing.blif common 144.61 vpr 2.38 GiB 1107 730 0 0 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 2493348 403 704 15490 16194 1 8443 1837 88 65 11440 io auto 1076.0 MiB 26.78 391708 113907 1227651 472143 719270 36238 2434.9 MiB 19.47 0.16 15.5138 11.322 -19964.1 -10.322 5.3194 0.08 0.0431255 0.0386447 6.67046 5.26228 181646 21.5169 36609 4.33653 23247 92055 29218683 3595560 0 0 2.47896e+08 21669.2 15 3325632 44947178 -1 11.1981 5.14875 -21508.2 -10.1981 0 0 45.58 -1 -1 2434.9 MiB 8.58 8.83493 7.15206 2434.9 MiB -1 24.64 +3d_full_OPIN_inter_die_stratixiv_arch.timing.xml picosoc_stratixiv_arch_timing.blif common 70.10 vpr 1.17 GiB 35 731 0 6 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 1229776 18 17 16969 16357 1 6487 772 28 21 1176 LAB auto 1072.2 MiB 36.08 142961 59688 234412 55116 174656 4640 1183.5 MiB 7.02 0.10 10.8841 7.86052 -43530.3 -6.86052 7.86052 0.01 0.0355175 0.0260839 2.6175 1.99269 97980 15.1134 24516 3.78158 16004 64606 24187188 2810280 0 0 2.50861e+07 21331.7 13 342304 4525318 -1 7.19078 7.19078 -42143.8 -6.19078 0 0 4.71 -1 -1 1183.5 MiB 6.19 4.18474 3.37608 1183.5 MiB -1 1.41 +3d_full_OPIN_inter_die_stratixiv_arch.timing.xml murax_stratixiv_arch_timing.blif common 17.77 vpr 996.36 MiB 35 75 0 8 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 1020276 18 17 2291 2142 1 1462 118 13 10 260 LAB auto 957.7 MiB 3.86 11981 9290 8499 834 6799 866 996.4 MiB 0.38 0.01 5.45489 5.30858 -4057.33 -4.30858 4.57404 0.00 0.00478301 0.00426942 0.190791 0.165029 13985 9.58533 3795 2.60110 3319 7859 3369135 512682 0 0 5.17151e+06 19890.4 9 69776 908778 -1 5.24356 4.64087 -3951.05 -4.24356 0 0 1.07 -1 -1 996.4 MiB 0.83 0.393205 0.353496 996.4 MiB -1 0.12 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test7/3d_sb_titan_other_auto_bb/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test7/3d_sb_titan_other_auto_bb/config/golden_results.txt index 1a9fa971299..baf8b675296 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test7/3d_sb_titan_other_auto_bb/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test7/3d_sb_titan_other_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_SB_inter_die_stratixiv_arch.timing.xml carpat_stratixiv_arch_timing.blif common 1172.59 vpr 1.65 GiB 274 1048 36 59 0 2 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 1734316 22 252 53001 29054 7 22984 1419 54 40 4320 DSP auto 1201.6 MiB 73.64 214653 894059 251005 559264 83790 1693.7 MiB 79.53 0.65 7.70472 -37826.5 -6.70472 3.17657 0.08 0.149615 0.135881 18.4856 16.2276 346942 15.1160 80330 3.49991 71500 157095 1535090931 789230213 0 0 8.89497e+07 20590.2 18 1365594 16211305 -1 7.67229 3.07739 -42724.4 -6.67229 0 0 29.57 -1 -1 1693.7 MiB 940.94 26.0477 23.0694 1693.7 MiB -1 23.96 -3d_SB_inter_die_stratixiv_arch.timing.xml CH_DFSIN_stratixiv_arch_timing.blif common 329.77 vpr 1.50 GiB 36 1585 10 10 0 0 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 1576816 3 33 48977 39238 1 26095 1641 40 30 2400 LAB auto 1223.5 MiB 99.18 252169 969141 295922 624406 48813 1444.1 MiB 90.56 0.89 82.4495 -56586.4 -81.4495 82.4495 0.03 0.133831 0.117153 15.353 12.8639 420916 16.1326 105895 4.05868 118615 321172 291100673 58952034 0 0 4.91306e+07 20471.1 26 758110 8921656 -1 72.0146 72.0146 -132785 -71.0146 0 0 16.42 -1 -1 1484.9 MiB 85.29 24.7756 21.0909 1444.1 MiB -1 12.23 -3d_SB_inter_die_stratixiv_arch.timing.xml CHERI_stratixiv_arch_timing.blif common 641.04 vpr 1.96 GiB 211 2277 3 210 0 0 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 2050760 38 173 62892 59064 3 35370 2701 60 44 5280 M9K auto 1407.2 MiB 203.13 510171 1939307 680820 1206280 52207 1927.9 MiB 173.07 1.61 11.2616 -300285 -10.2616 7.35058 0.09 0.251364 0.202792 27.6684 22.4451 799864 22.6187 198121 5.60249 142256 518619 474643655 110260894 0 0 1.08858e+08 20617.0 17 1675578 19868374 -1 14.7898 8.01616 -421363 -13.7898 0 0 36.05 -1 -1 1927.9 MiB 161.55 40.1269 33.3458 1927.9 MiB -1 29.72 -3d_SB_inter_die_stratixiv_arch.timing.xml EKF-SLAM_Jacobians_stratixiv_arch_timing.blif common 991.70 vpr 1.92 GiB 574 2786 16 0 0 0 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 2018452 4 570 66175 54803 2 39221 3376 51 38 3876 LAB auto 1446.4 MiB 179.88 509692 2712081 968624 1648149 95308 1790.4 MiB 217.33 1.88 26.7071 -106583 -25.7071 4.92953 0.06 0.265658 0.222085 30.753 25.8577 822920 20.9843 201896 5.14831 185617 735052 1296414490 366645497 0 0 7.97022e+07 20563.0 20 1225854 14507865 -1 30.288 6.57341 -120054 -29.288 0 0 26.21 -1 -1 1867.6 MiB 509.93 45.4244 38.8563 1790.4 MiB -1 20.62 -3d_SB_inter_die_stratixiv_arch.timing.xml fir_cascade_stratixiv_arch_timing.blif common 1067.25 vpr 4.62 GiB 40 3697 172 1 0 0 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 4842056 19 21 171111 96274 1 69059 3910 129 96 24768 DSP auto 1880.7 MiB 144.01 645363 3760290 1509060 2226895 24335 4728.6 MiB 196.62 2.32 6.72849 -100513 -5.72849 2.73028 0.43 0.510597 0.454713 66.2712 58.6699 801246 11.6028 176582 2.55708 136809 169565 554939068 253332108 0 0 5.14406e+08 20769.0 10 7758968 93673935 -1 6.25252 4.02616 -144264 -5.25252 0 0 173.36 -1 -1 4728.6 MiB 346.30 83.0597 74.3223 4728.6 MiB -1 149.18 -3d_SB_inter_die_stratixiv_arch.timing.xml jacobi_stratixiv_arch_timing.blif common 397.31 vpr 1.63 GiB 536 1955 7 4 0 0 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 1713464 227 309 49176 40422 1 28301 2502 47 35 3290 io auto 1276.8 MiB 127.62 267729 1921016 704204 1175385 41427 1599.4 MiB 134.02 1.32 194.73 -111174 -193.73 194.73 0.05 0.16753 0.141447 20.6062 17.3755 409980 14.4885 103027 3.64092 98368 318292 234678586 45271456 0 0 6.75216e+07 20523.3 20 1033138 12274942 -1 196.841 196.841 -137573 -195.841 0 0 22.11 -1 -1 1604.7 MiB 66.77 29.7244 25.3562 1599.4 MiB -1 17.48 -3d_SB_inter_die_stratixiv_arch.timing.xml JPEG_stratixiv_arch_timing.blif common 413.22 vpr 1.73 GiB 36 1393 8 149 2 0 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 1814172 3 33 52402 39411 1 26961 1588 57 42 4788 M9K auto 1243.2 MiB 110.44 272716 825817 229328 570617 25872 1771.7 MiB 82.01 0.93 15.8733 -287969 -14.8733 15.8733 0.07 0.156169 0.134842 15.1402 12.4708 427395 15.8570 107058 3.97203 83662 216621 348016314 94876303 0 0 9.85096e+07 20574.3 20 1507654 17957159 -1 18.2989 18.2989 -351435 -17.2989 0 0 32.91 -1 -1 1771.7 MiB 133.99 23.8154 20.073 1771.7 MiB -1 25.41 -3d_SB_inter_die_stratixiv_arch.timing.xml leon2_stratixiv_arch_timing.blif common 136.48 vpr 1.24 GiB 251 955 1 17 0 0 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 1295860 55 196 20131 19956 1 8273 1224 32 24 1536 LAB auto 1088.4 MiB 59.84 106751 583640 180621 371614 31405 1246.6 MiB 21.31 0.25 7.0989 -65567.9 -6.0989 7.0989 0.02 0.0579001 0.0443717 5.41731 4.32489 176951 21.3967 45151 5.45961 29990 122737 58119884 11106318 0 0 3.14199e+07 20455.7 16 483264 5705245 -1 8.58513 8.58513 -82449.9 -7.58513 0 0 10.90 -1 -1 1246.6 MiB 18.17 8.28886 6.85025 1246.6 MiB -1 6.97 -3d_SB_inter_die_stratixiv_arch.timing.xml leon3mp_stratixiv_arch_timing.blif common 490.96 vpr 1.54 GiB 255 2122 1 28 0 0 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 1612568 84 171 36458 36247 3 20327 2406 45 33 2970 LAB auto 1229.2 MiB 149.78 250819 1565561 553633 923794 88134 1522.9 MiB 59.74 0.57 10.3141 -74446.1 -9.31412 4.16669 0.05 0.122453 0.0982616 12.7928 10.36 417504 20.5535 99339 4.89042 64295 236643 559755019 162046743 0 0 6.09438e+07 20519.8 16 935204 11078823 -1 14.1009 4.7173 -100461 -13.1009 0 0 19.72 -1 -1 1522.9 MiB 220.56 19.1309 15.8639 1522.9 MiB -1 14.15 -3d_SB_inter_die_stratixiv_arch.timing.xml MCML_stratixiv_arch_timing.blif common 456.82 vpr 2.35 GiB 69 2192 10 295 16 0 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 2459944 36 33 57796 49182 1 19758 2582 79 59 9322 M144K auto 1354.5 MiB 116.70 208658 2198126 841464 1306315 50347 2402.3 MiB 88.77 0.83 9.15792 -77023.4 -8.15792 9.15792 0.15 0.152102 0.123811 20.4428 16.5197 386740 19.5788 94929 4.80580 57777 193960 262282869 78128583 0 0 1.92002e+08 20596.6 16 2917968 35039980 -1 9.09509 9.09509 -148250 -8.09509 0 0 62.97 -1 -1 2402.3 MiB 105.94 28.2563 23.5085 2402.3 MiB -1 49.55 -3d_SB_inter_die_stratixiv_arch.timing.xml MMM_stratixiv_arch_timing.blif common 391.83 vpr 2.07 GiB 478 1233 1 300 4 0 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 2167360 202 276 35125 30509 3 21219 2016 73 54 7884 M9K auto 1185.5 MiB 91.51 224050 1542346 541947 927260 73139 2116.6 MiB 59.94 0.50 9.32745 -27918.9 -8.32745 3.0761 0.12 0.131152 0.102135 16.6741 13.2554 393714 18.5600 91424 4.30981 54848 152461 310286597 88766009 0 0 1.62738e+08 20641.5 15 2479452 29744051 -1 9.42064 3.77724 -50913.7 -8.42064 0 0 53.44 -1 -1 2116.6 MiB 114.73 22.9686 18.8221 2116.6 MiB -1 44.42 -3d_SB_inter_die_stratixiv_arch.timing.xml radar20_stratixiv_arch_timing.blif common 148.74 vpr 1.44 GiB 5 333 31 105 0 2 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 1511644 3 2 14862 10304 26 7583 476 49 36 3528 DSP auto 1036.2 MiB 45.72 83064 154607 38752 101305 14550 1476.2 MiB 10.09 0.11 5.67702 -19756.2 -4.67702 3.74463 0.05 0.0597777 0.0527936 5.58527 4.74534 152254 20.1474 35176 4.65476 19877 43738 72454580 21374549 0 0 7.26079e+07 20580.5 14 1120110 13214470 -1 5.84516 4.10311 -39834.2 -4.84516 0 0 24.01 -1 -1 1476.2 MiB 28.04 8.35092 7.24512 1476.2 MiB -1 22.29 -3d_SB_inter_die_stratixiv_arch.timing.xml random_stratixiv_arch_timing.blif common 346.43 vpr 1.78 GiB 693 1797 25 16 0 0 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 1868112 35 658 51416 37539 1 27427 2531 58 43 4988 io auto 1276.9 MiB 93.13 219255 2157656 730879 1273796 152981 1824.3 MiB 109.67 0.89 40.2879 -60979.5 -39.2879 40.2879 0.08 0.170403 0.154539 23.7513 20.5481 349212 13.4742 85186 3.28688 77275 233364 143562765 36702160 0 0 1.02587e+08 20566.7 21 1568252 18700371 -1 38.5591 38.5591 -67167.5 -37.5591 0 0 34.79 -1 -1 1824.3 MiB 50.23 33.5444 29.3581 1824.3 MiB -1 28.83 -3d_SB_inter_die_stratixiv_arch.timing.xml Reed_Solomon_stratixiv_arch_timing.blif common 218.13 vpr 1.79 GiB 753 1113 5 32 0 0 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 1877276 13 740 25173 25306 1 12716 1903 63 47 5922 io auto 1133.0 MiB 66.22 123520 1204279 427315 726664 50300 1833.3 MiB 39.61 0.36 9.02181 -27438.3 -8.02181 9.02181 0.09 0.0790484 0.0694683 9.30633 7.78111 180566 14.2077 43756 3.44291 31272 116811 38575938 8660251 0 0 1.22008e+08 20602.6 13 1871156 22275272 -1 10.1297 8.7558 -37422.6 -9.12975 0 0 40.27 -1 -1 1833.3 MiB 15.13 13.1986 11.2705 1833.3 MiB -1 33.84 -3d_SB_inter_die_stratixiv_arch.timing.xml smithwaterman_stratixiv_arch_timing.blif common 395.83 vpr 1.71 GiB 117 2338 0 0 0 0 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 1795672 79 38 66795 54922 1 35698 2455 47 35 3290 LAB auto 1330.1 MiB 147.79 247450 1624747 516348 1068765 39634 1627.6 MiB 129.80 1.19 9.58554 -169343 -8.58554 9.58554 0.05 0.181629 0.143035 18.586 15.0291 368099 10.3123 95475 2.67474 86257 200403 122474916 27418708 0 0 6.75216e+07 20523.3 17 1033138 12274942 -1 10.0787 10.0787 -216795 -9.07872 0 0 22.36 -1 -1 1667.7 MiB 46.86 27.3022 22.6133 1627.6 MiB -1 18.57 -3d_SB_inter_die_stratixiv_arch.timing.xml stap_steering_stratixiv_arch_timing.blif common 251.39 vpr 1.66 GiB 213 1565 26 4 0 0 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 1735768 139 74 57121 41054 1 24001 1808 49 36 3528 DSP auto 1289.7 MiB 85.10 145328 1179878 360849 786061 32968 1640.5 MiB 69.36 0.64 5.18803 -16009.3 -4.18803 4.71553 0.06 0.152706 0.134393 18.4109 15.5777 214240 8.92778 54586 2.27470 53253 96856 65663526 17180534 0 0 7.26079e+07 20580.5 19 1120110 13214470 -1 5.62731 5.62731 -28524.3 -4.62731 0 0 23.91 -1 -1 1640.5 MiB 26.16 26.596 22.9352 1640.5 MiB -1 19.18 -3d_SB_inter_die_stratixiv_arch.timing.xml sudoku_check_stratixiv_arch_timing.blif common 136.47 vpr 1.23 GiB 54 665 0 40 0 1 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 1290392 2 52 16673 16662 2 12027 760 32 24 1536 M9K auto 1065.8 MiB 47.70 152283 278120 75325 183121 19674 1260.1 MiB 18.99 0.21 5.35599 -16505.5 -4.35599 4.51559 0.02 0.0653283 0.0529731 5.96357 4.87661 239529 19.9226 64112 5.33245 57238 170600 111195486 21263938 0 0 3.14199e+07 20455.7 20 483264 5705245 -1 6.61831 5.4172 -26290.3 -5.61831 0 0 10.52 -1 -1 1260.1 MiB 32.71 9.93276 8.38713 1260.1 MiB -1 7.29 -3d_SB_inter_die_stratixiv_arch.timing.xml SURF_desc_stratixiv_arch_timing.blif common 437.55 vpr 1.78 GiB 445 2156 19 52 0 0 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 1867528 131 314 57881 45152 1 32833 2672 49 36 3528 DSP auto 1362.4 MiB 112.91 292652 2022878 726716 1212218 83944 1695.6 MiB 151.83 1.37 193.523 -65237.6 -192.523 193.523 0.06 0.213557 0.18157 25.9931 22.1715 453070 13.8304 113197 3.45545 117143 365096 327048949 70274290 0 0 7.26079e+07 20580.5 21 1120110 13214470 -1 201.969 201.969 -83602 -200.969 0 0 23.94 -1 -1 1743.7 MiB 97.67 37.8603 32.6631 1695.6 MiB -1 18.81 -3d_SB_inter_die_stratixiv_arch.timing.xml ucsb_152_tap_fir_stratixiv_arch_timing.blif common 67.95 vpr 1.18 GiB 42 758 0 0 0 0 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 1235488 13 29 26295 20086 1 12439 800 29 21 1218 LAB auto 1063.1 MiB 15.63 63489 256928 52638 188949 15341 1198.2 MiB 13.00 0.16 4.8555 -4307.79 -3.8555 2.47976 0.02 0.0366363 0.0322351 3.02693 2.52688 81757 6.57369 23123 1.85921 26483 36571 27721140 5378093 0 0 2.48366e+07 20391.3 14 382818 4502703 -1 4.99885 2.78104 -5808.83 -3.99885 0 0 8.34 -1 -1 1198.2 MiB 8.51 4.71161 4.0282 1198.2 MiB -1 5.30 -3d_SB_inter_die_stratixiv_arch.timing.xml uoft_raytracer_stratixiv_arch_timing.blif common 447.54 vpr 2.19 GiB 964 1119 19 34 0 0 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 2300520 542 422 37277 26038 1 20403 2136 78 58 9048 io auto 1150.3 MiB 74.85 225689 1597136 573868 950177 73091 2246.6 MiB 97.02 0.89 7.40155 -34081.7 -6.40155 7.40155 0.16 0.121776 0.101863 14.3979 12.1212 339854 16.6595 81624 4.00118 64892 154040 296022532 107475224 0 0 1.86852e+08 20651.1 17 2837414 34147767 -1 8.54909 8.54909 -42257.7 -7.54909 0 0 62.88 -1 -1 2246.6 MiB 134.16 19.8788 17.0808 2246.6 MiB -1 53.46 -3d_SB_inter_die_stratixiv_arch.timing.xml wb_conmax_stratixiv_arch_timing.blif common 304.70 vpr 2.43 GiB 1107 725 0 0 0 0 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 2550580 403 704 15490 16194 1 8534 1832 88 65 11440 io auto 1060.6 MiB 49.77 123671 1380047 554552 786292 39203 2490.8 MiB 31.02 0.26 10.5993 -16629.2 -9.59931 4.97242 0.18 0.0546677 0.0486849 7.77113 6.51315 175220 20.5344 38433 4.50404 23623 93265 107849323 36421682 0 0 2.36204e+08 20647.2 15 3590540 43137666 -1 12.8766 5.81047 -24731 -11.8766 0 0 79.59 -1 -1 2490.8 MiB 52.92 10.6013 9.06122 2490.8 MiB -1 68.45 -3d_SB_inter_die_stratixiv_arch.timing.xml picosoc_stratixiv_arch_timing.blif common 117.22 vpr 1.17 GiB 35 739 0 6 0 0 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 1225656 18 17 16969 16357 1 6288 780 28 21 1176 LAB auto 1057.5 MiB 63.70 72669 252010 65056 180799 6155 1192.1 MiB 11.10 0.16 7.46032 -42922.1 -6.46033 7.46032 0.02 0.0386153 0.0330756 3.3215 2.67044 118105 18.7946 31588 5.02673 19732 92762 36148054 6649139 0 0 2.39639e+07 20377.5 15 369794 4343188 -1 7.99918 7.99918 -51485.8 -6.99918 0 0 8.05 -1 -1 1192.1 MiB 11.26 5.50251 4.59387 1192.1 MiB -1 5.21 -3d_SB_inter_die_stratixiv_arch.timing.xml murax_stratixiv_arch_timing.blif common 24.11 vpr 992.77 MiB 35 78 0 8 0 0 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 1016600 18 17 2291 2142 1 1448 121 13 10 260 LAB auto 954.8 MiB 6.88 9528 9390 1205 7155 1030 992.8 MiB 0.57 0.01 5.30062 -3506.54 -4.30062 4.33661 0.00 0.00633989 0.00552195 0.266113 0.231235 16243 11.2408 5134 3.55294 3509 8574 4051674 833095 0 0 4.97530e+06 19135.8 10 75766 878809 -1 5.2881 4.86207 -4539.08 -4.2881 0 0 1.87 -1 -1 992.8 MiB 1.27 0.557486 0.502971 992.8 MiB -1 0.41 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est 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_SB_inter_die_stratixiv_arch.timing.xml carpat_stratixiv_arch_timing.blif common 262.73 vpr 1.65 GiB 274 1042 36 59 0 2 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 1734948 22 252 53001 29054 7 22943 1413 54 40 4320 DSP auto 1237.0 MiB 40.61 553143 199178 920829 267183 541717 111929 1694.3 MiB 53.87 0.43 9.17101 7.5216 -35787.7 -6.5216 3.21182 0.04 0.16305 0.149822 18.4612 15.68 322466 14.0747 77116 3.36589 65350 138528 312160453 107280244 0 0 8.89497e+07 20590.2 18 1365594 16211305 -1 7.74971 3.11486 -42530.8 -6.74971 0 0 17.72 -1 -1 1694.3 MiB 111.17 24.7092 21.2822 1694.3 MiB -1 18.30 +3d_SB_inter_die_stratixiv_arch.timing.xml CH_DFSIN_stratixiv_arch_timing.blif common 218.36 vpr 1.51 GiB 36 1580 9 10 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 1586640 3 33 48977 39238 1 26189 1635 40 30 2400 LAB auto 1260.7 MiB 55.85 675596 255759 897039 258557 606947 31535 1458.8 MiB 57.70 0.68 88.3086 81.3363 -53562.1 -80.3363 81.3363 0.02 0.116071 0.101917 12.5335 10.2057 414968 15.8475 103107 3.93764 93456 268271 242027202 52796438 0 0 4.91306e+07 20471.1 24 758110 8921656 -1 72.6061 72.6061 -112440 -71.6061 0 0 9.98 -1 -1 1494.3 MiB 64.92 19.6347 16.356 1458.8 MiB -1 8.68 +3d_SB_inter_die_stratixiv_arch.timing.xml CHERI_stratixiv_arch_timing.blif common 457.48 vpr 1.96 GiB 211 2281 3 210 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 2060360 38 173 62892 59064 3 35490 2705 60 44 5280 M9K auto 1471.4 MiB 113.33 1 520068 1924283 670353 1216654 37276 1942.0 MiB 131.56 1.10 15.2717 11.5238 -301358 -10.5238 7.39686 0.05 0.213567 0.18504 27.6637 21.7347 817382 23.0365 199937 5.63489 142706 522733 461856750 113156179 0 0 1.08858e+08 20617.0 17 1675578 19868374 -1 13.8204 7.75079 -387049 -12.8204 0 0 22.95 -1 -1 1942.0 MiB 135.56 38.2071 30.7885 1942.0 MiB -1 24.32 +3d_SB_inter_die_stratixiv_arch.timing.xml EKF-SLAM_Jacobians_stratixiv_arch_timing.blif common 652.90 vpr 1.93 GiB 574 2788 16 0 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 2028064 4 570 66175 54803 2 39253 3378 51 38 3876 LAB auto 1499.6 MiB 99.84 1 500409 2638218 943482 1600815 93921 1829.0 MiB 158.67 1.26 33.2636 26.8304 -103428 -25.8304 5.04591 0.03 0.211943 0.190267 27.9403 22.4025 815041 20.7664 199378 5.07995 180000 713197 1112642923 293988107 0 0 7.97022e+07 20563.0 19 1225854 14507865 -1 29.4376 6.2205 -118224 -28.4376 0 0 15.52 -1 -1 1877.4 MiB 329.08 39.5382 32.3284 1829.0 MiB -1 19.13 +3d_SB_inter_die_stratixiv_arch.timing.xml fir_cascade_stratixiv_arch_timing.blif common 891.67 vpr 4.62 GiB 40 3707 172 1 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 4842964 19 21 171111 96274 1 69189 3920 129 96 24768 DSP auto 2000.7 MiB 71.30 2 645543 3742215 1460860 2253546 27809 4729.5 MiB 143.23 1.55 6.26745 5.38646 -75141.3 -4.38646 2.661 0.21 0.381461 0.352014 50.6194 44.9049 793742 11.4726 177452 2.56485 138089 170387 641489720 283501353 0 0 5.14406e+08 20769.0 13 7758968 93673935 -1 5.52629 3.53475 -126958 -4.52629 0 0 103.08 -1 -1 4729.5 MiB 405.15 65.0255 58.2156 4729.5 MiB -1 124.42 +3d_SB_inter_die_stratixiv_arch.timing.xml jacobi_stratixiv_arch_timing.blif common 256.11 vpr 1.63 GiB 536 1945 7 4 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 1714208 227 309 49176 40422 1 28286 2492 47 35 3290 io auto 1318.7 MiB 72.10 949337 273836 1826396 645111 1142297 38988 1612.8 MiB 96.72 0.93 225.36 192.733 -109545 -191.733 192.733 0.02 0.156504 0.126676 20.8925 16.8363 408295 14.4366 100640 3.55845 86047 274415 147097876 28755122 0 0 6.75216e+07 20523.3 21 1033138 12274942 -1 200.665 200.665 -142282 -199.665 0 0 13.32 -1 -1 1612.8 MiB 36.86 29.3018 24.1342 1612.8 MiB -1 13.65 +3d_SB_inter_die_stratixiv_arch.timing.xml JPEG_stratixiv_arch_timing.blif common 269.17 vpr 1.73 GiB 36 1395 8 151 2 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 1812688 3 33 52402 39411 1 26915 1592 57 42 4788 M9K auto 1284.6 MiB 61.12 807203 272165 819288 227842 565954 25492 1770.2 MiB 52.22 0.49 18.2161 15.3889 -291282 -14.3889 15.3889 0.05 0.120302 0.107221 13.5276 10.7971 422804 15.7135 103735 3.85532 81547 210905 297118544 78086054 0 0 9.85096e+07 20574.3 19 1507654 17957159 -1 16.9508 16.9508 -333506 -15.9508 0 0 19.51 -1 -1 1770.2 MiB 88.24 20.4969 16.8404 1770.2 MiB -1 24.30 +3d_SB_inter_die_stratixiv_arch.timing.xml leon2_stratixiv_arch_timing.blif common 89.89 vpr 1.24 GiB 251 958 1 17 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 1302480 55 196 20131 19956 1 8019 1227 32 24 1536 LAB auto 1106.6 MiB 34.90 197415 104963 533073 153234 353035 26804 1272.0 MiB 12.26 0.14 8.14098 7.01338 -66863.1 -6.01338 7.01338 0.01 0.039475 0.0343628 4.18838 3.15967 176313 21.9951 44706 5.57710 30256 140591 66330875 12196118 0 0 3.14199e+07 20455.7 18 483264 5705245 -1 8.49466 8.49466 -83973.4 -7.49466 0 0 6.31 -1 -1 1272.0 MiB 15.31 6.65714 5.25964 1272.0 MiB -1 4.97 +3d_SB_inter_die_stratixiv_arch.timing.xml leon3mp_stratixiv_arch_timing.blif common 299.01 vpr 1.55 GiB 255 2083 1 28 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 1621904 84 171 36458 36247 3 20790 2367 44 33 2904 LAB auto 1267.4 MiB 80.84 546571 238344 1484559 494119 911634 78806 1532.2 MiB 40.61 0.36 12.4149 9.92645 -70892.9 -8.92645 4.01682 0.02 0.116517 0.0861493 12.2531 9.24683 412828 19.8704 97692 4.70216 64195 234317 420279392 124136285 0 0 5.95688e+07 20512.7 16 914964 10827114 -1 11.9935 4.50781 -88218.8 -10.9935 0 0 11.79 -1 -1 1532.2 MiB 133.15 17.7182 13.8758 1532.2 MiB -1 11.09 +3d_SB_inter_die_stratixiv_arch.timing.xml MCML_stratixiv_arch_timing.blif common 373.19 vpr 2.35 GiB 69 2179 10 295 16 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 2462636 36 33 57796 49182 1 19635 2569 79 59 9322 M144K auto 1407.5 MiB 62.12 653233 219853 2183357 820965 1334147 28245 2404.9 MiB 59.41 0.49 12.995 9.21965 -66996.8 -8.21965 9.21965 0.06 0.128267 0.100412 17.0634 13.614 394289 20.0860 93339 4.75492 57830 186027 364956321 126736164 0 0 1.92002e+08 20596.6 18 2917968 35039980 -1 8.77433 8.77433 -145846 -7.77433 0 0 38.68 -1 -1 2404.9 MiB 142.35 23.6694 19.4579 2404.9 MiB -1 44.19 +3d_SB_inter_die_stratixiv_arch.timing.xml MMM_stratixiv_arch_timing.blif common 392.27 vpr 2.07 GiB 478 1237 1 300 4 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 2167316 202 276 35125 30509 3 21318 2020 73 54 7884 M9K auto 1222.1 MiB 49.37 716730 226089 1457116 486885 913306 56925 2116.5 MiB 42.81 0.35 9.52583 8.88073 -26635 -7.88073 3.18285 0.07 0.119653 0.0909611 14.637 11.0787 399097 18.7264 91130 4.27599 54535 154132 519438963 188622732 0 0 1.62738e+08 20641.5 16 2479452 29744051 -1 9.08319 3.80572 -49812 -8.08319 0 0 32.24 -1 -1 2116.5 MiB 209.16 19.8689 15.6003 2116.5 MiB -1 36.86 +3d_SB_inter_die_stratixiv_arch.timing.xml radar20_stratixiv_arch_timing.blif common 85.50 vpr 1.44 GiB 5 323 31 105 0 2 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 1509716 3 2 14862 10304 26 7561 466 49 36 3528 DSP auto 1056.3 MiB 18.88 169108 85844 135916 30477 93312 12127 1474.3 MiB 6.51 0.07 5.73048 5.557 -19015 -4.557 3.62644 0.03 0.0456596 0.0411065 4.08767 3.43596 157309 20.8771 36213 4.80597 18870 41509 57269136 14229362 0 0 7.26079e+07 20580.5 15 1120110 13214470 -1 5.78387 4.12666 -38218.5 -4.78387 0 0 14.31 -1 -1 1474.3 MiB 14.90 6.20184 5.31676 1474.3 MiB -1 15.38 +3d_SB_inter_die_stratixiv_arch.timing.xml random_stratixiv_arch_timing.blif common 248.43 vpr 1.78 GiB 693 1777 25 16 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 1866084 35 658 51416 37539 1 27424 2511 58 43 4988 io auto 1316.8 MiB 50.40 873485 226954 1964411 652069 1171686 140656 1822.3 MiB 73.09 0.61 49.8814 40.4001 -59333.6 -39.4001 40.4001 0.03 0.158116 0.128524 19.1544 15.9201 355332 13.7125 84607 3.26504 77692 234589 195988135 57038734 0 0 1.02587e+08 20566.7 20 1568252 18700371 -1 38.7069 38.7069 -65173.3 -37.7069 0 0 20.54 -1 -1 1822.3 MiB 56.96 26.6827 22.5702 1822.3 MiB -1 23.14 +3d_SB_inter_die_stratixiv_arch.timing.xml Reed_Solomon_stratixiv_arch_timing.blif common 141.37 vpr 1.79 GiB 753 1100 5 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 1874180 13 740 25173 25306 1 12838 1890 63 47 5922 io auto 1153.9 MiB 36.12 470725 123620 1228290 428597 741781 57912 1830.3 MiB 24.74 0.23 10.849 8.56701 -26610 -7.56701 8.56701 0.05 0.083452 0.064458 8.41672 6.65404 186843 14.5618 44606 3.47642 30689 112737 37690136 7677659 0 0 1.22008e+08 20602.6 12 1871156 22275272 -1 9.76611 8.4502 -37527.7 -8.76611 0 0 24.66 -1 -1 1830.3 MiB 11.13 11.422 9.27304 1830.3 MiB -1 26.23 +3d_SB_inter_die_stratixiv_arch.timing.xml smithwaterman_stratixiv_arch_timing.blif common 285.30 vpr 1.73 GiB 117 2311 0 0 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 1811880 79 38 66795 54922 1 35224 2428 47 35 3290 LAB auto 1382.5 MiB 92.81 1 237877 1503132 446447 1022533 34152 1655.8 MiB 78.24 0.76 13.2451 9.5537 -149791 -8.5537 9.5537 0.02 0.152306 0.114957 15.7483 12.0158 358747 10.1856 91140 2.58766 88569 216835 204329717 50299933 0 0 6.75216e+07 20523.3 18 1033138 12274942 -1 9.9587 9.9587 -197744 -8.9587 0 0 13.29 -1 -1 1682.4 MiB 65.08 23.1672 18.3775 1655.8 MiB -1 12.44 +3d_SB_inter_die_stratixiv_arch.timing.xml stap_steering_stratixiv_arch_timing.blif common 213.89 vpr 1.66 GiB 213 1559 26 4 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 1740508 139 74 57121 41054 1 23901 1802 49 36 3528 DSP auto 1330.9 MiB 48.02 503320 154131 1174629 363761 769595 41273 1652.4 MiB 45.14 0.39 5.50142 5.06937 -14829.9 -4.06937 4.54902 0.03 0.138834 0.113113 15.68 12.9864 226482 9.47742 56073 2.34645 53387 100788 162800398 52833452 0 0 7.26079e+07 20580.5 19 1120110 13214470 -1 5.71253 5.71253 -26580.8 -4.71253 0 0 14.37 -1 -1 1652.4 MiB 63.76 22.1086 18.5194 1652.4 MiB -1 20.85 +3d_SB_inter_die_stratixiv_arch.timing.xml sudoku_check_stratixiv_arch_timing.blif common 89.86 vpr 1.23 GiB 54 664 0 40 0 1 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 1290592 2 52 16673 16662 2 11970 759 32 24 1536 M9K auto 1088.0 MiB 26.43 287692 161090 263719 72038 171536 20145 1260.3 MiB 11.76 0.13 6.37147 5.55664 -16395.7 -4.55664 4.47275 0.01 0.050566 0.0440543 5.03152 3.8482 241810 20.2081 60678 5.07087 57910 175927 97879920 19640107 0 0 3.14199e+07 20455.7 19 483264 5705245 -1 6.59971 5.40287 -26695.4 -5.59971 0 0 6.31 -1 -1 1260.3 MiB 24.34 8.27622 6.64124 1260.3 MiB -1 5.29 +3d_SB_inter_die_stratixiv_arch.timing.xml SURF_desc_stratixiv_arch_timing.blif common 264.05 vpr 1.77 GiB 445 2154 19 52 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 1859132 131 314 57881 45152 1 32883 2670 49 36 3528 DSP auto 1415.0 MiB 62.59 1 282089 1946745 666918 1199261 80566 1701.5 MiB 104.89 1.01 225.053 191.914 -65212.8 -190.914 191.914 0.03 0.201041 0.162936 22.616 18.5359 440255 13.4200 111096 3.38645 97832 293933 160920714 33139153 0 0 7.26079e+07 20580.5 20 1120110 13214470 -1 194.207 194.207 -87739.7 -193.207 0 0 14.29 -1 -1 1736.8 MiB 41.90 32.0428 26.7006 1701.5 MiB -1 15.35 +3d_SB_inter_die_stratixiv_arch.timing.xml ucsb_152_tap_fir_stratixiv_arch_timing.blif common 48.49 vpr 1.18 GiB 42 749 0 0 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 1234732 13 29 26295 20086 1 12646 791 29 21 1218 LAB auto 1076.6 MiB 8.80 177076 64046 227463 40446 173214 13803 1199.8 MiB 8.23 0.15 5.037 4.98027 -4032.99 -3.98027 2.30436 0.01 0.0456958 0.0355344 2.82114 2.35786 82605 6.53314 22481 1.77800 26837 36867 19813331 3639454 0 0 2.48366e+07 20391.3 15 382818 4502703 -1 5.12354 2.59981 -5253.47 -4.12354 0 0 5.41 -1 -1 1199.8 MiB 5.89 4.54065 3.86566 1199.8 MiB -1 4.08 +3d_SB_inter_die_stratixiv_arch.timing.xml uoft_raytracer_stratixiv_arch_timing.blif common 272.56 vpr 2.19 GiB 964 1128 19 34 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 2297736 542 422 37277 26038 1 20404 2145 78 58 9048 io auto 1177.8 MiB 41.32 718781 227527 1550881 568722 914128 68031 2243.9 MiB 60.56 0.59 9.1469 7.25001 -32266.1 -6.25001 7.25001 0.08 0.111702 0.0914081 11.9361 9.76182 338642 16.5993 80909 3.96593 60739 140963 198511353 67181932 0 0 1.86852e+08 20651.1 17 2837414 34147767 -1 8.14337 8.14337 -40401.7 -7.14337 0 0 39.17 -1 -1 2243.9 MiB 66.88 16.2467 13.6205 2243.9 MiB -1 42.87 +3d_SB_inter_die_stratixiv_arch.timing.xml wb_conmax_stratixiv_arch_timing.blif common 217.37 vpr 2.43 GiB 1107 730 0 0 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 2549592 403 704 15490 16194 1 8443 1837 88 65 11440 io auto 1076.1 MiB 26.90 391708 129482 1351357 540069 773475 37813 2489.8 MiB 18.66 0.17 12.456 10.282 -15333.7 -9.28198 4.73291 0.06 0.0436402 0.0391903 6.14215 4.89907 181658 21.5184 37765 4.47347 23596 95797 116291029 41210250 0 0 2.36204e+08 20647.2 14 3590540 43137666 -1 12.3059 5.94528 -23194.4 -11.3059 0 0 46.11 -1 -1 2489.8 MiB 49.68 8.25084 6.75286 2489.8 MiB -1 56.27 +3d_SB_inter_die_stratixiv_arch.timing.xml picosoc_stratixiv_arch_timing.blif common 73.98 vpr 1.17 GiB 35 731 0 6 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 1223460 18 17 16969 16357 1 6487 772 28 21 1176 LAB auto 1072.6 MiB 35.91 142961 68762 237952 59303 174205 4444 1190.2 MiB 7.64 0.11 8.63391 7.26898 -38694.5 -6.26898 7.26898 0.01 0.0364213 0.0268054 2.9362 2.27444 111711 17.2314 29470 4.54573 17605 69986 22583565 4090868 0 0 2.39639e+07 20377.5 17 369794 4343188 -1 8.03719 8.03719 -45879 -7.03719 0 0 4.86 -1 -1 1190.2 MiB 6.10 4.74059 3.843 1190.2 MiB -1 4.07 +3d_SB_inter_die_stratixiv_arch.timing.xml murax_stratixiv_arch_timing.blif common 18.64 vpr 996.46 MiB 35 75 0 8 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 1020380 18 17 2291 2142 1 1462 118 13 10 260 LAB auto 958.0 MiB 3.90 11981 9495 9077 1082 6988 1007 996.5 MiB 0.40 0.01 5.34371 5.28494 -3500.46 -4.28494 4.32118 0.00 0.00526682 0.00474166 0.209093 0.18422 16213 11.1124 5131 3.51679 3569 8497 3648403 741386 0 0 4.97530e+06 19135.8 10 75766 878809 -1 5.33265 4.71601 -4254.84 -4.33265 0 0 1.12 -1 -1 996.5 MiB 0.87 0.456072 0.414736 996.5 MiB -1 0.26 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test7/3d_sb_titan_other_per_layer_bb/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test7/3d_sb_titan_other_per_layer_bb/config/golden_results.txt index 08e1f46286a..262c8456a37 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test7/3d_sb_titan_other_per_layer_bb/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test7/3d_sb_titan_other_per_layer_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_SB_inter_die_stratixiv_arch.timing.xml carpat_stratixiv_arch_timing.blif common 536.55 vpr 1.66 GiB 274 1048 36 59 0 2 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 1736116 22 252 53001 29054 7 22984 1419 54 40 4320 DSP auto 1203.7 MiB 75.33 195509 902029 259905 557804 84320 1695.4 MiB 84.98 0.74 7.68567 -37648.9 -6.68567 3.28584 0.07 0.153024 0.133083 18.1163 15.7769 347393 15.1356 91110 3.96959 68562 144013 571183324 243523602 0 0 8.89497e+07 20590.2 16 1365594 16211305 -1 7.79531 3.22903 -48240.7 -6.79531 0 0 29.52 -1 -1 1695.4 MiB 297.68 25.2358 22.2605 1695.4 MiB -1 24.01 -3d_SB_inter_die_stratixiv_arch.timing.xml CH_DFSIN_stratixiv_arch_timing.blif common 315.33 vpr 1.50 GiB 36 1585 10 10 0 0 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 1577588 3 33 48977 39238 1 26095 1641 40 30 2400 LAB auto 1223.4 MiB 101.58 259626 940116 279572 621693 38851 1444.2 MiB 104.57 1.20 82.1047 -56021.6 -81.1047 82.1047 0.03 0.137922 0.120416 14.543 12.1914 423885 16.2464 113939 4.36698 96228 253395 185059095 38347475 0 0 4.91306e+07 20471.1 24 758110 8921656 -1 72.5235 72.5235 -115556 -71.5235 0 0 16.27 -1 -1 1486.1 MiB 54.76 23.4199 19.9723 1444.2 MiB -1 12.10 -3d_SB_inter_die_stratixiv_arch.timing.xml CHERI_stratixiv_arch_timing.blif common 679.10 vpr 1.96 GiB 211 2277 3 210 0 0 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 2051156 38 173 62892 59064 3 35370 2701 60 44 5280 M9K auto 1407.4 MiB 202.36 543821 1995713 704501 1236982 54230 1927.9 MiB 222.49 2.01 11.2639 -298285 -10.2639 7.34492 0.09 0.259679 0.207609 28.5947 23.0535 806716 22.8124 200624 5.67327 143147 517766 456418331 103863687 0 0 1.08858e+08 20617.0 18 1675578 19868374 -1 13.9133 7.76735 -393376 -12.9133 0 0 36.17 -1 -1 1927.9 MiB 150.24 41.7265 34.527 1927.9 MiB -1 29.72 -3d_SB_inter_die_stratixiv_arch.timing.xml EKF-SLAM_Jacobians_stratixiv_arch_timing.blif common 1027.30 vpr 1.92 GiB 574 2786 16 0 0 0 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 2017832 4 570 66175 54803 2 39221 3376 51 38 3876 LAB auto 1446.1 MiB 179.29 547789 2661451 958041 1608713 94697 1789.9 MiB 260.36 2.34 27.0929 -106609 -26.0929 5.35183 0.06 0.27456 0.228129 29.5628 24.7422 829210 21.1447 207429 5.28940 184705 723383 1302091086 364260887 0 0 7.97022e+07 20563.0 18 1225854 14507865 -1 30.5677 6.54028 -121409 -29.5677 0 0 25.79 -1 -1 1868.9 MiB 503.91 43.0657 36.7123 1789.9 MiB -1 20.41 -3d_SB_inter_die_stratixiv_arch.timing.xml fir_cascade_stratixiv_arch_timing.blif common 925.95 vpr 4.62 GiB 40 3697 172 1 0 0 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 4842080 19 21 171111 96274 1 69059 3910 129 96 24768 DSP auto 1880.6 MiB 147.82 619747 3698710 1495912 2184534 18264 4728.6 MiB 198.02 2.37 6.78648 -99082.3 -5.78648 3.44108 0.45 0.48725 0.430185 61.9462 54.5962 814845 11.7998 205031 2.96905 140099 173436 458459419 150453276 0 0 5.14406e+08 20769.0 14 7758968 93673935 -1 6.45787 3.53717 -145075 -5.45787 0 0 172.18 -1 -1 4728.6 MiB 193.32 83.1106 74.2663 4728.6 MiB -1 156.75 -3d_SB_inter_die_stratixiv_arch.timing.xml jacobi_stratixiv_arch_timing.blif common 409.69 vpr 1.63 GiB 536 1955 7 4 0 0 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 1712060 227 309 49176 40422 1 28301 2502 47 35 3290 io auto 1276.6 MiB 131.22 276554 1921016 711963 1138812 70241 1598.4 MiB 145.73 1.42 195.512 -113504 -194.512 195.512 0.05 0.160338 0.134313 19.3452 16.1804 416656 14.7244 107078 3.78408 104021 334271 218912879 40948386 0 0 6.75216e+07 20523.3 20 1033138 12274942 -1 198.006 198.006 -143215 -197.006 0 0 22.05 -1 -1 1607.4 MiB 63.92 28.3971 24.123 1598.4 MiB -1 16.81 -3d_SB_inter_die_stratixiv_arch.timing.xml JPEG_stratixiv_arch_timing.blif common 443.45 vpr 1.73 GiB 36 1393 8 149 2 0 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 1814380 3 33 52402 39411 1 26961 1588 57 42 4788 M9K auto 1243.5 MiB 110.53 271211 807295 220659 561442 25194 1771.9 MiB 87.02 0.90 15.8645 -293903 -14.8645 15.8645 0.07 0.137468 0.119486 13.9778 11.464 446897 16.5806 122453 4.54320 84683 217412 421161484 116638965 0 0 9.85096e+07 20574.3 19 1507654 17957159 -1 17.551 17.551 -341289 -16.551 0 0 33.12 -1 -1 1771.9 MiB 157.72 22.3148 18.7943 1771.9 MiB -1 26.51 -3d_SB_inter_die_stratixiv_arch.timing.xml leon2_stratixiv_arch_timing.blif common 141.26 vpr 1.24 GiB 251 955 1 17 0 0 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 1296500 55 196 20131 19956 1 8273 1224 32 24 1536 LAB auto 1088.2 MiB 59.31 113956 557464 166863 359124 31477 1246.8 MiB 24.59 0.29 7.08326 -66257.5 -6.08326 7.08326 0.02 0.055314 0.0441799 5.26138 4.20946 182605 22.0804 50112 6.05949 29285 119606 66293828 12593582 0 0 3.14199e+07 20455.7 15 483264 5705245 -1 8.63522 8.63522 -90099.9 -7.63522 0 0 10.47 -1 -1 1246.8 MiB 20.00 8.06464 6.66092 1246.8 MiB -1 7.35 -3d_SB_inter_die_stratixiv_arch.timing.xml leon3mp_stratixiv_arch_timing.blif common 368.03 vpr 1.54 GiB 255 2122 1 28 0 0 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 1613076 84 171 36458 36247 3 20327 2406 45 33 2970 LAB auto 1229.2 MiB 152.28 248422 1517216 526978 905843 84395 1523.2 MiB 71.70 0.64 10.4991 -73576.7 -9.49906 4.26563 0.04 0.123293 0.0990031 12.7883 10.3856 402144 19.7974 109429 5.38714 60309 208858 232045575 52278765 0 0 6.09438e+07 20519.8 18 935204 11078823 -1 12.8865 4.78217 -92799.1 -11.8865 0 0 20.13 -1 -1 1523.2 MiB 81.81 19.2634 16.033 1523.2 MiB -1 15.82 -3d_SB_inter_die_stratixiv_arch.timing.xml MCML_stratixiv_arch_timing.blif common 464.20 vpr 2.35 GiB 69 2192 10 295 16 0 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 2461196 36 33 57796 49182 1 19758 2582 79 59 9322 M144K auto 1354.2 MiB 116.23 224613 2251244 886249 1326045 38950 2403.5 MiB 95.91 0.83 9.49151 -92147.5 -8.49151 9.49151 0.14 0.154631 0.123533 20.7936 16.7804 397126 20.1046 99400 5.03215 58343 180947 261415498 79896454 0 0 1.92002e+08 20596.6 16 2917968 35039980 -1 8.83504 8.83504 -160829 -7.83504 0 0 63.50 -1 -1 2403.5 MiB 101.27 28.5358 23.7007 2403.5 MiB -1 55.56 -3d_SB_inter_die_stratixiv_arch.timing.xml MMM_stratixiv_arch_timing.blif common 411.57 vpr 2.07 GiB 478 1233 1 300 4 0 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 2167564 202 276 35125 30509 3 21219 2016 73 54 7884 M9K auto 1185.7 MiB 93.64 225707 1580536 560957 948186 71393 2116.8 MiB 74.70 0.59 9.27529 -27528.6 -8.27529 3.13114 0.14 0.130328 0.10251 17.2693 13.6101 391848 18.4721 94302 4.44548 55624 156547 339484601 88142541 0 0 1.62738e+08 20641.5 16 2479452 29744051 -1 9.56018 3.68158 -50102.5 -8.56018 0 0 53.61 -1 -1 2116.8 MiB 117.38 23.7611 19.3642 2116.8 MiB -1 45.57 -3d_SB_inter_die_stratixiv_arch.timing.xml radar20_stratixiv_arch_timing.blif common 144.75 vpr 1.44 GiB 5 333 31 105 0 2 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 1510544 3 2 14862 10304 26 7583 476 49 36 3528 DSP auto 1035.3 MiB 46.50 89280 149036 37755 99315 11966 1475.1 MiB 9.68 0.11 5.67702 -19268.5 -4.67702 3.75675 0.06 0.0566391 0.0498904 5.10516 4.33648 154058 20.3861 37061 4.90419 20488 44948 78925296 21606068 0 0 7.26079e+07 20580.5 14 1120110 13214470 -1 5.90336 3.89257 -40281.1 -4.90336 0 0 23.32 -1 -1 1475.1 MiB 26.78 7.88124 6.86256 1475.1 MiB -1 16.54 -3d_SB_inter_die_stratixiv_arch.timing.xml random_stratixiv_arch_timing.blif common 359.04 vpr 1.78 GiB 693 1797 25 16 0 0 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 1871392 35 658 51416 37539 1 27427 2531 58 43 4988 io auto 1280.5 MiB 91.15 211809 2071451 692754 1236953 141744 1827.5 MiB 125.31 1.09 40.9771 -61336.3 -39.9771 40.9771 0.07 0.171234 0.145898 21.8018 18.6515 342831 13.2280 87296 3.36829 76962 231011 136781567 33406286 0 0 1.02587e+08 20566.7 22 1568252 18700371 -1 39.0683 39.0683 -66985.6 -38.0683 0 0 34.25 -1 -1 1827.5 MiB 47.65 31.738 27.5672 1827.5 MiB -1 27.89 -3d_SB_inter_die_stratixiv_arch.timing.xml Reed_Solomon_stratixiv_arch_timing.blif common 229.59 vpr 1.79 GiB 753 1113 5 32 0 0 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 1876484 13 740 25173 25306 1 12716 1903 63 47 5922 io auto 1132.6 MiB 66.93 129881 1180703 418671 705083 56949 1832.5 MiB 43.61 0.38 9.05339 -27832.3 -8.05339 9.05339 0.11 0.0813991 0.0719295 9.16919 7.64919 190989 15.0279 45936 3.61445 31437 116923 44250090 9507104 0 0 1.22008e+08 20602.6 13 1871156 22275272 -1 9.68529 8.62738 -38151.5 -8.68529 0 0 40.96 -1 -1 1832.5 MiB 16.73 13.1394 11.2088 1832.5 MiB -1 34.19 -3d_SB_inter_die_stratixiv_arch.timing.xml smithwaterman_stratixiv_arch_timing.blif common 497.04 vpr 1.71 GiB 117 2338 0 0 0 0 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 1795972 79 38 66795 54922 1 35698 2455 47 35 3290 LAB auto 1330.1 MiB 155.39 246824 1707517 542100 1124665 40752 1627.5 MiB 155.77 1.28 9.48565 -168709 -8.48565 9.48565 0.05 0.168989 0.135904 19.3486 15.5394 380234 10.6523 107944 3.02407 107615 274456 330281609 74151890 0 0 6.75216e+07 20523.3 18 1033138 12274942 -1 10.455 10.455 -199956 -9.45504 0 0 22.28 -1 -1 1670.4 MiB 111.91 28.4097 23.3845 1627.5 MiB -1 17.60 -3d_SB_inter_die_stratixiv_arch.timing.xml stap_steering_stratixiv_arch_timing.blif common 327.67 vpr 1.66 GiB 213 1565 26 4 0 0 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 1742392 139 74 57121 41054 1 24001 1808 49 36 3528 DSP auto 1289.0 MiB 84.58 151125 1190888 390352 769055 31481 1646.6 MiB 73.69 0.67 5.16253 -15574.5 -4.16253 4.57572 0.06 0.14295 0.12611 17.3522 14.6159 255867 10.6625 71175 2.96600 55302 103707 208615694 72938344 0 0 7.26079e+07 20580.5 15 1120110 13214470 -1 5.91719 5.91719 -30815.6 -4.91719 0 0 23.62 -1 -1 1646.6 MiB 95.34 24.5543 21.0784 1646.6 MiB -1 19.49 -3d_SB_inter_die_stratixiv_arch.timing.xml sudoku_check_stratixiv_arch_timing.blif common 139.09 vpr 1.23 GiB 54 665 0 40 0 1 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 1291272 2 52 16673 16662 2 12027 760 32 24 1536 M9K auto 1066.0 MiB 49.80 156611 278120 76189 183016 18915 1261.0 MiB 18.22 0.20 5.5971 -16655.2 -4.5971 4.5816 0.03 0.0587051 0.0472882 5.12731 4.2098 232871 19.3688 64465 5.36181 56972 170063 109738115 20757776 0 0 3.14199e+07 20455.7 17 483264 5705245 -1 6.60942 5.3536 -26554.6 -5.60942 0 0 10.35 -1 -1 1261.0 MiB 31.51 8.7766 7.46125 1261.0 MiB -1 6.22 -3d_SB_inter_die_stratixiv_arch.timing.xml SURF_desc_stratixiv_arch_timing.blif common 468.75 vpr 1.78 GiB 445 2156 19 52 0 0 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 1866664 131 314 57881 45152 1 32833 2672 49 36 3528 DSP auto 1361.4 MiB 115.86 298766 2022878 721872 1209208 91798 1694.5 MiB 174.52 1.53 192.881 -65340.9 -191.881 192.881 0.06 0.202016 0.181173 25.4109 21.5614 461781 14.0963 121424 3.70658 122316 378159 341015575 70726261 0 0 7.26079e+07 20580.5 20 1120110 13214470 -1 198.296 198.296 -88522.8 -197.296 0 0 24.15 -1 -1 1743.6 MiB 98.43 37.004 31.8471 1694.5 MiB -1 19.45 -3d_SB_inter_die_stratixiv_arch.timing.xml ucsb_152_tap_fir_stratixiv_arch_timing.blif common 66.67 vpr 1.18 GiB 42 758 0 0 0 0 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 1237180 13 29 26295 20086 1 12439 800 29 21 1218 LAB auto 1063.0 MiB 15.45 60926 230944 41654 173553 15737 1197.6 MiB 9.59 0.15 4.84629 -4259.39 -3.84629 2.46064 0.02 0.0310798 0.0251181 2.06236 1.71947 97856 7.86814 33858 2.72236 28683 39681 30714017 6195766 0 0 2.48366e+07 20391.3 17 382818 4502703 -1 5.05177 2.69405 -5674.91 -4.05177 0 0 8.19 -1 -1 1197.6 MiB 8.55 3.63438 3.14676 1197.6 MiB -1 4.10 -3d_SB_inter_die_stratixiv_arch.timing.xml uoft_raytracer_stratixiv_arch_timing.blif common 544.98 vpr 2.19 GiB 964 1119 19 34 0 0 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 2300396 542 422 37277 26038 1 20403 2136 78 58 9048 io auto 1150.1 MiB 76.17 219742 1555886 562141 922870 70875 2246.5 MiB 103.91 1.05 7.36593 -33948.8 -6.36593 7.36593 0.16 0.106572 0.0952071 13.4562 11.2916 354299 17.3676 93322 4.57461 68078 159956 457518312 185590185 0 0 1.86852e+08 20651.1 17 2837414 34147767 -1 8.09599 7.40175 -42456.2 -7.09599 0 0 61.24 -1 -1 2246.5 MiB 222.11 18.7938 16.1322 2246.5 MiB -1 52.95 -3d_SB_inter_die_stratixiv_arch.timing.xml wb_conmax_stratixiv_arch_timing.blif common 302.19 vpr 2.43 GiB 1107 725 0 0 0 0 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 2550728 403 704 15490 16194 1 8534 1832 88 65 11440 io auto 1060.8 MiB 47.82 130160 1380047 560321 782548 37178 2490.9 MiB 35.48 0.32 10.5854 -18606.9 -9.58537 4.72024 0.18 0.0600238 0.0497498 7.88269 6.58458 172969 20.2706 38383 4.49818 23174 90029 105109403 34944955 0 0 2.36204e+08 20647.2 15 3590540 43137666 -1 11.6218 5.22111 -24845.6 -10.6218 0 0 75.93 -1 -1 2490.9 MiB 48.99 10.7341 9.14711 2490.9 MiB -1 68.06 -3d_SB_inter_die_stratixiv_arch.timing.xml picosoc_stratixiv_arch_timing.blif common 124.32 vpr 1.17 GiB 35 739 0 6 0 0 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 1226084 18 17 16969 16357 1 6288 780 28 21 1176 LAB auto 1058.1 MiB 67.46 76143 241243 58815 176856 5572 1192.4 MiB 11.31 0.19 7.29112 -42594.5 -6.29112 7.29112 0.02 0.0414227 0.0316342 2.95997 2.38508 119636 19.0382 33085 5.26496 19940 91849 40304260 7468528 0 0 2.39639e+07 20377.5 15 369794 4343188 -1 7.77921 7.77921 -50567.3 -6.77921 0 0 7.94 -1 -1 1192.4 MiB 12.02 5.00754 4.21584 1192.4 MiB -1 4.51 -3d_SB_inter_die_stratixiv_arch.timing.xml murax_stratixiv_arch_timing.blif common 27.66 vpr 993.31 MiB 35 78 0 8 0 0 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 1017148 18 17 2291 2142 1 1448 121 13 10 260 LAB auto 954.6 MiB 6.88 10156 8194 784 6524 886 993.3 MiB 0.47 0.01 5.3048 -3531.01 -4.3048 4.2956 0.00 0.00511192 0.00432104 0.195587 0.167728 15985 11.0623 5210 3.60554 3642 8882 4445146 900786 0 0 4.97530e+06 19135.8 9 75766 878809 -1 5.28906 4.84614 -4691.92 -4.28906 0 0 1.76 -1 -1 993.3 MiB 1.25 0.451107 0.405755 993.3 MiB -1 0.36 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est 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_SB_inter_die_stratixiv_arch.timing.xml carpat_stratixiv_arch_timing.blif common 334.95 vpr 1.65 GiB 274 1042 36 59 0 2 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 1735176 22 252 53001 29054 7 22943 1413 54 40 4320 DSP auto 1236.8 MiB 39.56 578922 193642 857421 247994 504680 104747 1694.5 MiB 48.13 0.42 9.17101 7.49087 -36142.8 -6.49087 3.19653 0.03 0.125295 0.104169 14.4295 12.058 338207 14.7618 86292 3.76640 66292 141868 450896868 183262088 0 0 8.89497e+07 20590.2 19 1365594 16211305 -1 7.56673 3.20701 -45359.7 -6.56673 0 0 17.56 -1 -1 1694.5 MiB 186.32 20.7375 17.6809 1694.5 MiB -1 23.62 +3d_SB_inter_die_stratixiv_arch.timing.xml CH_DFSIN_stratixiv_arch_timing.blif common 229.90 vpr 1.51 GiB 36 1580 9 10 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 1586264 3 33 48977 39238 1 26189 1635 40 30 2400 LAB auto 1260.0 MiB 55.36 757873 257834 897039 257029 596223 43787 1458.1 MiB 74.24 0.63 88.3086 81.3317 -50053.5 -80.3317 81.3317 0.01 0.105146 0.0940116 13.4495 10.8945 432701 16.5248 116936 4.46576 99467 278823 244875822 51834154 0 0 4.91306e+07 20471.1 23 758110 8921656 -1 71.1894 71.1894 -102916 -70.1894 0 0 9.90 -1 -1 1494.0 MiB 58.04 20.5097 16.9797 1458.1 MiB -1 9.97 +3d_SB_inter_die_stratixiv_arch.timing.xml CHERI_stratixiv_arch_timing.blif common 494.51 vpr 1.96 GiB 211 2281 3 210 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 2056344 38 173 62892 59064 3 35490 2705 60 44 5280 M9K auto 1470.1 MiB 116.07 1 558842 1961961 687531 1237166 37264 1941.6 MiB 152.18 1.23 15.2717 11.52 -300506 -10.52 7.39565 0.05 0.236798 0.17913 26.1522 20.084 824365 23.2333 200032 5.63756 146563 541686 515541383 132244076 0 0 1.08858e+08 20617.0 19 1675578 19868374 -1 13.8006 7.7343 -390362 -12.8006 0 0 22.18 -1 -1 1941.6 MiB 149.83 37.4367 29.7549 1941.6 MiB -1 24.01 +3d_SB_inter_die_stratixiv_arch.timing.xml EKF-SLAM_Jacobians_stratixiv_arch_timing.blif common 662.52 vpr 1.93 GiB 574 2788 16 0 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 2026664 4 570 66175 54803 2 39253 3378 51 38 3876 LAB auto 1498.9 MiB 100.63 1 538340 2663553 950678 1615590 97285 1811.8 MiB 189.07 1.51 33.2636 26.617 -103747 -25.617 4.66626 0.04 0.204109 0.182168 26.6617 21.2063 826051 21.0470 204139 5.20126 184571 733534 1066947846 281994208 0 0 7.97022e+07 20563.0 19 1225854 14507865 -1 29.0017 6.47485 -117845 -28.0017 0 0 16.59 -1 -1 1876.0 MiB 304.20 38.0144 31.0233 1811.8 MiB -1 22.95 +3d_SB_inter_die_stratixiv_arch.timing.xml fir_cascade_stratixiv_arch_timing.blif common 974.86 vpr 4.62 GiB 40 3707 172 1 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 4843184 19 21 171111 96274 1 69189 3920 129 96 24768 DSP auto 2001.6 MiB 69.32 2 693471 3680425 1453106 2210247 17072 4729.7 MiB 146.15 1.30 6.26745 5.16452 -76724.7 -4.16452 2.59078 0.20 0.344722 0.312168 45.7424 39.8709 901905 13.0359 216953 3.13579 142016 174861 855691927 377239464 0 0 5.14406e+08 20769.0 10 7758968 93673935 -1 5.31158 3.88513 -129968 -4.31158 0 0 101.81 -1 -1 4729.7 MiB 487.76 58.3922 51.6098 4729.7 MiB -1 126.58 +3d_SB_inter_die_stratixiv_arch.timing.xml jacobi_stratixiv_arch_timing.blif common 284.01 vpr 1.63 GiB 536 1945 7 4 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 1713088 227 309 49176 40422 1 28286 2492 47 35 3290 io auto 1318.4 MiB 72.69 1 270518 1843284 652509 1144115 46660 1612.7 MiB 112.42 1.09 225.36 192.167 -108313 -191.167 192.167 0.02 0.148363 0.117332 17.6108 14.0433 406382 14.3689 104909 3.70939 100739 322484 200315606 38175430 0 0 6.75216e+07 20523.3 20 1033138 12274942 -1 196.52 196.52 -140707 -195.52 0 0 13.37 -1 -1 1612.7 MiB 46.00 25.1451 20.5144 1612.7 MiB -1 14.43 +3d_SB_inter_die_stratixiv_arch.timing.xml JPEG_stratixiv_arch_timing.blif common 286.50 vpr 1.73 GiB 36 1395 8 151 2 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 1814284 3 33 52402 39411 1 26915 1592 57 42 4788 M9K auto 1285.8 MiB 60.43 876865 266910 800704 217304 559963 23437 1771.8 MiB 61.41 0.60 18.2161 15.0487 -283662 -14.0487 15.0487 0.03 0.110665 0.0983698 12.2775 9.72807 437688 16.2667 118184 4.39231 80387 205200 336070247 92235784 0 0 9.85096e+07 20574.3 20 1507654 17957159 -1 16.6851 16.6851 -328192 -15.6851 0 0 19.81 -1 -1 1771.8 MiB 101.20 19.235 15.792 1771.8 MiB -1 21.91 +3d_SB_inter_die_stratixiv_arch.timing.xml leon2_stratixiv_arch_timing.blif common 97.20 vpr 1.24 GiB 251 958 1 17 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 1295424 55 196 20131 19956 1 8019 1227 32 24 1536 LAB auto 1107.6 MiB 34.37 223666 104762 559337 165202 365871 28264 1250.3 MiB 15.54 0.18 8.14098 6.99011 -68950.8 -5.99011 6.99011 0.01 0.0412032 0.0359422 5.27129 3.9879 170106 21.2208 45801 5.71370 28180 132530 75236077 14372313 0 0 3.14199e+07 20455.7 16 483264 5705245 -1 8.3729 8.3729 -83722.3 -7.3729 0 0 6.22 -1 -1 1250.3 MiB 17.56 7.62394 6.01773 1250.3 MiB -1 5.04 +3d_SB_inter_die_stratixiv_arch.timing.xml leon3mp_stratixiv_arch_timing.blif common 384.18 vpr 1.54 GiB 255 2083 1 28 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 1619368 84 171 36458 36247 3 20790 2367 44 33 2904 LAB auto 1265.7 MiB 81.25 599300 249465 1358415 445363 846750 66302 1530.9 MiB 48.88 0.49 12.4149 9.90769 -70053.9 -8.90769 4.01156 0.02 0.125113 0.0930825 11.8346 9.00012 421592 20.2923 115009 5.53567 63988 231128 634239024 190371172 0 0 5.95688e+07 20512.7 14 914964 10827114 -1 12.3773 4.33722 -90025.8 -11.3773 0 0 12.02 -1 -1 1530.9 MiB 205.64 16.8356 13.2434 1530.9 MiB -1 12.70 +3d_SB_inter_die_stratixiv_arch.timing.xml MCML_stratixiv_arch_timing.blif common 364.66 vpr 2.35 GiB 69 2179 10 295 16 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 2462692 36 33 57796 49182 1 19635 2569 79 59 9322 M144K auto 1407.8 MiB 61.04 687588 229258 2165770 799905 1343807 22058 2405.0 MiB 66.46 0.56 12.995 9.11916 -68399.8 -8.11916 9.11916 0.05 0.11569 0.101098 16.3766 13.1783 408880 20.8293 101695 5.18059 58162 198761 352431329 112609659 0 0 1.92002e+08 20596.6 16 2917968 35039980 -1 9.21014 9.21014 -149701 -8.21014 0 0 38.27 -1 -1 2405.0 MiB 126.74 22.5268 18.6422 2405.0 MiB -1 45.70 +3d_SB_inter_die_stratixiv_arch.timing.xml MMM_stratixiv_arch_timing.blif common 334.46 vpr 2.07 GiB 478 1237 1 300 4 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 2166380 202 276 35125 30509 3 21318 2020 73 54 7884 M9K auto 1221.1 MiB 49.26 782110 235668 1444352 491382 903107 49863 2115.6 MiB 47.98 0.37 9.52583 8.86655 -25610.5 -7.86655 2.99007 0.05 0.113388 0.0837706 13.9235 10.3647 409338 19.2069 95423 4.47743 56405 161834 452534869 126896454 0 0 1.62738e+08 20641.5 17 2479452 29744051 -1 9.06444 3.63902 -49136.6 -8.06444 0 0 32.05 -1 -1 2115.6 MiB 143.44 19.4196 15.1436 2115.6 MiB -1 38.29 +3d_SB_inter_die_stratixiv_arch.timing.xml radar20_stratixiv_arch_timing.blif common 93.02 vpr 1.44 GiB 5 323 31 105 0 2 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 1509456 3 2 14862 10304 26 7561 466 49 36 3528 DSP auto 1055.2 MiB 18.70 184798 80217 134110 31670 91390 11050 1474.1 MiB 6.31 0.08 5.73048 5.557 -20016.6 -4.557 3.71419 0.02 0.0465293 0.0376548 3.66706 3.03776 144728 19.2074 35518 4.71374 19254 41730 71856535 20086137 0 0 7.26079e+07 20580.5 14 1120110 13214470 -1 5.72459 4.15885 -44268.6 -4.72459 0 0 14.02 -1 -1 1474.1 MiB 23.72 6.15974 5.26532 1474.1 MiB -1 12.92 +3d_SB_inter_die_stratixiv_arch.timing.xml random_stratixiv_arch_timing.blif common 241.71 vpr 1.78 GiB 693 1777 25 16 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 1867272 35 658 51416 37539 1 27424 2511 58 43 4988 io auto 1317.8 MiB 48.90 948323 227264 1964411 655805 1166964 141642 1823.5 MiB 85.85 0.67 49.8814 40.5997 -59715.9 -39.5997 40.5997 0.04 0.133507 0.12216 18.3999 15.2293 359668 13.8798 88521 3.41608 73222 220528 152022396 37203782 0 0 1.02587e+08 20566.7 20 1568252 18700371 -1 40.8996 40.8996 -65115.3 -39.8996 0 0 20.34 -1 -1 1823.5 MiB 39.38 26.0518 21.9742 1823.5 MiB -1 22.82 +3d_SB_inter_die_stratixiv_arch.timing.xml Reed_Solomon_stratixiv_arch_timing.blif common 147.75 vpr 1.79 GiB 753 1100 5 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 1876732 13 740 25173 25306 1 12838 1890 63 47 5922 io auto 1156.9 MiB 35.93 511809 124272 1134850 394535 689272 51043 1832.7 MiB 28.51 0.25 10.849 8.55919 -26577.3 -7.55919 8.55919 0.03 0.0667231 0.0595066 7.86607 6.21979 187381 14.6038 45597 3.55366 31219 114564 45280930 9170650 0 0 1.22008e+08 20602.6 12 1871156 22275272 -1 8.85362 8.18245 -36071.1 -7.85362 0 0 23.97 -1 -1 1832.7 MiB 12.64 10.8902 8.85884 1832.7 MiB -1 26.57 +3d_SB_inter_die_stratixiv_arch.timing.xml smithwaterman_stratixiv_arch_timing.blif common 296.29 vpr 1.73 GiB 117 2311 0 0 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 1809912 79 38 66795 54922 1 35224 2428 47 35 3290 LAB auto 1382.3 MiB 92.47 1 244493 1601004 478977 1083677 38350 1655.1 MiB 108.35 0.97 13.2451 9.45262 -152441 -8.45262 9.45262 0.02 0.180003 0.141249 17.875 13.8444 383139 10.8781 107986 3.06595 89630 211664 136543668 29891467 0 0 6.75216e+07 20523.3 18 1033138 12274942 -1 10.5596 10.5596 -195977 -9.55964 0 0 13.38 -1 -1 1681.6 MiB 41.09 25.8122 20.6734 1655.1 MiB -1 14.63 +3d_SB_inter_die_stratixiv_arch.timing.xml stap_steering_stratixiv_arch_timing.blif common 193.20 vpr 1.66 GiB 213 1559 26 4 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 1739984 139 74 57121 41054 1 23901 1802 49 36 3528 DSP auto 1330.9 MiB 45.46 523367 143054 1119824 339931 747988 31905 1653.1 MiB 46.98 0.41 5.50142 5.05519 -14801.7 -4.05519 4.55656 0.03 0.111545 0.100323 13.4118 10.9396 233997 9.79190 63575 2.66038 54368 101664 139712299 42351509 0 0 7.26079e+07 20580.5 19 1120110 13214470 -1 5.90983 5.90983 -28470.6 -4.90983 0 0 14.30 -1 -1 1653.1 MiB 48.30 19.8642 16.6405 1653.1 MiB -1 14.85 +3d_SB_inter_die_stratixiv_arch.timing.xml sudoku_check_stratixiv_arch_timing.blif common 101.42 vpr 1.22 GiB 54 664 0 40 0 1 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 1279356 2 52 16673 16662 2 11970 759 32 24 1536 M9K auto 1087.6 MiB 26.11 316622 152696 263719 67846 176857 19016 1238.4 MiB 13.70 0.18 6.37147 5.42709 -16155.6 -4.42709 4.492 0.01 0.0855605 0.0661458 5.59717 4.06858 233040 19.4752 63998 5.34832 55775 171602 116320989 22499207 0 0 3.14199e+07 20455.7 18 483264 5705245 -1 6.05833 5.08903 -23533.3 -5.05833 0 0 6.36 -1 -1 1238.4 MiB 29.49 8.83367 6.8784 1238.4 MiB -1 6.59 +3d_SB_inter_die_stratixiv_arch.timing.xml SURF_desc_stratixiv_arch_timing.blif common 292.25 vpr 1.77 GiB 445 2154 19 52 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 1857400 131 314 57881 45152 1 32883 2670 49 36 3528 DSP auto 1413.6 MiB 63.48 1 297270 2002290 694221 1220745 87324 1700.3 MiB 124.60 1.21 225.053 189.331 -63929.8 -188.331 189.331 0.09 0.21317 0.174938 22.1816 17.9981 462294 14.0918 121369 3.69960 100939 303602 159579775 32291150 0 0 7.26079e+07 20580.5 20 1120110 13214470 -1 192.009 192.009 -84741.7 -191.009 0 0 14.68 -1 -1 1735.5 MiB 40.29 31.8982 26.4487 1700.3 MiB -1 21.53 +3d_SB_inter_die_stratixiv_arch.timing.xml ucsb_152_tap_fir_stratixiv_arch_timing.blif common 44.47 vpr 1.18 GiB 42 749 0 0 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 1236332 13 29 26295 20086 1 12646 791 29 21 1218 LAB auto 1077.5 MiB 8.12 181772 60454 212839 35803 162171 14865 1200.7 MiB 6.20 0.10 5.037 4.84997 -4107.52 -3.84997 2.38954 0.01 0.0265953 0.0205781 1.71761 1.36841 96083 7.59910 31864 2.52009 28520 38733 28269527 5661726 0 0 2.48366e+07 20391.3 15 382818 4502703 -1 4.9803 2.58263 -5331.74 -3.9803 0 0 4.91 -1 -1 1200.7 MiB 6.11 2.96918 2.47893 1200.7 MiB -1 3.15 +3d_SB_inter_die_stratixiv_arch.timing.xml uoft_raytracer_stratixiv_arch_timing.blif common 329.98 vpr 2.19 GiB 964 1128 19 34 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 2299956 542 422 37277 26038 1 20404 2145 78 58 9048 io auto 1179.3 MiB 39.88 750296 213881 1564709 559535 935357 69817 2246.1 MiB 69.17 0.63 9.1469 7.11198 -32381.7 -6.11198 7.11198 0.08 0.0974836 0.0779271 11.5163 9.28631 341769 16.7526 89371 4.38072 60396 139032 295235636 115037667 0 0 1.86852e+08 20651.1 18 2837414 34147767 -1 7.84316 7.84316 -40742.7 -6.84316 0 0 37.49 -1 -1 2246.1 MiB 117.77 16.1021 13.3782 2246.1 MiB -1 43.62 +3d_SB_inter_die_stratixiv_arch.timing.xml wb_conmax_stratixiv_arch_timing.blif common 211.58 vpr 2.43 GiB 1107 730 0 0 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 2549800 403 704 15490 16194 1 8443 1837 88 65 11440 io auto 1076.7 MiB 26.61 420969 124674 1306373 513997 754918 37458 2490.0 MiB 21.13 0.19 12.456 10.0834 -15995.3 -9.08343 4.54503 0.06 0.0524896 0.0408569 6.33274 5.00588 170906 20.2447 36943 4.37610 23908 97711 100577096 33451296 0 0 2.36204e+08 20647.2 14 3590540 43137666 -1 11.8824 5.51915 -23728.3 -10.8824 0 0 46.41 -1 -1 2490.0 MiB 40.76 8.49023 6.9148 2490.0 MiB -1 56.37 +3d_SB_inter_die_stratixiv_arch.timing.xml picosoc_stratixiv_arch_timing.blif common 74.16 vpr 1.17 GiB 35 731 0 6 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 1222316 18 17 16969 16357 1 6487 772 28 21 1176 LAB auto 1071.6 MiB 34.98 163040 70478 237952 59222 174028 4702 1189.2 MiB 8.18 0.11 8.63391 7.28108 -38373.3 -6.28108 7.28108 0.01 0.0359793 0.0322549 3.04189 2.44357 109926 16.9560 30088 4.64106 17978 72156 23692991 4307201 0 0 2.39639e+07 20377.5 18 369794 4343188 -1 7.70533 7.70533 -42097.5 -6.70533 0 0 4.95 -1 -1 1189.2 MiB 6.63 5.04612 4.213 1189.2 MiB -1 3.26 +3d_SB_inter_die_stratixiv_arch.timing.xml murax_stratixiv_arch_timing.blif common 19.87 vpr 996.40 MiB 35 75 0 8 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 1020316 18 17 2291 2142 1 1462 118 13 10 260 LAB auto 957.9 MiB 3.90 13715 9496 7921 840 6234 847 996.4 MiB 0.32 0.01 5.34371 5.29372 -3553.58 -4.29372 4.35136 0.00 0.00350229 0.00303545 0.139546 0.120047 16149 11.0685 5505 3.77313 3716 8872 3987965 814573 0 0 4.97530e+06 19135.8 10 75766 878809 -1 5.46481 4.6943 -4312.85 -4.46481 0 0 1.11 -1 -1 996.4 MiB 0.84 0.330704 0.297098 996.4 MiB -1 0.23 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test7/ap_titan/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test7/ap_titan/config/golden_results.txt index 37bf9a4b00b..38d2cb49a09 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test7/ap_titan/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test7/ap_titan/config/golden_results.txt @@ -1,23 +1,23 @@ arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error num_io num_LAB num_DSP num_M9K num_M144K num_PLL vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est 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 LU230_stratixiv_arch_timing.blif common 5977.17 vpr 18.15 GiB 373 16802 116 5043 16 0 success v8.0.0-12397-gd42b93a83 release IPO VTR_ASSERT_LEVEL=1 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-04-10T17:44:49 agent-2 /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test7/ap_titan 19027644 178 195 583584 0 2 400505 22350 450 333 149850 -1 titan_extra_large -1 -1 8 13800219 48167472 20323894 27731780 111798 18581.7 MiB 4325.24 9.70 -1 -1 -1 -1 -1 -1 0 0 0 0 14590895 36.4326 2750092 6.86682 839764 1658253 951523382 215783707 0 0 2.82057e+09 18822.7 11 43073670 476336488 -1 -1 -1 -1 -1 -1 -1 786.18 -1 -1 18581.7 MiB 264.68 0 0 18581.7 MiB -1 431.81 -stratixiv_arch.timing.xml LU_Network_stratixiv_arch_timing.blif common 6231.23 vpr 12.33 GiB 446 31279 112 1175 0 2 success v8.0.0-12397-gd42b93a83 release IPO VTR_ASSERT_LEVEL=1 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-04-10T17:44:49 agent-2 /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test7/ap_titan 12931844 85 185 639752 0 28 383369 33014 300 222 66600 -1 titan_large -1 -1 5 4382970 73613776 28087356 45057103 469317 12628.8 MiB 5449.42 11.97 -1 -1 -1 -1 -1 -1 0 0 0 0 5412290 14.1365 1208865 3.15746 725653 1571351 484682465 110344144 0 0 1.23727e+09 18577.7 10 19158880 211389679 -1 -1 -1 -1 -1 -1 -1 337.84 -1 -1 12628.8 MiB 129.09 0 0 12628.8 MiB -1 172.57 -stratixiv_arch.timing.xml SLAM_spheric_stratixiv_arch_timing.blif common 978.21 vpr 2.83 GiB 479 5395 37 0 0 0 success v8.0.0-12397-gd42b93a83 release IPO VTR_ASSERT_LEVEL=1 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-04-10T17:44:49 agent-2 /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test7/ap_titan 2968776 323 156 114323 0 1 74722 5911 100 74 7400 -1 titan_extra_small -1 -1 5 952942 6042597 2451728 3507314 83555 2899.2 MiB 845.55 2.07 -1 -1 -1 -1 -1 -1 0 0 0 0 1227102 16.4227 285050 3.81491 174997 556519 135205758 28286969 0 0 1.36295e+08 18418.2 11 2149958 23360463 -1 -1 -1 -1 -1 -1 -1 36.88 -1 -1 2899.2 MiB 39.92 0 0 2899.2 MiB -1 16.65 -stratixiv_arch.timing.xml bitcoin_miner_stratixiv_arch_timing.blif common 8950.65 vpr 14.95 GiB 385 35096 0 1331 0 1 success v8.0.0-12397-gd42b93a83 release IPO VTR_ASSERT_LEVEL=1 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-04-10T17:44:49 agent-2 /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test7/ap_titan 15676176 353 32 1098943 0 2 753555 36813 300 222 66600 -1 titan_large -1 -1 9 7121332 77772878 30019764 47356707 396407 15308.8 MiB 8090.85 33.28 -1 -1 -1 -1 -1 -1 0 0 0 0 8373700 11.1123 1946991 2.58375 1578903 2402442 724838205 139866748 0 0 1.23727e+09 18577.7 13 19158880 211389679 -1 -1 -1 -1 -1 -1 -1 339.59 -1 -1 15308.8 MiB 191.95 0 0 15308.8 MiB -1 157.43 -stratixiv_arch.timing.xml bitonic_mesh_stratixiv_arch_timing.blif common 2623.18 vpr 8.58 GiB 119 7151 85 1664 0 0 success v8.0.0-12397-gd42b93a83 release IPO VTR_ASSERT_LEVEL=1 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-04-10T17:44:49 agent-2 /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test7/ap_titan 8992976 87 32 200685 0 1 140789 9019 300 222 66600 -1 titan_large -1 -1 2 3003220 12489473 5701701 6718233 69539 8782.2 MiB 1899.51 3.86 -1 -1 -1 -1 -1 -1 0 0 0 0 3913310 27.7962 847166 6.01740 318963 967473 429861775 104811062 0 0 1.23727e+09 18577.7 10 19158880 211389679 -1 -1 -1 -1 -1 -1 -1 330.34 -1 -1 8782.2 MiB 112.29 0 0 8782.2 MiB -1 204.32 -stratixiv_arch.timing.xml cholesky_bdti_stratixiv_arch_timing.blif common 1932.05 vpr 6.07 GiB 162 9708 133 600 0 0 success v8.0.0-12397-gd42b93a83 release IPO VTR_ASSERT_LEVEL=1 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-04-10T17:44:49 agent-2 /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test7/ap_titan 6360676 94 68 262238 0 1 145404 10603 225 167 37575 -1 titan_medium -1 -1 1 1749420 14564603 5847680 8696131 20792 6211.6 MiB 1481.18 3.50 -1 -1 -1 -1 -1 -1 0 0 0 0 2240113 15.4066 496269 3.41313 280560 546694 296898314 77244360 0 0 6.95906e+08 18520.5 14 10840348 119192345 -1 -1 -1 -1 -1 -1 -1 188.32 -1 -1 6211.6 MiB 83.50 0 0 6211.6 MiB -1 112.68 -stratixiv_arch.timing.xml cholesky_mc_stratixiv_arch_timing.blif common 842.60 vpr 3.24 GiB 262 4785 60 444 16 0 success v8.0.0-12397-gd42b93a83 release IPO VTR_ASSERT_LEVEL=1 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-04-10T17:44:49 agent-2 /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test7/ap_titan 3401540 111 151 111379 0 1 61441 5567 150 111 16650 -1 titan_small -1 -1 4 722532 6564861 2677309 3847857 39695 3321.8 MiB 633.69 0.94 -1 -1 -1 -1 -1 -1 0 0 0 0 1001210 16.2965 228979 3.72705 116821 244114 137611356 36963486 0 0 3.08275e+08 18515.0 11 4815530 52742011 -1 -1 -1 -1 -1 -1 -1 85.08 -1 -1 3321.8 MiB 39.00 0 0 3321.8 MiB -1 46.24 -stratixiv_arch.timing.xml dart_stratixiv_arch_timing.blif common 1785.49 vpr 3.98 GiB 69 6982 0 530 0 0 success v8.0.0-12397-gd42b93a83 release IPO VTR_ASSERT_LEVEL=1 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-04-10T17:44:49 agent-2 /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test7/ap_titan 4174664 23 46 194835 0 1 119066 7581 150 111 16650 -1 titan_small -1 -1 9 1340934 8717061 3551739 5138757 26565 4076.8 MiB 1546.67 2.84 -1 -1 -1 -1 -1 -1 0 0 0 0 1571527 13.1991 361089 3.03276 235770 574779 148619879 29288532 0 0 3.08275e+08 18515.0 11 4815530 52742011 -1 -1 -1 -1 -1 -1 -1 89.33 -1 -1 4076.8 MiB 45.60 0 0 4076.8 MiB -1 47.35 -stratixiv_arch.timing.xml denoise_stratixiv_arch_timing.blif common 3187.63 vpr 7.15 GiB 852 14023 25 359 0 0 success v8.0.0-12397-gd42b93a83 release IPO VTR_ASSERT_LEVEL=1 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-04-10T17:44:49 agent-2 /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test7/ap_titan 7497468 264 588 274734 0 1 219553 15259 225 167 37575 -1 titan_medium -1 -1 2 2135972 22148734 8858678 12816120 473936 7321.7 MiB 2694.82 9.88 -1 -1 -1 -1 -1 -1 0 0 0 0 2667037 12.1684 624109 2.84751 466888 1273369 284097009 55113804 0 0 6.95906e+08 18520.5 10 10840348 119192345 -1 -1 -1 -1 -1 -1 -1 201.59 -1 -1 7321.7 MiB 81.77 0 0 7321.7 MiB -1 110.16 -stratixiv_arch.timing.xml des90_stratixiv_arch_timing.blif common 1508.24 vpr 5.26 GiB 117 4175 44 860 0 0 success v8.0.0-12397-gd42b93a83 release IPO VTR_ASSERT_LEVEL=1 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-04-10T17:44:49 agent-2 /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test7/ap_titan 5520312 85 32 115973 0 1 82378 5196 225 167 37575 -1 titan_medium -1 -1 1 1507452 5673306 2488800 3125035 59471 5390.9 MiB 1067.76 2.09 -1 -1 -1 -1 -1 -1 0 0 0 0 2020211 24.5246 448345 5.44273 183741 544864 229191183 55298010 0 0 6.95906e+08 18520.5 11 10840348 119192345 -1 -1 -1 -1 -1 -1 -1 206.59 -1 -1 5390.9 MiB 61.01 0 0 5390.9 MiB -1 121.47 -stratixiv_arch.timing.xml directrf_stratixiv_arch_timing.blif common 11393.29 vpr 26.37 GiB 319 61185 240 2535 0 0 success v8.0.0-12397-gd42b93a83 release IPO VTR_ASSERT_LEVEL=1 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-04-10T17:44:49 agent-2 /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test7/ap_titan 27652092 62 257 894174 0 2 640680 64279 450 333 149850 -1 titan_extra_large -1 -1 1 9128459 239440699 88212828 150654233 573638 27004.0 MiB 9655.01 28.99 -1 -1 -1 -1 -1 -1 0 0 0 0 9611667 15.0047 1984284 3.09765 1263034 2114135 743883780 160532268 0 0 2.82057e+09 18822.7 11 43073670 476336488 -1 -1 -1 -1 -1 -1 -1 819.47 -1 -1 27004.0 MiB 183.03 0 0 27004.0 MiB -1 371.03 -stratixiv_arch.timing.xml gsm_switch_stratixiv_arch_timing.blif common 4360.11 vpr 10.06 GiB 136 23240 0 1848 0 1 success v8.0.0-12397-gd42b93a83 release IPO VTR_ASSERT_LEVEL=1 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-04-10T17:44:49 agent-2 /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test7/ap_titan 10552488 100 36 490034 0 5 186065 25225 300 222 66600 -1 titan_large -1 -1 3 4392020 51053347 21768526 29185506 99315 10305.2 MiB 3560.00 6.92 -1 -1 -1 -1 -1 -1 0 0 0 0 5188636 27.8873 1101204 5.91864 360736 1214334 335704295 70748149 0 0 1.23727e+09 18577.7 10 19158880 211389679 -1 -1 -1 -1 -1 -1 -1 342.30 -1 -1 10305.2 MiB 102.37 0 0 10305.2 MiB -1 210.73 -stratixiv_arch.timing.xml mes_noc_stratixiv_arch_timing.blif common 6675.53 vpr 9.08 GiB 5 24397 0 800 0 8 success v8.0.0-12397-gd42b93a83 release IPO VTR_ASSERT_LEVEL=1 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-04-10T17:44:49 agent-2 /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test7/ap_titan 9526200 3 2 547766 0 17 317057 25210 225 167 37575 -1 titan_medium -1 -1 4 3465744 42884426 16988207 25581636 314583 9302.9 MiB 6113.85 12.52 -1 -1 -1 -1 -1 -1 0 0 0 0 4240824 13.3764 987714 3.11545 645085 1920917 431351553 82746361 0 0 6.95906e+08 18520.5 15 10840348 119192345 -1 -1 -1 -1 -1 -1 -1 188.05 -1 -1 9302.9 MiB 131.04 0 0 9302.9 MiB -1 93.39 -stratixiv_arch.timing.xml minres_stratixiv_arch_timing.blif common 2740.62 vpr 8.73 GiB 229 7879 78 1459 0 1 success v8.0.0-12397-gd42b93a83 release IPO VTR_ASSERT_LEVEL=1 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-04-10T17:44:49 agent-2 /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test7/ap_titan 9150592 129 100 263081 0 3 166675 9646 300 222 66600 -1 titan_large -1 -1 2 1988714 13044418 5350885 7620780 72753 8936.1 MiB 1962.08 3.71 -1 -1 -1 -1 -1 -1 0 0 0 0 2598717 15.5921 569042 3.41420 332122 664485 299620968 72578993 0 0 1.23727e+09 18577.7 11 19158880 211389679 -1 -1 -1 -1 -1 -1 -1 347.52 -1 -1 8936.1 MiB 86.02 0 0 8936.1 MiB -1 242.14 -stratixiv_arch.timing.xml neuron_stratixiv_arch_timing.blif common 637.45 vpr 2.93 GiB 77 3203 95 136 0 0 success v8.0.0-12397-gd42b93a83 release IPO VTR_ASSERT_LEVEL=1 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-04-10T17:44:49 agent-2 /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test7/ap_titan 3070036 42 35 90906 0 1 48800 3511 150 111 16650 -1 titan_small -1 -1 3 516400 3231065 1356243 1860670 14152 2998.1 MiB 445.71 0.60 -1 -1 -1 -1 -1 -1 0 0 0 0 664503 13.6306 147939 3.03458 89604 148201 73617604 19853827 0 0 3.08275e+08 18515.0 11 4815530 52742011 -1 -1 -1 -1 -1 -1 -1 79.00 -1 -1 2998.1 MiB 22.21 0 0 2998.1 MiB -1 58.54 -stratixiv_arch.timing.xml openCV_stratixiv_arch_timing.blif common 2128.05 vpr 5.42 GiB 208 7339 213 785 40 0 success v8.0.0-12397-gd42b93a83 release IPO VTR_ASSERT_LEVEL=1 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-04-10T17:44:49 agent-2 /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test7/ap_titan 5678760 106 102 220572 0 1 154711 8585 225 167 37575 -1 titan_medium -1 -1 1 2173889 11519162 4961366 6493632 64164 5545.7 MiB 1677.99 2.81 -1 -1 -1 -1 -1 -1 0 0 0 0 2678007 17.3113 568684 3.67612 317725 662077 291217252 73434439 0 0 6.95906e+08 18520.5 10 10840348 119192345 -1 -1 -1 -1 -1 -1 -1 184.16 -1 -1 5545.7 MiB 82.57 0 0 5545.7 MiB -1 115.65 -stratixiv_arch.timing.xml segmentation_stratixiv_arch_timing.blif common 1474.47 vpr 3.70 GiB 441 6964 14 481 0 0 success v8.0.0-12397-gd42b93a83 release IPO VTR_ASSERT_LEVEL=1 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-04-10T17:44:49 agent-2 /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test7/ap_titan 3882920 72 369 135618 0 1 108316 7900 150 111 16650 -1 titan_small -1 -1 1 1103376 9209365 3747246 5207815 254304 3791.9 MiB 1235.62 4.23 -1 -1 -1 -1 -1 -1 0 0 0 0 1447665 13.4013 342739 3.17280 229713 646062 163353369 32649585 0 0 3.08275e+08 18515.0 11 4815530 52742011 -1 -1 -1 -1 -1 -1 -1 81.18 -1 -1 3791.9 MiB 50.79 0 0 3791.9 MiB -1 55.68 -stratixiv_arch.timing.xml sparcT1_chip2_stratixiv_arch_timing.blif common 7844.24 vpr 12.53 GiB 1991 32660 3 506 0 0 success v8.0.0-12397-gd42b93a83 release IPO VTR_ASSERT_LEVEL=1 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-04-10T17:44:49 agent-2 /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test7/ap_titan 13141620 815 1076 758900 0 1423 357135 35160 300 222 66600 -1 titan_large -1 -1 5 4936706 69698127 28325521 40798793 573813 12833.6 MiB 6999.39 16.03 -1 -1 -1 -1 -1 -1 0 0 0 0 5973366 17.0309 1338702 3.81683 715990 2315124 432619134 80103887 0 0 1.23727e+09 18577.7 11 19158880 211389679 -1 -1 -1 -1 -1 -1 -1 340.77 -1 -1 12833.6 MiB 134.19 0 0 12833.6 MiB -1 176.94 -stratixiv_arch.timing.xml sparcT1_core_stratixiv_arch_timing.blif common 973.20 vpr 2.30 GiB 310 3982 1 128 0 0 success v8.0.0-12397-gd42b93a83 release IPO VTR_ASSERT_LEVEL=1 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-04-10T17:44:49 agent-2 /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test7/ap_titan 2410068 173 137 91964 0 1 52398 4421 100 74 7400 -1 titan_extra_small -1 -1 3 748079 4066549 1604477 2411861 50211 2345.9 MiB 853.82 1.30 -1 -1 -1 -1 -1 -1 0 0 0 0 966961 18.4556 228110 4.35374 115358 400403 85820932 16306631 0 0 1.36295e+08 18418.2 12 2149958 23360463 -1 -1 -1 -1 -1 -1 -1 36.10 -1 -1 2350.0 MiB 29.67 0 0 2349.6 MiB -1 20.66 -stratixiv_arch.timing.xml sparcT2_core_stratixiv_arch_timing.blif common 3787.46 vpr 6.32 GiB 451 14854 0 260 0 0 success v8.0.0-12397-gd42b93a83 release IPO VTR_ASSERT_LEVEL=1 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-04-10T17:44:49 agent-2 /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test7/ap_titan 6625276 239 212 299957 0 1 174815 15565 225 167 37575 -1 titan_medium -1 -1 2 2929041 22160065 8735657 13316479 107929 6470.0 MiB 3307.87 7.67 -1 -1 -1 -1 -1 -1 0 0 0 0 3627204 20.7493 833105 4.76575 387101 1442134 289975854 51739220 0 0 6.95906e+08 18520.5 10 10840348 119192345 -1 -1 -1 -1 -1 -1 -1 184.97 -1 -1 6470.0 MiB 90.77 0 0 6470.0 MiB -1 109.72 -stratixiv_arch.timing.xml stap_qrd_stratixiv_arch_timing.blif common 2265.85 vpr 5.68 GiB 150 16244 75 553 0 0 success v8.0.0-12397-gd42b93a83 release IPO VTR_ASSERT_LEVEL=1 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-04-10T17:44:49 agent-2 /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test7/ap_titan 5960728 68 82 237991 0 1 132876 17022 225 167 37575 -1 titan_medium -1 -1 1 1649738 32190177 12998381 18915414 276382 5821.0 MiB 1845.30 4.03 -1 -1 -1 -1 -1 -1 0 0 0 0 2001303 15.0782 444603 3.34973 243860 554466 210965505 50003447 0 0 6.95906e+08 18520.5 10 10840348 119192345 -1 -1 -1 -1 -1 -1 -1 184.93 -1 -1 5821.0 MiB 60.30 0 0 5821.0 MiB -1 111.73 -stratixiv_arch.timing.xml stereo_vision_stratixiv_arch_timing.blif common 571.71 vpr 2.93 GiB 506 3261 77 113 0 0 success v8.0.0-12397-gd42b93a83 release IPO VTR_ASSERT_LEVEL=1 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-04-10T17:44:49 agent-2 /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test7/ap_titan 3069148 172 334 94412 0 3 58059 3957 150 111 16650 -1 titan_small -1 -1 3 457924 3570447 1445124 2072836 52487 2997.2 MiB 384.83 0.75 -1 -1 -1 -1 -1 -1 0 0 0 0 525032 9.04401 120480 2.07535 110504 158152 48333761 10612443 0 0 3.08275e+08 18515.0 9 4815530 52742011 -1 -1 -1 -1 -1 -1 -1 80.54 -1 -1 2997.2 MiB 15.41 0 0 2997.2 MiB -1 58.09 +stratixiv_arch.timing.xml LU230_stratixiv_arch_timing.blif common 4116.65 vpr 18.14 GiB 373 16931 116 5043 16 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 19026196 178 195 583584 0 2 400294 22479 450 333 149850 -1 titan_extra_large -1 -1 2 13124302 48221375 20059034 28036894 125447 18580.3 MiB 2949.53 7.36 -1 -1 -1 -1 -1 -1 0 0 0 0 13869601 34.6501 2598780 6.49247 817694 1601462 907812357 207942700 0 0 2.82057e+09 18822.7 10 43073670 476336488 -1 -1 -1 -1 -1 -1 -1 503.37 -1 -1 18580.3 MiB 213.70 0 0 18580.3 MiB -1 323.53 +stratixiv_arch.timing.xml LU_Network_stratixiv_arch_timing.blif common 4609.33 vpr 12.44 GiB 445 31421 113 1175 0 2 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 13039068 85 185 639752 0 28 382815 33156 300 222 66600 -1 titan_large -1 -1 1 4361918 74568596 28800649 45286031 481916 12733.5 MiB 4055.01 9.37 -1 -1 -1 -1 -1 -1 0 0 0 0 5373899 14.0561 1202222 3.14455 722091 1559152 478444153 109047528 0 0 1.23727e+09 18577.7 10 19158880 211389679 -1 -1 -1 -1 -1 -1 -1 210.33 -1 -1 12733.5 MiB 105.20 0 0 12733.5 MiB -1 128.15 +stratixiv_arch.timing.xml SLAM_spheric_stratixiv_arch_timing.blif common 649.70 vpr 2.83 GiB 479 5371 38 0 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 2967344 323 156 114323 0 1 75058 5888 100 74 7400 -1 titan_extra_small -1 -1 1 909617 5320388 1823683 3403744 92961 2897.8 MiB 554.07 1.46 -1 -1 -1 -1 -1 -1 0 0 0 0 1189483 15.8479 278841 3.71511 174772 556728 135362895 28414141 0 0 1.36295e+08 18418.2 10 2149958 23360463 -1 -1 -1 -1 -1 -1 -1 23.05 -1 -1 2897.8 MiB 29.39 0 0 2897.8 MiB -1 13.08 +stratixiv_arch.timing.xml bitcoin_miner_stratixiv_arch_timing.blif common 6781.75 vpr 14.94 GiB 385 35093 0 1331 0 1 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 15663052 353 32 1098943 0 2 755628 36810 300 222 66600 -1 titan_large -1 -1 1 7141544 78376522 30450267 47549984 376271 15295.9 MiB 6163.27 25.82 -1 -1 -1 -1 -1 -1 0 0 0 0 8371800 11.0793 1952385 2.58380 1569950 2375424 686914850 131639636 0 0 1.23727e+09 18577.7 13 19158880 211389679 -1 -1 -1 -1 -1 -1 -1 207.10 -1 -1 15295.9 MiB 153.59 0 0 15295.9 MiB -1 119.40 +stratixiv_arch.timing.xml bitonic_mesh_stratixiv_arch_timing.blif common 1743.26 vpr 8.57 GiB 119 7178 85 1664 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 8991068 87 32 200685 0 1 140878 9046 300 222 66600 -1 titan_large -1 -1 5 2678320 10655115 4161897 6425639 67579 8780.3 MiB 1219.06 3.09 -1 -1 -1 -1 -1 -1 0 0 0 0 3601002 25.5617 801963 5.69273 312796 956452 414300413 101628387 0 0 1.23727e+09 18577.7 10 19158880 211389679 -1 -1 -1 -1 -1 -1 -1 211.81 -1 -1 8780.3 MiB 90.30 0 0 8780.3 MiB -1 160.30 +stratixiv_arch.timing.xml cholesky_bdti_stratixiv_arch_timing.blif common 1333.44 vpr 6.06 GiB 162 9672 133 600 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 6358848 94 68 262238 0 1 145848 10567 225 167 37575 -1 titan_medium -1 -1 2 1630738 12760117 4431958 8297698 30461 6209.8 MiB 1015.98 2.46 -1 -1 -1 -1 -1 -1 0 0 0 0 2116668 14.5132 474142 3.25102 280670 551125 295160926 76953753 0 0 6.95906e+08 18520.5 14 10840348 119192345 -1 -1 -1 -1 -1 -1 -1 118.75 -1 -1 6209.8 MiB 64.37 0 0 6209.8 MiB -1 83.80 +stratixiv_arch.timing.xml cholesky_mc_stratixiv_arch_timing.blif common 563.31 vpr 3.25 GiB 262 4787 60 444 16 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 3410820 111 151 111379 0 1 61510 5569 150 111 16650 -1 titan_small -1 -1 1 622854 5482420 1845455 3600558 36407 3330.9 MiB 417.33 0.73 -1 -1 -1 -1 -1 -1 0 0 0 0 896798 14.5807 209969 3.41380 116783 245999 135199147 37058200 0 0 3.08275e+08 18515.0 12 4815530 52742011 -1 -1 -1 -1 -1 -1 -1 52.64 -1 -1 3330.9 MiB 29.54 0 0 3330.9 MiB -1 33.54 +stratixiv_arch.timing.xml dart_stratixiv_arch_timing.blif common 1133.09 vpr 3.98 GiB 69 6980 0 530 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 4173912 23 46 194835 0 1 118448 7579 150 111 16650 -1 titan_small -1 -1 2 1384015 8118705 2919430 5174343 24932 4076.1 MiB 973.24 1.94 -1 -1 -1 -1 -1 -1 0 0 0 0 1614836 13.6336 367493 3.10265 234634 575824 149213956 29386066 0 0 3.08275e+08 18515.0 11 4815530 52742011 -1 -1 -1 -1 -1 -1 -1 51.62 -1 -1 4076.1 MiB 35.97 0 0 4076.1 MiB -1 32.74 +stratixiv_arch.timing.xml denoise_stratixiv_arch_timing.blif common 2046.15 vpr 7.12 GiB 852 14017 24 358 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 7462172 264 588 274734 0 1 219518 15251 225 167 37575 -1 titan_medium -1 -1 3 1952293 19108594 6268942 12407319 432333 7287.3 MiB 1711.51 6.95 -1 -1 -1 -1 -1 -1 0 0 0 0 2499825 11.4073 598973 2.73326 464899 1270038 278267835 53969716 0 0 6.95906e+08 18520.5 11 10840348 119192345 -1 -1 -1 -1 -1 -1 -1 125.28 -1 -1 7287.3 MiB 61.31 0 0 7287.3 MiB -1 78.33 +stratixiv_arch.timing.xml des90_stratixiv_arch_timing.blif common 965.80 vpr 5.26 GiB 117 4178 44 860 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 5516972 85 32 115973 0 1 82532 5199 225 167 37575 -1 titan_medium -1 -1 2 1406663 4552219 1597205 2907689 47325 5387.7 MiB 655.11 1.58 -1 -1 -1 -1 -1 -1 0 0 0 0 1932650 23.4178 434185 5.26100 183021 542391 229782524 55622402 0 0 6.95906e+08 18520.5 10 10840348 119192345 -1 -1 -1 -1 -1 -1 -1 124.42 -1 -1 5387.7 MiB 51.66 0 0 5387.7 MiB -1 94.77 +stratixiv_arch.timing.xml directrf_stratixiv_arch_timing.blif common 8442.12 vpr 26.37 GiB 319 61348 240 2535 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 27651368 62 257 894174 0 2 640881 64442 450 333 149850 -1 titan_extra_large -1 -1 4 8673917 241541843 89283094 151737980 520769 27003.3 MiB 7298.41 24.65 -1 -1 -1 -1 -1 -1 0 0 0 0 9121294 14.2347 1896070 2.95901 1252942 2085090 714810137 154207274 0 0 2.82057e+09 18822.7 9 43073670 476336488 -1 -1 -1 -1 -1 -1 -1 492.78 -1 -1 27003.3 MiB 150.65 0 0 27003.3 MiB -1 307.94 +stratixiv_arch.timing.xml gsm_switch_stratixiv_arch_timing.blif common 2788.24 vpr 10.06 GiB 136 23875 0 1848 0 1 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 10553472 100 36 490034 0 5 181302 25860 300 222 66600 -1 titan_large -1 -1 1 4353729 52773876 22621284 30042014 110578 10306.1 MiB 2272.10 4.75 -1 -1 -1 -1 -1 -1 0 0 0 0 5126648 28.2781 1086699 5.99413 349176 1212645 327960039 69369933 0 0 1.23727e+09 18577.7 10 19158880 211389679 -1 -1 -1 -1 -1 -1 -1 218.20 -1 -1 10306.1 MiB 74.02 0 0 10306.1 MiB -1 137.92 +stratixiv_arch.timing.xml mes_noc_stratixiv_arch_timing.blif common 4501.73 vpr 9.16 GiB 5 24345 0 800 0 8 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 9602248 3 2 547766 0 17 317210 25158 225 167 37575 -1 titan_medium -1 -1 1 3388352 41661138 16071491 25279724 309923 9377.2 MiB 4116.34 9.38 -1 -1 -1 -1 -1 -1 0 0 0 0 4205230 13.2578 985936 3.10835 645867 1930163 434378277 83412686 0 0 6.95906e+08 18520.5 12 10840348 119192345 -1 -1 -1 -1 -1 -1 -1 121.40 -1 -1 9377.2 MiB 102.21 0 0 9377.2 MiB -1 69.01 +stratixiv_arch.timing.xml minres_stratixiv_arch_timing.blif common 1764.29 vpr 8.73 GiB 229 7856 78 1457 0 1 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 9149664 129 100 263081 0 3 167347 9621 300 222 66600 -1 titan_large -1 -1 4 1879170 12590184 5037241 7483021 69922 8935.2 MiB 1267.61 2.65 -1 -1 -1 -1 -1 -1 0 0 0 0 2485243 14.8514 549750 3.28521 331659 658135 292165350 71094073 0 0 1.23727e+09 18577.7 11 19158880 211389679 -1 -1 -1 -1 -1 -1 -1 210.54 -1 -1 8935.2 MiB 62.61 0 0 8935.2 MiB -1 160.42 +stratixiv_arch.timing.xml neuron_stratixiv_arch_timing.blif common 423.41 vpr 2.93 GiB 77 3193 90 136 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 3069188 42 35 90906 0 1 48975 3496 150 111 16650 -1 titan_small -1 -1 827116 516544 2602652 851137 1741155 10360 2997.3 MiB 291.91 0.42 -1 -1 -1 -1 -1 -1 0 0 0 0 670185 13.6979 149619 3.05807 90499 151770 75261818 20218682 0 0 3.08275e+08 18515.0 11 4815530 52742011 -1 -1 -1 -1 -1 -1 -1 50.83 -1 -1 2997.3 MiB 16.41 0 0 2997.3 MiB -1 38.23 +stratixiv_arch.timing.xml openCV_stratixiv_arch_timing.blif common 1395.09 vpr 5.41 GiB 208 7327 214 785 40 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 5676176 106 102 220572 0 1 155250 8574 225 167 37575 -1 titan_medium -1 -1 4 2107492 10973074 4345645 6566053 61376 5543.1 MiB 1071.12 2.26 -1 -1 -1 -1 -1 -1 0 0 0 0 2591451 16.6936 552354 3.55816 314819 649415 286415462 72791606 0 0 6.95906e+08 18520.5 10 10840348 119192345 -1 -1 -1 -1 -1 -1 -1 122.83 -1 -1 5543.1 MiB 67.24 0 0 5543.1 MiB -1 85.13 +stratixiv_arch.timing.xml segmentation_stratixiv_arch_timing.blif common 839.81 vpr 3.71 GiB 441 6966 14 481 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 3885892 72 369 135618 0 1 108674 7902 150 111 16650 -1 titan_small -1 -1 1 1083126 6852366 1886282 4769538 196546 3794.8 MiB 677.60 2.81 -1 -1 -1 -1 -1 -1 0 0 0 0 1418389 13.0869 336040 3.10051 230487 647200 162872229 32643246 0 0 3.08275e+08 18515.0 12 4815530 52742011 -1 -1 -1 -1 -1 -1 -1 50.97 -1 -1 3794.8 MiB 38.11 0 0 3794.8 MiB -1 34.70 +stratixiv_arch.timing.xml sparcT1_chip2_stratixiv_arch_timing.blif common 5293.87 vpr 12.53 GiB 1893 32713 3 505 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 13140660 815 1076 758900 0 1423 356921 35114 300 222 66600 -1 titan_large -1 -1 1 5072514 71875489 29856836 41405533 613120 12832.7 MiB 4714.37 10.85 -1 -1 -1 -1 -1 -1 0 0 0 0 5960801 17.0051 1342631 3.83029 715603 2321934 433946411 80207705 0 0 1.23727e+09 18577.7 15 19158880 211389679 -1 -1 -1 -1 -1 -1 -1 209.66 -1 -1 12832.7 MiB 113.41 0 0 12832.7 MiB -1 129.86 +stratixiv_arch.timing.xml sparcT1_core_stratixiv_arch_timing.blif common 593.70 vpr 2.30 GiB 310 4048 1 127 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 2408112 173 137 91964 0 1 52595 4486 100 74 7400 -1 titan_extra_small -1 -1 1 701026 3665704 1199971 2414430 51303 2342.3 MiB 507.92 0.94 -1 -1 -1 -1 -1 -1 0 0 0 0 933577 17.7516 222529 4.23131 115794 398921 86466898 16450293 0 0 1.36295e+08 18418.2 10 2149958 23360463 -1 -1 -1 -1 -1 -1 -1 23.07 -1 -1 2342.7 MiB 21.26 0 0 2342.3 MiB -1 15.04 +stratixiv_arch.timing.xml sparcT2_core_stratixiv_arch_timing.blif common 2428.42 vpr 6.32 GiB 451 14815 0 260 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 6622024 239 212 299957 0 1 174676 15526 225 167 37575 -1 titan_medium -1 -1 8 3000892 22279641 8949040 13229480 101121 6466.8 MiB 2086.27 5.15 -1 -1 -1 -1 -1 -1 0 0 0 0 3694237 21.1496 850013 4.86634 392535 1469224 301011264 53478430 0 0 6.95906e+08 18520.5 11 10840348 119192345 -1 -1 -1 -1 -1 -1 -1 118.82 -1 -1 6466.8 MiB 75.27 0 0 6466.8 MiB -1 80.99 +stratixiv_arch.timing.xml stap_qrd_stratixiv_arch_timing.blif common 1555.59 vpr 5.68 GiB 150 16236 75 553 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 5958512 68 82 237991 0 1 132235 17014 225 167 37575 -1 titan_medium -1 -1 4 1577017 32169883 12567240 19371382 231261 5818.9 MiB 1258.31 3.41 -1 -1 -1 -1 -1 -1 0 0 0 0 1918789 14.5267 433717 3.28357 242067 559136 213519358 50500725 0 0 6.95906e+08 18520.5 9 10840348 119192345 -1 -1 -1 -1 -1 -1 -1 116.17 -1 -1 5818.9 MiB 47.24 0 0 5818.9 MiB -1 85.73 +stratixiv_arch.timing.xml stereo_vision_stratixiv_arch_timing.blif common 384.55 vpr 2.93 GiB 506 3281 77 113 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 3067304 172 334 94412 0 3 58023 3977 150 111 16650 -1 titan_small -1 -1 727715 437837 2933105 904764 1973968 54373 2995.4 MiB 262.89 0.38 -1 -1 -1 -1 -1 -1 0 0 0 0 500495 8.62670 115929 1.99819 109749 157743 47396298 10426845 0 0 3.08275e+08 18515.0 8 4815530 52742011 -1 -1 -1 -1 -1 -1 -1 50.78 -1 -1 2995.4 MiB 10.64 0 0 2995.4 MiB -1 34.16 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 718952957d1..eceaa56b4b1 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 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 430.27 vpr 7.22 GiB 274 1048 36 59 0 2 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 7572608 22 252 53001 29054 7 22984 1419 89 66 5874 DSP auto 2999.7 MiB 77.55 248316 1021579 298715 629192 93672 3552.4 MiB 75.43 0.60 7.79847 -44076.4 -6.79847 3.16357 0.04 0.145495 0.126331 19.1685 16.7404 337990 6.38090 73939 1.39589 113486 262947 123939600 20677912 0 0 1.48102e+08 25213.2 18 3168173 32237029 53333 8.13811 2.93957 -42084.8 -7.13811 0 0 30.24 37.78 22.78 7394.9 MiB 150.02 24.6012 21.633 3552.4 MiB 61.30 11.40 -stratixiv_arch.timing.xml CH_DFSIN_stratixiv_arch_timing.blif common 423.49 vpr 6.82 GiB 36 1585 10 10 0 0 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 7148500 3 33 48977 39238 1 26095 1641 54 40 2160 LAB auto 3019.2 MiB 103.15 286068 978816 295772 657268 25776 3171.0 MiB 80.85 0.83 87.9237 -89444.7 -86.9237 87.9237 0.02 0.133548 0.111652 14.7315 12.3725 377246 7.70314 89630 1.83019 136470 456181 107134305 13321542 0 0 5.45421e+07 25251.0 24 2489089 26482784 65639 72.0152 72.0152 -145316 -71.0152 0 0 10.89 30.08 16.61 6981.0 MiB 142.54 20.844 17.5112 3143.2 MiB 62.59 3.96 -stratixiv_arch.timing.xml EKF-SLAM_Jacobians_stratixiv_arch_timing.blif common 711.87 vpr 7.51 GiB 574 2786 16 0 0 0 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 7875556 4 570 66175 54803 2 39221 3376 91 67 6097 io auto 3239.4 MiB 185.13 637050 2737396 996225 1655508 85663 3733.5 MiB 161.80 1.29 31.0835 -120493 -30.0835 7.14678 0.06 0.211633 0.187447 26.5121 22.2855 899864 13.5993 200525 3.03045 250269 1330369 403832098 58432790 0 0 1.53687e+08 25207.0 23 4527063 53934418 131001 31.4743 7.04434 -123107 -30.4743 0 0 31.82 48.91 25.68 7690.6 MiB 229.13 35.3927 29.9033 3733.5 MiB 54.44 12.02 -stratixiv_arch.timing.xml JPEG_stratixiv_arch_timing.blif common 490.17 vpr 7.44 GiB 36 1393 8 149 2 0 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 7802588 3 33 52402 39411 1 26961 1588 73 54 3942 M9K auto 3038.9 MiB 115.22 308817 862861 247827 593176 21858 3344.5 MiB 70.28 0.75 18.2872 -344515 -17.2872 18.2872 0.04 0.144193 0.116967 14.4383 11.7329 388387 7.41281 89501 1.70823 127828 482181 86633732 10962711 0 0 9.96402e+07 25276.6 23 3049699 30612935 82279 18.1508 18.1508 -339276 -17.1508 0 0 19.96 46.42 29.95 7619.5 MiB 155.40 20.4894 16.7826 3344.5 MiB 62.62 7.54 -stratixiv_arch.timing.xml leon2_stratixiv_arch_timing.blif common 264.87 vpr 6.35 GiB 251 955 1 17 0 0 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 6658268 55 196 20131 19956 1 8273 1224 44 33 1452 io auto 2885.6 MiB 59.05 121891 590184 190135 382049 18000 3003.9 MiB 21.76 0.23 8.00991 -79285.3 -7.00991 8.00991 0.01 0.0550621 0.0436789 5.54087 4.43725 168265 8.35975 39603 1.96756 52203 214680 35422307 3611930 0 0 3.65459e+07 25169.4 13 1361186 16140321 53661 8.2494 8.2494 -80319.6 -7.2494 0 0 7.63 18.91 10.40 6502.2 MiB 101.02 6.87899 5.53912 2972.4 MiB 65.45 3.08 -stratixiv_arch.timing.xml leon3mp_stratixiv_arch_timing.blif common 461.02 vpr 6.99 GiB 255 2122 1 28 0 0 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 7325496 84 171 36458 36247 3 20327 2406 62 46 2852 LAB auto 3026.4 MiB 149.19 282856 1613906 577988 956437 79481 3228.2 MiB 60.47 0.55 12.7635 -89890.6 -11.7635 4.81564 0.03 0.118349 0.0946709 13.1884 10.6839 385220 10.5702 85805 2.35443 120726 551439 87035965 8547461 0 0 7.20342e+07 25257.4 15 2649463 32096142 68009 12.7106 4.59591 -89170.4 -11.7106 0 0 14.69 35.95 19.46 7153.8 MiB 138.86 16.8557 13.6644 3228.2 MiB 62.61 5.90 -stratixiv_arch.timing.xml MMM_stratixiv_arch_timing.blif common 536.44 vpr 7.68 GiB 478 1233 1 300 4 0 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 8052732 202 276 35125 30509 3 21219 2016 106 79 8374 M9K auto 2979.7 MiB 92.45 275268 1593266 551386 986614 55266 3817.0 MiB 63.87 0.46 9.2665 -49067 -8.2665 3.57275 0.06 0.128588 0.0997349 17.2665 13.8123 330934 9.42322 69644 1.98309 96626 409213 76592480 17612840 0 0 2.11296e+08 25232.4 22 3960168 43100363 65824 7.92317 3.74791 -72552.8 -6.92317 0 0 43.69 57.06 35.19 7864.0 MiB 168.53 22.5205 18.1449 3817.0 MiB 63.34 20.57 -stratixiv_arch.timing.xml radar20_stratixiv_arch_timing.blif common 316.30 vpr 6.89 GiB 5 333 31 105 0 2 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 7222344 3 2 14862 10304 26 7583 476 89 66 5874 DSP auto 2832.3 MiB 45.71 124138 182462 49732 129080 3650 3434.9 MiB 11.57 0.11 5.88079 -31819.8 -4.88079 4.5134 0.05 0.0575387 0.0481419 6.23293 5.24991 151302 10.1983 29977 2.02056 41602 169090 28196463 3392334 0 0 1.48102e+08 25213.2 14 2293667 23918971 38105 5.43555 4.34297 -36900.7 -4.43555 0 0 31.66 30.81 19.91 7053.1 MiB 114.27 8.0475 6.8139 3434.9 MiB 67.70 13.08 -stratixiv_arch.timing.xml random_stratixiv_arch_timing.blif common 542.79 vpr 7.40 GiB 693 1797 25 16 0 0 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 7764172 35 658 51416 37539 1 27427 2531 108 80 8640 io auto 3075.8 MiB 93.41 241934 2243861 754419 1344439 145003 3917.1 MiB 110.58 0.77 41.8615 -66574.8 -40.8615 41.8615 0.09 0.160304 0.137258 23.4482 20.061 335308 6.71879 78438 1.57171 166276 681051 158387837 20955778 0 0 2.18142e+08 25247.9 25 4407721 50162159 84809 37.8945 37.8945 -63952.6 -36.8945 0 0 44.15 46.45 23.73 7582.2 MiB 178.57 31.4578 26.962 3917.1 MiB 63.71 20.46 -stratixiv_arch.timing.xml Reed_Solomon_stratixiv_arch_timing.blif common 387.65 vpr 7.01 GiB 753 1113 5 32 0 0 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 7354908 13 740 25173 25306 1 12716 1903 117 87 10179 io auto 2928.2 MiB 67.88 151917 1239643 452352 735278 52013 3981.2 MiB 35.57 0.31 9.32912 -33745.1 -8.32912 8.97758 0.07 0.0799309 0.0699705 9.04546 7.55642 187992 7.47008 41392 1.64476 64808 295441 45317315 4493718 0 0 2.57088e+08 25256.7 13 4146271 46119125 60560 9.51895 7.86886 -41989.5 -8.51895 0 0 53.18 36.15 16.47 7182.2 MiB 123.92 11.2875 9.41327 3981.2 MiB 65.19 23.64 -stratixiv_arch.timing.xml sudoku_check_stratixiv_arch_timing.blif common 286.07 vpr 6.67 GiB 54 665 0 40 0 1 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 6992700 2 52 16673 16662 2 12027 760 37 27 999 LAB auto 2863.8 MiB 48.35 185817 260785 68816 184545 7424 2969.0 MiB 17.52 0.22 6.43593 -22019.6 -5.43593 5.34219 0.01 0.0671365 0.0537497 5.45437 4.46867 243748 14.6228 55949 3.35647 70980 378754 80104321 9851562 0 0 2.50403e+07 25065.4 18 1109643 11618783 35248 6.97929 5.65113 -27162.3 -5.97929 0 0 5.11 17.57 11.32 6828.4 MiB 118.26 7.83981 6.43355 2903.7 MiB 66.65 1.88 -stratixiv_arch.timing.xml ucsb_152_tap_fir_stratixiv_arch_timing.blif common 191.95 vpr 6.21 GiB 42 758 0 0 0 0 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 6512136 13 29 26295 20086 1 12439 800 39 29 1131 LAB auto 2859.5 MiB 15.81 72155 253216 50624 190930 11662 2954.0 MiB 12.28 0.16 5.18599 -5515.92 -4.18599 2.85104 0.01 0.0356803 0.031132 2.85133 2.36966 82362 3.13247 19973 0.759632 54490 69977 15062795 1948535 0 0 2.84316e+07 25138.5 15 1246468 12354669 14284 3.84664 2.85129 -5700.97 -2.84664 0 0 5.78 12.08 6.10 6359.5 MiB 88.58 3.91742 3.26807 2899.6 MiB 66.17 2.25 -stratixiv_arch.timing.xml uoft_raytracer_stratixiv_arch_timing.blif common 545.23 vpr 7.47 GiB 964 1119 19 34 0 0 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 7832592 542 422 37277 26038 1 20403 2136 147 109 16023 io auto 2946.3 MiB 79.74 272838 1734636 659517 1007756 67363 4655.4 MiB 94.94 0.83 8.43041 -42423.1 -7.43041 8.08995 0.12 0.108337 0.0956704 15.1499 12.7644 351764 9.43725 76208 2.04454 89867 266535 93690673 14464239 0 0 4.05150e+08 25285.5 17 5915256 66794449 49681 8.39022 7.49893 -50294.9 -7.39022 0 0 83.08 50.78 21.66 7649.0 MiB 158.81 18.8518 16.0306 4655.4 MiB 64.94 40.50 -stratixiv_arch.timing.xml wb_conmax_stratixiv_arch_timing.blif common 445.21 vpr 7.31 GiB 1107 725 0 0 0 0 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 7666364 403 704 15490 16194 1 8534 1832 167 124 20708 io auto 2857.1 MiB 56.44 187193 1324022 523278 764997 35747 5137.0 MiB 26.81 0.24 12.7682 -23323.6 -11.7682 6.27217 0.15 0.0586464 0.0483811 7.15433 5.97963 227077 14.6605 37744 2.43683 40915 222692 34388107 3312547 0 0 5.23918e+08 25300.3 17 6721105 74589014 36638 11.3367 5.96529 -32928.6 -10.3367 0 0 108.17 38.65 9.61 7486.7 MiB 125.03 9.2614 7.7773 5137.0 MiB 64.95 52.28 -stratixiv_arch.timing.xml picosoc_stratixiv_arch_timing.blif common 247.80 vpr 6.23 GiB 35 739 0 6 0 0 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 6530136 18 17 16969 16357 1 6288 780 39 29 1131 LAB auto 2855.4 MiB 65.95 84377 244832 62116 178083 4633 2954.7 MiB 10.90 0.16 7.65805 -46422.6 -6.65805 7.65805 0.01 0.0380001 0.0324758 3.26975 2.63245 117354 6.91742 28009 1.65099 42731 188939 30663841 3241611 0 0 2.84316e+07 25138.5 16 1092397 12303174 43762 7.24996 7.24996 -46266.9 -6.24996 0 0 5.81 13.06 7.12 6376.9 MiB 93.57 4.60783 3.72572 2904.9 MiB 65.30 2.17 -stratixiv_arch.timing.xml murax_stratixiv_arch_timing.blif common 143.49 vpr 5.89 GiB 35 78 0 8 0 0 success 9cb4943-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-02-12T18:10:28 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 6175112 18 17 2291 2142 1 1448 121 16 12 192 LAB M9K auto 2752.7 MiB 6.96 10189 9390 1103 7334 953 2822.6 MiB 0.78 0.01 5.3129 -4153.14 -4.3129 4.5918 0.00 0.00661338 0.00538061 0.265542 0.227477 13189 5.76442 3423 1.49607 7406 28929 4207039 458732 0 0 4.71840e+06 24575.0 16 154367 1513720 4558 4.32353 4.32353 -3831.79 -3.32353 0 0 1.05 2.34 1.56 6030.2 MiB 71.16 0.476743 0.411197 2791.2 MiB 66.66 0.13 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est 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 307.76 vpr 7.22 GiB 274 1042 36 59 0 2 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 7570660 22 252 53001 29054 7 22943 1413 89 66 5874 DSP auto 3091.9 MiB 38.56 785441 248898 952533 277008 615830 59695 3553.0 MiB 58.72 0.42 11.048 8.33765 -44315.5 -7.33765 3.31053 0.05 0.113159 0.101872 15.1213 12.8155 335814 6.33982 72558 1.36982 112366 258577 120602969 20086295 0 0 1.48102e+08 25213.2 22 3167005 32167053 52611 8.18405 2.97937 -42387.2 -7.18405 0 0 17.95 20.24 13.22 7393.2 MiB 105.27 20.5108 17.3765 3553.0 MiB 45.06 11.83 +stratixiv_arch.timing.xml CH_DFSIN_stratixiv_arch_timing.blif common 295.25 vpr 6.82 GiB 36 1580 9 10 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 7146600 3 33 48977 39238 1 26189 1635 54 40 2160 LAB auto 3111.9 MiB 55.69 913357 292251 954807 280946 652655 21206 3167.9 MiB 64.31 0.69 102.633 87.8923 -93476.3 -86.8923 87.8923 0.01 0.121167 0.109007 12.9627 10.3995 392169 8.00786 92776 1.89443 131896 428998 101231115 12788547 0 0 5.45421e+07 25251.0 22 2488874 26464161 65179 72.6371 72.6371 -155945 -71.6371 0 0 6.58 15.88 9.56 6979.1 MiB 97.37 18.0468 14.5179 3126.4 MiB 44.79 3.09 +stratixiv_arch.timing.xml EKF-SLAM_Jacobians_stratixiv_arch_timing.blif common 613.29 vpr 7.51 GiB 574 2788 16 0 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 7873588 4 570 66175 54803 2 39253 3378 91 67 6097 io auto 3351.8 MiB 97.41 2 646400 2739558 982870 1670046 86642 3736.8 MiB 161.18 1.35 58.3021 30.6995 -120781 -29.6995 6.48152 0.04 0.227064 0.202621 28.3082 22.6242 933895 14.1136 207960 3.14281 243517 1313252 476687912 77203454 0 0 1.53687e+08 25207.0 24 4526159 53918290 131473 29.867 6.58528 -125533 -28.8671 0 0 19.50 30.20 17.91 7689.1 MiB 239.13 39.9958 32.2561 3736.8 MiB 46.13 13.16 +stratixiv_arch.timing.xml JPEG_stratixiv_arch_timing.blif common 343.46 vpr 7.45 GiB 36 1395 8 151 2 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 7809824 3 33 52402 39411 1 26915 1592 74 55 4070 M9K auto 3137.9 MiB 60.29 1 313744 856456 241378 601294 13784 3367.6 MiB 56.98 0.53 26.6374 18.392 -352998 -17.392 18.392 0.03 0.127652 0.0989751 13.2638 10.4714 393956 7.51911 89554 1.70924 123845 444274 79417493 9945038 0 0 1.02834e+08 25266.3 24 3087425 31058302 82003 18.2351 18.2351 -353089 -17.2351 0 0 12.20 24.60 16.53 7626.8 MiB 102.44 19.149 15.2376 3367.6 MiB 43.75 6.15 +stratixiv_arch.timing.xml leon2_stratixiv_arch_timing.blif common 191.30 vpr 6.35 GiB 251 958 1 17 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 6654744 55 196 20131 19956 1 8019 1227 44 33 1452 io auto 2959.2 MiB 34.98 264174 123065 585601 181370 380069 24162 3001.9 MiB 14.48 0.15 11.4541 8.37477 -85221.8 -7.37477 8.37477 0.01 0.0435657 0.0381802 4.91609 3.72033 171879 8.53930 40193 1.99687 53315 220453 36996311 3799813 0 0 3.65459e+07 25169.4 17 1360469 16108772 53595 8.25592 8.25592 -83672.5 -7.25592 0 0 4.49 10.24 6.25 6498.8 MiB 73.99 7.12109 5.46457 2962.2 MiB 47.31 2.36 +stratixiv_arch.timing.xml leon3mp_stratixiv_arch_timing.blif common 321.12 vpr 6.98 GiB 255 2083 1 28 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 7315800 84 171 36458 36247 3 20790 2367 61 45 2745 LAB auto 3120.3 MiB 80.93 720648 283198 1531863 524079 936471 71313 3240.9 MiB 53.41 0.48 18.575 13.0627 -93585.1 -12.0627 4.74826 0.02 0.135818 0.102003 15.2067 11.7347 383302 10.5176 85503 2.34615 122093 565734 90030158 8803236 0 0 6.93753e+07 25273.3 15 2618803 31747680 67913 12.8798 4.63258 -92475 -11.8798 0 0 8.61 19.57 11.78 7144.3 MiB 97.12 19.0364 14.7691 3240.9 MiB 46.87 5.47 +stratixiv_arch.timing.xml MMM_stratixiv_arch_timing.blif common 384.22 vpr 7.68 GiB 478 1237 1 300 4 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 8054852 202 276 35125 30509 3 21318 2020 106 79 8374 M9K auto 3074.5 MiB 51.00 986671 267666 1508172 523381 949193 35598 3817.7 MiB 47.09 0.37 11.3759 9.26548 -48475.6 -8.26548 3.33529 0.04 0.124097 0.0915348 15.1053 11.4683 328144 9.34377 68354 1.94635 96064 399914 79957226 23499170 0 0 2.11296e+08 25232.4 21 3960955 43098624 64956 7.95847 3.473 -71149.3 -6.95847 0 0 26.34 31.74 20.98 7866.1 MiB 120.27 19.7897 15.1067 3817.7 MiB 46.45 15.33 +stratixiv_arch.timing.xml radar20_stratixiv_arch_timing.blif common 209.11 vpr 6.86 GiB 5 323 31 105 0 2 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 7192244 3 2 14862 10304 26 7561 466 89 66 5874 DSP auto 2906.5 MiB 19.29 270018 117214 172036 45994 123462 2580 3432.3 MiB 8.33 0.08 9.28243 6.01869 -39114.1 -5.01869 4.08518 0.03 0.0454291 0.0406349 5.15593 4.32319 142371 9.59632 28892 1.94743 41759 169140 29445405 3626320 0 0 1.48102e+08 25213.2 15 2293067 23897973 38057 4.93599 4.08638 -46486.1 -3.93599 0 0 18.14 15.12 10.24 7023.7 MiB 70.97 6.81564 5.74588 3432.3 MiB 44.34 9.65 +stratixiv_arch.timing.xml random_stratixiv_arch_timing.blif common 373.15 vpr 7.40 GiB 693 1777 25 16 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 7755920 35 658 51416 37539 1 27424 2511 108 80 8640 io auto 3164.2 MiB 50.50 1 251917 2152071 724984 1286743 140344 3911.0 MiB 82.56 0.70 74.2949 42.7394 -67262.7 -41.7394 42.7394 0.07 0.162863 0.131205 20.6635 16.9624 352057 7.05454 81260 1.62829 152474 598323 166291976 23812913 0 0 2.18142e+08 25247.9 24 4403936 50039004 85327 39.992 39.992 -64895.1 -38.992 0 0 26.33 24.60 14.40 7574.1 MiB 123.27 27.3283 22.5689 3911.0 MiB 44.86 15.47 +stratixiv_arch.timing.xml Reed_Solomon_stratixiv_arch_timing.blif common 273.02 vpr 7.01 GiB 753 1100 5 32 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 7350572 13 740 25173 25306 1 12838 1890 117 87 10179 io auto 3006.8 MiB 37.42 599292 157888 1216610 423982 737752 54876 3977.7 MiB 30.17 0.24 14.8829 8.76456 -34576 -7.76456 8.70409 0.05 0.0816179 0.061816 10.1241 8.14491 194824 7.74156 42136 1.67432 66192 303102 47030761 4682931 0 0 2.57088e+08 25256.7 12 4146225 46138065 61038 9.03984 7.63094 -42209.6 -8.03984 0 0 32.63 17.95 9.14 7177.9 MiB 81.09 12.1021 9.70391 3977.7 MiB 45.61 23.31 +stratixiv_arch.timing.xml sudoku_check_stratixiv_arch_timing.blif common 200.36 vpr 6.67 GiB 54 664 0 40 0 1 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 6988952 2 52 16673 16662 2 11970 759 37 27 999 LAB auto 2939.6 MiB 26.52 329275 182496 253339 66599 180853 5887 2975.1 MiB 13.24 0.15 8.48983 6.31912 -21812.1 -5.31912 5.08034 0.00 0.0629579 0.0470018 5.79269 4.52835 240918 14.4531 55334 3.31958 72352 385020 82634034 10266678 0 0 2.50403e+07 25065.4 19 1109231 11603273 35282 6.63264 5.37296 -26077.9 -5.63264 0 0 3.16 9.01 5.97 6825.1 MiB 80.01 7.98711 6.27754 2941.1 MiB 45.18 1.43 +stratixiv_arch.timing.xml ucsb_152_tap_fir_stratixiv_arch_timing.blif common 138.01 vpr 6.21 GiB 42 749 0 0 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 6510184 13 29 26295 20086 1 12646 791 39 29 1131 LAB auto 2927.9 MiB 8.63 231619 75107 234775 43541 180854 10380 2952.5 MiB 7.46 0.10 5.55061 5.16398 -5504.03 -4.16398 2.86102 0.01 0.0337965 0.0307351 2.48103 2.06348 86091 3.27429 21138 0.803940 55083 69816 15088501 1963151 0 0 2.84316e+07 25138.5 14 1246298 12345793 14184 3.88416 2.98764 -5833.91 -2.88416 0 0 3.69 6.67 3.76 6357.2 MiB 59.58 3.41906 2.82928 2931.6 MiB 45.54 1.83 +stratixiv_arch.timing.xml uoft_raytracer_stratixiv_arch_timing.blif common 346.89 vpr 7.47 GiB 964 1128 19 34 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 7832876 542 422 37277 26038 1 20404 2145 147 109 16023 io auto 3028.2 MiB 42.13 995805 278436 1702989 641501 993647 67841 4655.2 MiB 55.90 0.45 15.3312 8.52855 -42700.6 -7.52855 8.52855 0.08 0.0906128 0.0733202 12.1681 9.84201 356776 9.57171 77090 2.06820 91226 273124 91865170 14105223 0 0 4.05150e+08 25285.5 18 5916678 66826775 49123 8.38836 8.09375 -49929.1 -7.38836 0 0 48.82 24.65 12.08 7648.9 MiB 99.97 15.4125 12.5496 4655.2 MiB 43.04 30.94 +stratixiv_arch.timing.xml wb_conmax_stratixiv_arch_timing.blif common 299.76 vpr 7.31 GiB 1107 730 0 0 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 7664032 403 704 15490 16194 1 8443 1837 167 124 20708 io auto 2928.3 MiB 31.79 580890 183895 1261389 465912 759977 35500 5134.5 MiB 17.64 0.16 21.2837 12.8498 -23740.4 -11.8498 6.01594 0.10 0.0512241 0.0393914 5.96074 4.75489 219953 14.2006 37215 2.40267 39483 211384 32469655 3103625 0 0 5.23918e+08 25300.3 17 6721158 74643089 37962 12.6526 5.87741 -32674.5 -11.6526 0 0 66.37 18.22 5.91 7484.0 MiB 79.20 7.59275 6.10237 5134.5 MiB 45.29 41.40 +stratixiv_arch.timing.xml picosoc_stratixiv_arch_timing.blif common 160.44 vpr 6.23 GiB 35 731 0 6 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 6528224 18 17 16969 16357 1 6487 772 39 29 1131 LAB auto 2925.7 MiB 35.22 189359 78593 245032 60572 181809 2651 2959.4 MiB 7.11 0.10 11.1993 7.7388 -41982.4 -6.7388 7.7388 0.00 0.0307985 0.0270914 2.63105 2.05162 107149 6.31589 25659 1.51247 41788 165445 26862215 2865069 0 0 2.84316e+07 25138.5 14 1092494 12305361 43638 7.36438 7.36438 -43648.4 -6.36438 0 0 3.64 6.84 4.06 6375.2 MiB 59.12 3.5915 2.81489 2928.7 MiB 43.15 1.47 +stratixiv_arch.timing.xml murax_stratixiv_arch_timing.blif common 106.51 vpr 5.89 GiB 35 75 0 8 0 0 success v8.0.0-12648-g60575e9eb-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T23:48:05 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 6171076 18 17 2291 2142 1 1462 118 16 12 192 LAB M9K auto 2808.7 MiB 4.24 14517 10381 9366 1088 7475 803 2819.8 MiB 0.57 0.01 5.48653 5.31416 -4115.07 -4.31416 4.57209 0.00 0.00439936 0.00390185 0.191396 0.163419 13233 5.78365 3460 1.51224 7262 27758 4096440 441394 0 0 4.71840e+06 24575.0 14 154247 1512402 4624 4.15021 4.15021 -3988.57 -3.15021 0 0 0.67 1.23 0.84 6026.4 MiB 47.88 0.339888 0.292276 2809.1 MiB 45.05 0.08 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/basic_ap/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/basic_ap/config/golden_results.txt index f0282e9bf5e..3d0cf31dbb9 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/basic_ap/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/basic_ap/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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - fixed_k6_frac_N8_22nm.xml single_wire.v common 1.34 vpr 75.71 MiB -1 -1 0.07 20608 1 0.01 -1 -1 33172 -1 -1 0 1 0 0 success v8.0.0-12401-g2b0120e4a-dirty release VTR_ASSERT_LEVEL=3 GNU 13.3.0 on Linux-6.8.0-57-generic x86_64 2025-04-13T13:41:01 srivatsan-Precision-Tower-5810 /home/alex/vtr-verilog-to-routing 77532 1 1 0 2 0 1 2 17 17 289 -1 unnamed_device -1 -1 2 2 3 0 0 3 75.7 MiB 0.48 0.00 0.2714 0.2714 -0.2714 -0.2714 nan 0.40 1.4684e-05 9.512e-06 8.1482e-05 5.6821e-05 75.7 MiB 0.48 75.7 MiB 0.07 8 16 1 6.79088e+06 0 166176. 575.005 0.15 0.000912133 0.000836449 20206 45088 -1 18 1 1 1 141 56 0.7726 nan -0.7726 -0.7726 0 0 202963. 702.294 0.01 0.00 0.04 -1 -1 0.01 0.000776852 0.0007249 - fixed_k6_frac_N8_22nm.xml single_ff.v common 1.51 vpr 75.95 MiB -1 -1 0.08 20852 1 0.02 -1 -1 33716 -1 -1 1 2 0 0 success v8.0.0-12401-g2b0120e4a-dirty release VTR_ASSERT_LEVEL=3 GNU 13.3.0 on Linux-6.8.0-57-generic x86_64 2025-04-13T13:41:01 srivatsan-Precision-Tower-5810 /home/alex/vtr-verilog-to-routing 77776 2 1 3 3 1 3 4 17 17 289 -1 unnamed_device -1 -1 22 24 9 1 1 7 76.0 MiB 0.47 0.00 0.930505 0.74674 -1.43836 -0.74674 0.74674 0.39 1.1513e-05 7.851e-06 8.3564e-05 6.0773e-05 76.0 MiB 0.47 76.0 MiB 0.07 20 31 1 6.79088e+06 13472 414966. 1435.87 0.24 0.000928712 0.000851847 22510 95286 -1 32 1 2 2 231 42 0.74674 0.74674 -1.43836 -0.74674 0 0 503264. 1741.40 0.03 0.00 0.08 -1 -1 0.03 0.000833737 0.000775898 - fixed_k6_frac_N8_22nm.xml ch_intrinsics.v common 2.74 vpr 76.62 MiB -1 -1 0.26 22392 3 0.07 -1 -1 37308 -1 -1 67 99 1 0 success v8.0.0-12401-g2b0120e4a-dirty release VTR_ASSERT_LEVEL=3 GNU 13.3.0 on Linux-6.8.0-57-generic x86_64 2025-04-13T13:41:01 srivatsan-Precision-Tower-5810 /home/alex/vtr-verilog-to-routing 78456 99 130 240 229 1 225 297 17 17 289 -1 unnamed_device -1 -1 978 866 19107 2257 1105 15745 76.6 MiB 0.61 0.00 2.26688 1.84068 -122.242 -1.84068 1.84068 0.39 0.000595647 0.000527536 0.0138425 0.0123349 76.6 MiB 0.61 76.6 MiB 0.13 34 1974 43 6.79088e+06 1.45062e+06 618332. 2139.56 0.79 0.175076 0.154945 25102 150614 -1 1739 14 569 895 60631 18120 2.0466 2.0466 -143.082 -2.0466 -0.04337 -0.04337 787024. 2723.27 0.04 0.03 0.13 -1 -1 0.04 0.0355147 0.0319235 - fixed_k6_frac_N8_22nm.xml diffeq1.v common 9.26 vpr 78.62 MiB -1 -1 0.36 26868 15 0.31 -1 -1 37472 -1 -1 47 162 0 5 success v8.0.0-12401-g2b0120e4a-dirty release VTR_ASSERT_LEVEL=3 GNU 13.3.0 on Linux-6.8.0-57-generic x86_64 2025-04-13T13:41:01 srivatsan-Precision-Tower-5810 /home/alex/vtr-verilog-to-routing 80512 162 96 817 258 1 691 310 17 17 289 -1 unnamed_device -1 -1 7341 6689 25462 269 7038 18155 78.6 MiB 1.27 0.01 22.1608 21.0485 -1573.19 -21.0485 21.0485 0.38 0.00201699 0.00177192 0.0590804 0.052726 78.6 MiB 1.27 78.6 MiB 0.26 54 12827 26 6.79088e+06 2.61318e+06 949917. 3286.91 5.15 0.794403 0.715337 28846 232421 -1 11184 19 3449 7611 967200 252634 20.9913 20.9913 -1571.36 -20.9913 0 0 1.17392e+06 4061.99 0.06 0.26 0.21 -1 -1 0.06 0.158612 0.144189 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +fixed_k6_frac_N8_22nm.xml single_wire.v common 1.14 vpr 73.91 MiB -1 -1 0.06 17288 1 0.02 -1 -1 29952 -1 -1 0 1 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 75684 1 1 0 2 0 1 2 17 17 289 -1 unnamed_device -1 -1 2 2 3 0 0 3 73.9 MiB 0.33 0.00 0.2714 0.2714 -0.2714 -0.2714 nan 0.24 6.545e-06 3.49e-06 5.3077e-05 3.5069e-05 73.9 MiB 0.33 73.9 MiB 0.09 8 18 1 6.79088e+06 0 166176. 575.005 0.12 0.000968028 0.000900296 20206 45088 -1 18 1 1 1 110 40 0.7726 nan -0.7726 -0.7726 0 0 202963. 702.294 0.01 0.00 0.02 -1 -1 0.01 0.000884953 0.000829916 +fixed_k6_frac_N8_22nm.xml single_ff.v common 1.16 vpr 74.29 MiB -1 -1 0.07 17668 1 0.02 -1 -1 29808 -1 -1 1 2 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 76068 2 1 3 3 1 3 4 17 17 289 -1 unnamed_device -1 -1 20 20 9 0 3 6 74.3 MiB 0.32 0.00 0.62144 0.62144 -1.18776 -0.62144 0.62144 0.23 9.46e-06 6.107e-06 7.2338e-05 5.3762e-05 74.3 MiB 0.32 74.3 MiB 0.09 20 27 1 6.79088e+06 13472 414966. 1435.87 0.15 0.000991708 0.000923792 22510 95286 -1 27 1 2 2 155 34 0.74674 0.74674 -1.31306 -0.74674 0 0 503264. 1741.40 0.02 0.00 0.05 -1 -1 0.02 0.000927584 0.000870114 +fixed_k6_frac_N8_22nm.xml ch_intrinsics.v common 1.96 vpr 74.95 MiB -1 -1 0.21 18824 3 0.06 -1 -1 33092 -1 -1 67 99 1 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 76744 99 130 240 229 1 221 297 17 17 289 -1 unnamed_device -1 -1 875 831 15147 1842 1372 11933 74.9 MiB 0.45 0.00 1.77902 1.6707 -126.688 -1.6707 1.6707 0.23 0.000544346 0.000510829 0.0106205 0.0100193 74.9 MiB 0.45 74.9 MiB 0.15 32 1830 14 6.79088e+06 1.45062e+06 586450. 2029.24 0.33 0.0772085 0.0707225 24814 144142 -1 1586 13 517 851 46748 14508 2.0466 2.0466 -137.082 -2.0466 -0.16867 -0.16867 744469. 2576.02 0.03 0.03 0.07 -1 -1 0.03 0.0295429 0.0275638 +fixed_k6_frac_N8_22nm.xml diffeq1.v common 5.43 vpr 76.34 MiB -1 -1 0.31 23432 15 0.29 -1 -1 33828 -1 -1 46 162 0 5 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 78168 162 96 817 258 1 692 309 17 17 289 -1 unnamed_device -1 -1 7537 6452 26409 275 7390 18744 76.3 MiB 0.94 0.01 22.1138 21.2087 -1557.26 -21.2087 21.2087 0.23 0.00162614 0.00151896 0.0510239 0.0477515 76.3 MiB 0.94 76.3 MiB 0.23 52 12973 34 6.79088e+06 2.59971e+06 926341. 3205.33 2.07 0.452281 0.419264 28558 226646 -1 11227 22 3275 7622 1002575 262444 20.6757 20.6757 -1527 -20.6757 0 0 1.14541e+06 3963.36 0.04 0.21 0.12 -1 -1 0.04 0.135881 0.127356 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/koios_test/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/koios_test/config/golden_results.txt index 13c7fadca33..8d48ba3b7bb 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/koios_test/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/koios_test/config/golden_results.txt @@ -1,6 +1,6 @@ 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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time -k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml test.v common 3.53 vpr 75.00 MiB -1 -1 0.20 17948 1 0.05 -1 -1 31776 -1 -1 12 130 0 -1 success c8266d389-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-58-generic x86_64 2025-05-01T21:51:43 betzgrp-wintermute /home/yanhang1/parallel-router/vtr-verilog-to-routing/vtr_flow/tasks 76796 130 40 596 562 1 356 185 14 14 196 dsp_top auto 36.3 MiB 0.10 3253 1906 39109 13750 20961 4398 75.0 MiB 0.14 0.00 5.12303 5.12303 -649.023 -5.12303 5.12303 0.22 0.000972896 0.000903976 0.0756961 0.0702652 -1 -1 -1 -1 82 3601 9 4.93594e+06 1.0962e+06 1.23902e+06 6321.54 1.39 0.353988 0.326407 33448 250998 -1 3687 9 800 863 234820 89374 4.57723 4.57723 -726.049 -4.57723 0 0 1.53308e+06 7821.82 0.04 0.06 0.21 -1 -1 0.04 0.029531 0.027938 -k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml test.v common_--router_algorithm_parallel 3.67 vpr 75.36 MiB -1 -1 0.19 17948 1 0.05 -1 -1 31772 -1 -1 12 130 0 -1 success c8266d389-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-58-generic x86_64 2025-05-01T21:51:43 betzgrp-wintermute /home/yanhang1/parallel-router/vtr-verilog-to-routing/vtr_flow/tasks 77172 130 40 596 562 1 356 185 14 14 196 dsp_top auto 36.1 MiB 0.10 3253 1906 39109 13750 20961 4398 75.4 MiB 0.14 0.00 5.12303 5.12303 -649.023 -5.12303 5.12303 0.27 0.00093525 0.000867226 0.074379 0.0690457 -1 -1 -1 -1 82 3585 15 4.93594e+06 1.0962e+06 1.23902e+06 6321.54 1.46 0.361492 0.333317 33448 250998 -1 3715 9 792 819 214644 81314 4.57723 4.57723 -685.291 -4.57723 0 0 1.53308e+06 7821.82 0.04 0.06 0.21 -1 -1 0.04 0.0295768 0.0280427 -k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml test.v common_--enable_parallel_connection_router_on_--astar_fac_0.0_--post_target_prune_fac_0.0_--post_target_prune_offset_0.0 4.39 vpr 74.76 MiB -1 -1 0.19 17960 1 0.05 -1 -1 32068 -1 -1 12 130 0 -1 success c8266d389-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-58-generic x86_64 2025-05-01T21:51:43 betzgrp-wintermute /home/yanhang1/parallel-router/vtr-verilog-to-routing/vtr_flow/tasks 76556 130 40 596 562 1 356 185 14 14 196 dsp_top auto 36.1 MiB 0.10 3253 1906 39109 13750 20961 4398 74.8 MiB 0.14 0.00 5.12303 5.12303 -649.023 -5.12303 5.12303 0.22 0.000971322 0.000902249 0.0754843 0.0701709 -1 -1 -1 -1 82 3577 9 4.93594e+06 1.0962e+06 1.23902e+06 6321.54 2.12 0.359108 0.331481 33448 250998 -1 3424 10 688 706 802479 802479 4.57723 4.57723 -678.711 -4.57723 0 0 1.53308e+06 7821.82 0.04 0.21 0.21 -1 -1 0.04 0.0308245 0.0291405 -k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml test.v common_--enable_parallel_connection_router_on_--multi_queue_num_threads_2_--multi_queue_num_queues_4_--astar_fac_0.0_--post_target_prune_fac_0.0_--post_target_prune_offset_0.0 5.39 vpr 75.00 MiB -1 -1 0.20 17960 1 0.05 -1 -1 32092 -1 -1 12 130 0 -1 success c8266d389-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-58-generic x86_64 2025-05-01T21:51:43 betzgrp-wintermute /home/yanhang1/parallel-router/vtr-verilog-to-routing/vtr_flow/tasks 76796 130 40 596 562 1 356 185 14 14 196 dsp_top auto 36.3 MiB 0.12 3253 1906 39109 13750 20961 4398 75.0 MiB 0.14 0.00 5.12303 5.12303 -649.023 -5.12303 5.12303 0.22 0.000968255 0.000899263 0.0760549 0.070686 -1 -1 -1 -1 82 3577 9 4.93594e+06 1.0962e+06 1.23902e+06 6321.54 2.88 0.358969 0.330993 33448 250998 -1 3424 10 688 706 796806 796806 4.57723 4.57723 -678.711 -4.57723 0 0 1.53308e+06 7821.82 0.04 0.43 0.21 -1 -1 0.04 0.0319008 0.0301886 -k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml test.v common_--enable_parallel_connection_router_on_--multi_queue_num_threads_2_--multi_queue_num_queues_8_--multi_queue_direct_draining_on_--astar_fac_0.0_--post_target_prune_fac_0.0_--post_target_prune_offset_0.0 4.39 vpr 74.01 MiB -1 -1 0.19 17564 1 0.05 -1 -1 31772 -1 -1 12 130 0 -1 success c8266d389-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-58-generic x86_64 2025-05-01T21:51:43 betzgrp-wintermute /home/yanhang1/parallel-router/vtr-verilog-to-routing/vtr_flow/tasks 75788 130 40 596 562 1 356 185 14 14 196 dsp_top auto 34.9 MiB 0.11 3253 1906 39109 13750 20961 4398 74.0 MiB 0.14 0.00 5.12303 5.12303 -649.023 -5.12303 5.12303 0.24 0.00096838 0.000899881 0.0767282 0.0713559 -1 -1 -1 -1 82 3577 9 4.93594e+06 1.0962e+06 1.23902e+06 6321.54 2.13 0.361612 0.33375 33448 250998 -1 3424 10 688 706 789226 323167 4.57723 4.57723 -678.711 -4.57723 0 0 1.53308e+06 7821.82 0.04 0.18 0.21 -1 -1 0.04 0.0309043 0.029241 +k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml test.v common 2.99 vpr 75.31 MiB -1 -1 0.19 18544 1 0.04 -1 -1 31664 -1 -1 12 130 0 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 77116 130 40 596 562 1 355 185 14 14 196 dsp_top auto 36.2 MiB 0.09 3373 1886 37005 12673 19524 4808 75.3 MiB 0.12 0.00 5.12303 5.12303 -646.14 -5.12303 5.12303 0.18 0.000888478 0.000830569 0.0676133 0.0633469 -1 -1 -1 -1 80 3637 13 4.93594e+06 1.0962e+06 1.21529e+06 6200.44 1.12 0.273919 0.254588 33264 246902 -1 3285 7 680 743 143030 53497 4.57723 4.57723 -709.755 -4.57723 0 0 1.50824e+06 7695.10 0.03 0.04 0.16 -1 -1 0.03 0.0237623 0.0226895 +k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml test.v common_--router_algorithm_parallel 3.06 vpr 75.10 MiB -1 -1 0.18 18308 1 0.05 -1 -1 31656 -1 -1 12 130 0 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 76900 130 40 596 562 1 355 185 14 14 196 dsp_top auto 36.0 MiB 0.09 3373 1886 37005 12673 19524 4808 75.1 MiB 0.12 0.00 5.12303 5.12303 -646.14 -5.12303 5.12303 0.18 0.000947284 0.000887707 0.0714409 0.0669686 -1 -1 -1 -1 80 3614 31 4.93594e+06 1.0962e+06 1.21529e+06 6200.44 1.17 0.308838 0.28719 33264 246902 -1 3269 7 690 753 144671 54345 4.57723 4.57723 -668.704 -4.57723 0 0 1.50824e+06 7695.10 0.03 0.04 0.16 -1 -1 0.03 0.0243899 0.0232635 +k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml test.v common_--enable_parallel_connection_router_on_--astar_fac_0.0_--post_target_prune_fac_0.0_--post_target_prune_offset_0.0 3.85 vpr 75.10 MiB -1 -1 0.18 18304 1 0.05 -1 -1 31656 -1 -1 12 130 0 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 76900 130 40 596 562 1 355 185 14 14 196 dsp_top auto 36.0 MiB 0.09 3373 1886 37005 12673 19524 4808 75.1 MiB 0.12 0.00 5.12303 5.12303 -646.14 -5.12303 5.12303 0.19 0.000947139 0.000884506 0.0718506 0.0673524 -1 -1 -1 -1 80 3571 8 4.93594e+06 1.0962e+06 1.21529e+06 6200.44 1.78 0.275537 0.25602 33264 246902 -1 3282 7 664 709 751766 751766 4.57723 4.57723 -648.751 -4.57723 0 0 1.50824e+06 7695.10 0.04 0.18 0.18 -1 -1 0.04 0.0251499 0.0240091 +k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml test.v common_--enable_parallel_connection_router_on_--multi_queue_num_threads_2_--multi_queue_num_queues_4_--astar_fac_0.0_--post_target_prune_fac_0.0_--post_target_prune_offset_0.0 4.13 vpr 75.70 MiB -1 -1 0.19 18304 1 0.05 -1 -1 31624 -1 -1 12 130 0 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 77512 130 40 596 562 1 355 185 14 14 196 dsp_top auto 36.6 MiB 0.09 3373 1886 37005 12673 19524 4808 75.7 MiB 0.13 0.00 5.12303 5.12303 -646.14 -5.12303 5.12303 0.19 0.000936676 0.000876234 0.072396 0.0678269 -1 -1 -1 -1 80 3571 8 4.93594e+06 1.0962e+06 1.21529e+06 6200.44 2.01 0.278036 0.258406 33264 246902 -1 3282 7 664 709 746031 746031 4.57723 4.57723 -648.751 -4.57723 0 0 1.50824e+06 7695.10 0.04 0.23 0.17 -1 -1 0.04 0.0252544 0.0240964 +k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml test.v common_--enable_parallel_connection_router_on_--multi_queue_num_threads_2_--multi_queue_num_queues_8_--multi_queue_direct_draining_on_--astar_fac_0.0_--post_target_prune_fac_0.0_--post_target_prune_offset_0.0 3.72 vpr 75.19 MiB -1 -1 0.19 18304 1 0.05 -1 -1 31656 -1 -1 12 130 0 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 76992 130 40 596 562 1 355 185 14 14 196 dsp_top auto 36.1 MiB 0.09 3373 1886 37005 12673 19524 4808 75.2 MiB 0.12 0.00 5.12303 5.12303 -646.14 -5.12303 5.12303 0.18 0.000925013 0.000865263 0.0715735 0.0670973 -1 -1 -1 -1 80 3571 8 4.93594e+06 1.0962e+06 1.21529e+06 6200.44 1.68 0.27697 0.257059 33264 246902 -1 3282 7 664 709 739993 283414 4.57723 4.57723 -648.751 -4.57723 0 0 1.50824e+06 7695.10 0.04 0.17 0.17 -1 -1 0.04 0.0248422 0.0236933 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/koios_test_no_hb/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/koios_test_no_hb/config/golden_results.txt index 4e167973fd7..65bf790b0e7 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/koios_test_no_hb/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/koios_test_no_hb/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 total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml test.v common 9.61 vpr 79.62 MiB -1 -1 0.81 23308 1 0.11 -1 -1 37544 -1 -1 23 130 0 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 81536 130 40 1147 997 1 585 196 14 14 196 dsp_top auto 40.6 MiB 0.64 2711 47992 15247 26403 6342 79.6 MiB 0.47 0.01 6.04823 -699.558 -6.04823 6.04823 0.48 0.00203985 0.00179993 0.208906 0.186707 -1 -1 -1 -1 108 5255 25 4.93594e+06 1.40315e+06 1.55765e+06 7947.21 4.22 0.825967 0.736098 36552 325092 -1 4721 19 2233 2309 243533 83581 7.64092 7.64092 -760.756 -7.64092 0 0 1.93951e+06 9895.46 0.09 0.19 0.61 -1 -1 0.09 0.108869 0.100506 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml test.v common 4.52 vpr 78.22 MiB -1 -1 0.40 19840 1 0.06 -1 -1 33392 -1 -1 23 130 0 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 80096 130 40 1147 997 1 592 196 14 14 196 dsp_top auto 39.1 MiB 0.28 5185 2742 51406 16747 29054 5605 78.2 MiB 0.20 0.00 7.18035 6.03913 -683.447 -6.03913 6.03913 0.19 0.00100505 0.000908109 0.0981168 0.0895226 -1 -1 -1 -1 118 5148 28 4.93594e+06 1.40315e+06 1.66654e+06 8502.75 1.79 0.409007 0.367667 37820 362924 -1 5094 24 2395 2501 322053 103825 7.0462 7.0462 -729.408 -7.0462 0 0 2.11586e+06 10795.2 0.05 0.11 0.27 -1 -1 0.05 0.0618139 0.0571071 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_3d/3d_cb/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_3d/3d_cb/config/golden_results.txt index b1825addf7b..4a4c7e8c58a 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_3d/3d_cb/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_3d/3d_cb/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_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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est 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 ucsb_152_tap_fir_stratixiv_arch_timing.blif common 48.72 vpr 1.18 GiB 42 758 0 0 0 0 success v8.0.0-12506-gd5dc5f7b8 release IPO VTR_ASSERT_LEVEL=2 GNU 11.5.0 on Linux-5.4.0-171-generic x86_64 2025-04-26T07:14:03 qlsof01.quicklogic.com /home/amohaghegh/vtr-verilog-to-routing/vtr_flow/tasks 1240720 13 29 26295 20086 1 12439 800 29 21 1218 LAB auto 1075.1 MiB 12.14 186170 63157 219808 34278 166444 19086 1191.3 MiB 7.46 0.11 5.41016 4.9834 -5385.92 -3.9834 3.13071 0.02 0.0246574 0.0210761 1.78411 1.4367 73601 5.91791 18330 1.47383 25639 35167 11163573 1688400 0 0 2.60031e+07 21349.0 15 354380 4692432 -1 5.20923 2.79354 -5293.11 -4.20923 0 0 7.54 -1 -1 1191.3 MiB 4.03 3.22991 2.72734 1191.3 MiB -1 1.82 +3d_full_OPIN_inter_die_stratixiv_arch.timing.xml ucsb_152_tap_fir_stratixiv_arch_timing.blif common 34.99 vpr 1.18 GiB 42 749 0 0 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 1239896 13 29 26295 20086 1 12646 791 29 21 1218 LAB auto 1077.1 MiB 7.54 181772 63669 220151 34297 170189 15665 1190.3 MiB 5.82 0.09 5.43671 4.9834 -5379.72 -3.9834 2.7577 0.01 0.0231458 0.0183209 1.51922 1.22818 74208 5.86903 18737 1.48189 26177 36020 11211877 1692426 0 0 2.60031e+07 21349.0 16 354380 4692432 -1 5.06256 2.57234 -4972.33 -4.06256 0 0 4.48 -1 -1 1190.3 MiB 3.13 2.65902 2.23319 1190.3 MiB -1 1.08 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_3d/3d_sb/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_3d/3d_sb/config/golden_results.txt index 2ba28851792..192e82a31ba 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_3d/3d_sb/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_3d/3d_sb/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_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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est 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_SB_inter_die_stratixiv_arch.timing.xml ucsb_152_tap_fir_stratixiv_arch_timing.blif common 73.49 vpr 1.36 GiB 42 758 0 0 0 0 success v8.0.0-12506-gd5dc5f7b8 release IPO VTR_ASSERT_LEVEL=2 GNU 11.5.0 on Linux-5.4.0-171-generic x86_64 2025-04-26T07:14:03 qlsof01.quicklogic.com /home/amohaghegh/vtr-verilog-to-routing/vtr_flow/tasks 1423216 13 29 26295 20086 1 12439 800 29 21 1218 LAB auto 1074.8 MiB 12.24 180137 58272 230944 40790 173771 16383 1389.9 MiB 7.97 0.12 5.04678 4.86539 -4206.86 -3.86539 2.46284 0.05 0.02551 0.0218529 1.92289 1.55523 99517 8.00169 32308 2.59773 27919 38196 46358210 11164094 0 0 2.54084e+07 20860.8 14 2001132 6214436 -1 4.98283 2.70637 -5461.41 -3.98283 0 0 9.53 -1 -1 1389.9 MiB 9.59 3.30445 2.79009 1389.9 MiB -1 17.61 +3d_SB_inter_die_stratixiv_arch.timing.xml ucsb_152_tap_fir_stratixiv_arch_timing.blif common 51.26 vpr 1.36 GiB 42 749 0 0 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 1422252 13 29 26295 20086 1 12646 791 29 21 1218 LAB auto 1077.2 MiB 7.54 177076 58479 231119 40825 176329 13965 1388.9 MiB 5.94 0.09 5.0611 5.01815 -4172.98 -4.01815 2.37031 0.04 0.0219122 0.0175206 1.56983 1.27458 100824 7.97406 32812 2.59506 28894 40551 43377071 9674443 0 0 2.54084e+07 20860.8 17 2001132 6214436 -1 5.14007 2.63151 -5380.59 -4.14007 0 0 6.15 -1 -1 1388.9 MiB 6.89 2.74676 2.32243 1388.9 MiB -1 11.16 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_absorb_buffers/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_absorb_buffers/config/golden_results.txt index abc45194ec7..72305f830f8 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_absorb_buffers/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_absorb_buffers/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 ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - k6_frac_N10_40nm.xml riscv_core_lut6.blif common_--absorb_buffer_luts_on 2.31 vpr 72.31 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 83 130 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 74048 130 150 1169 1319 1 886 363 12 12 144 clb auto 32.2 MiB 1.59 -1 -1 -1 -1 -1 -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.00628067 0.00572957 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - k6_frac_N10_40nm.xml riscv_core_lut6.blif common_--absorb_buffer_luts_off 1.95 vpr 72.04 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 90 130 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 73772 130 150 1216 1366 1 933 370 12 12 144 clb auto 32.4 MiB 1.26 -1 -1 -1 -1 -1 -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.00606424 0.00546366 -1 -1 -1 -1 -1 -1 -1 -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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +k6_frac_N10_40nm.xml riscv_core_lut6.blif common_--absorb_buffer_luts_on 1.00 vpr 70.53 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 85 130 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 72224 130 150 1169 1319 1 885 365 12 12 144 clb auto 30.3 MiB 0.63 -1 -1 -1 -1 -1 -1 -1 -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.00300143 0.00278911 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6_frac_N10_40nm.xml riscv_core_lut6.blif common_--absorb_buffer_luts_off 1.03 vpr 69.98 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 94 130 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 71656 130 150 1216 1366 1 925 374 12 12 144 clb auto 30.2 MiB 0.61 -1 -1 -1 -1 -1 -1 -1 -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.00277001 0.00256442 -1 -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_strong/strong_analysis_only/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_analysis_only/config/golden_results.txt index 94e710b87f5..c2cab91c857 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_analysis_only/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_analysis_only/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 ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_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 - k6_N10_mem32K_40nm.xml stereovision3.v common 2.05 vpr 66.01 MiB -1 -1 0.86 26896 5 0.23 -1 -1 36624 -1 -1 12 10 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 67592 10 2 181 183 1 35 24 6 6 36 clb auto 27.0 MiB 0.05 152 432 67 335 30 66.0 MiB 0.02 0.00 2.14835 -93.0339 -2.14835 2.14835 0.00 0.000412775 0.000360271 0.0136111 0.012803 -1 -1 -1 -1 138 4.31250 57 1.78125 181 343 11634 2077 646728 646728 138825. 3856.24 15 3164 19284 -1 2.14648 2.14648 -94.9192 -2.14648 0 0 0.04 -1 -1 66.0 MiB 0.03 0.0339384 0.0288063 66.0 MiB -1 0.00 - k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision3.v common 2.21 vpr 69.14 MiB -1 -1 0.76 26288 4 0.18 -1 -1 36060 -1 -1 15 11 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 70796 11 2 303 283 2 78 28 7 7 49 clb auto 29.6 MiB 0.27 285 784 175 539 70 69.1 MiB 0.05 0.00 2.03811 -163.686 -2.03811 1.90043 0.00 0.000707376 0.000615193 0.0194274 0.0173585 -1 -1 -1 -1 313 4.34722 112 1.55556 114 177 3842 1019 1.07788e+06 808410 219490. 4479.39 6 5100 32136 -1 2.07112 1.86791 -165.31 -2.07112 0 0 0.05 -1 -1 69.1 MiB 0.03 0.0450009 0.0414951 69.1 MiB -1 0.01 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time 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 +k6_N10_mem32K_40nm.xml stereovision3.v common 1.09 vpr 64.65 MiB -1 -1 0.42 23048 5 0.11 -1 -1 32976 -1 -1 12 10 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66204 10 2 181 183 1 36 24 6 6 36 clb auto 25.3 MiB 0.02 196 160 398 88 284 26 64.7 MiB 0.01 0.00 2.24505 2.14835 -91.9072 -2.14835 2.14835 0.00 0.000227686 0.000206782 0.00385417 0.00356609 -1 -1 -1 -1 136 4.12121 61 1.84848 149 320 10235 1961 646728 646728 138825. 3856.24 17 3164 19284 -1 2.10277 2.10277 -91.6521 -2.10277 0 0 0.01 -1 -1 64.7 MiB 0.01 0.0141506 0.0127546 64.7 MiB -1 0.00 +k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision3.v common 1.27 vpr 67.25 MiB -1 -1 0.42 22932 4 0.10 -1 -1 33012 -1 -1 15 11 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 68868 11 2 303 283 2 85 28 7 7 49 clb auto 27.9 MiB 0.11 462 289 1204 263 848 93 67.3 MiB 0.02 0.00 2.20327 2.04719 -154.888 -2.04719 1.90466 0.00 0.00038481 0.000343694 0.0145236 0.0131117 -1 -1 -1 -1 314 3.97468 124 1.56962 130 211 4049 1168 1.07788e+06 808410 219490. 4479.39 6 5100 32136 -1 2.02047 1.86775 -152.224 -2.02047 0 0 0.02 -1 -1 67.3 MiB 0.01 0.028669 0.0263845 67.3 MiB -1 0.00 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_analytic_placer/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_analytic_placer/config/golden_results.txt index 7f41d46c079..249ce143daf 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_analytic_placer/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_analytic_placer/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 total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - k6_frac_N10_mem32K_40nm.xml ch_intrinsics.v common 3.75 vpr 67.64 MiB -1 -1 0.42 22416 3 0.08 -1 -1 36896 -1 -1 68 99 1 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 69264 99 130 344 474 1 227 298 12 12 144 clb auto 28.8 MiB 0.22 846 1293 248 869 176 67.6 MiB 0.10 0.00 1.87518 -117.076 -1.87518 1.87518 0.33 0.000961535 0.000869555 0.00580355 0.00550747 -1 -1 -1 -1 38 1541 12 5.66058e+06 4.21279e+06 319130. 2216.18 1.43 0.231487 0.210357 12522 62564 -1 1321 9 430 670 30619 10041 1.9175 1.9175 -131.199 -1.9175 -0.126268 -0.104429 406292. 2821.48 0.02 0.04 0.09 -1 -1 0.02 0.0283489 0.0264305 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +k6_frac_N10_mem32K_40nm.xml ch_intrinsics.v common 1.60 vpr 66.94 MiB -1 -1 0.22 18440 3 0.06 -1 -1 33128 -1 -1 68 99 1 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 68544 99 130 344 474 1 228 298 12 12 144 clb auto 27.5 MiB 0.10 863 800 1293 264 867 162 66.9 MiB 0.04 0.00 1.86362 1.90582 -117.68 -1.90582 1.90582 0.09 0.000566314 0.000530143 0.0035014 0.00338303 -1 -1 -1 -1 40 1473 16 5.66058e+06 4.21279e+06 333335. 2314.82 0.32 0.11664 0.106115 12666 64609 -1 1318 11 405 616 29250 9869 1.99389 1.99389 -129.176 -1.99389 -0.260939 -0.108257 419432. 2912.72 0.01 0.03 0.04 -1 -1 0.01 0.0187502 0.0175858 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_ap/annealer_detailed_placer/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_ap/annealer_detailed_placer/config/golden_results.txt index f90dc9de594..52938d917ba 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_ap/annealer_detailed_placer/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_ap/annealer_detailed_placer/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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time 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 - k6_frac_N10_40nm.xml apex4.pre-vpr.blif common 4.63 vpr 75.62 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 83 9 -1 -1 success v8.0.0-12490-ge99a5ee8c release VTR_ASSERT_LEVEL=3 GNU 13.3.0 on Linux-6.8.0-57-generic x86_64 2025-04-21T16:53:01 srivatsan-Precision-Tower-5810 /home/alex/vtr-verilog-to-routing 77436 9 19 897 28 0 565 111 16 16 256 -1 mcnc_medium -1 -1 6985 6104 4899 468 3178 1253 75.6 MiB 3.56 0.01 5.45737 4.88762 -81.315 -4.88762 nan 0.09 0.00332256 0.00272635 0.0920151 0.0793873 75.6 MiB 3.56 75.6 MiB 2.42 9609 17.0372 2580 4.57447 4604 23759 790399 131608 1.05632e+07 4.4732e+06 1.26944e+06 4958.75 18 28900 206586 -1 5.07748 nan -84.5559 -5.07748 0 0 0.33 -1 -1 75.6 MiB 0.47 0.288973 0.25613 75.6 MiB -1 0.09 - k6_frac_N10_40nm.xml des.pre-vpr.blif common 1.81 vpr 76.21 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 58 256 -1 -1 success v8.0.0-12490-ge99a5ee8c release VTR_ASSERT_LEVEL=3 GNU 13.3.0 on Linux-6.8.0-57-generic x86_64 2025-04-21T16:53:01 srivatsan-Precision-Tower-5810 /home/alex/vtr-verilog-to-routing 78036 256 245 954 501 0 584 559 22 22 484 -1 mcnc_large -1 -1 7428 7369 18967 157 2360 16450 76.2 MiB 0.93 0.02 4.87092 4.07054 -789.645 -4.07054 nan 0.13 0.00365979 0.00331889 0.047619 0.043593 76.2 MiB 0.93 76.2 MiB 0.59 10168 17.4110 2803 4.79966 2303 5353 301769 65803 2.15576e+07 3.12585e+06 1.49107e+06 3080.73 13 47664 245996 -1 4.58117 nan -866.844 -4.58117 0 0 0.37 -1 -1 76.2 MiB 0.25 0.188446 0.174077 76.2 MiB -1 0.13 - k6_frac_N10_40nm.xml ex1010.pre-vpr.blif common 11.93 vpr 105.82 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 289 10 -1 -1 success v8.0.0-12490-ge99a5ee8c release VTR_ASSERT_LEVEL=3 GNU 13.3.0 on Linux-6.8.0-57-generic x86_64 2025-04-21T16:53:01 srivatsan-Precision-Tower-5810 /home/alex/vtr-verilog-to-routing 108360 10 10 2659 20 0 1312 309 22 22 484 -1 mcnc_large -1 -1 30891 24822 37893 7171 26674 4048 105.8 MiB 9.23 0.02 9.04847 6.65923 -63.8387 -6.65923 nan 0.16 0.00660438 0.00519941 0.309592 0.257376 105.8 MiB 9.23 105.8 MiB 4.50 37153 28.3178 9567 7.29192 8219 52828 2194741 285748 2.15576e+07 1.55754e+07 3.51389e+06 7260.09 18 64568 594370 -1 7.35737 nan -66.9799 -7.35737 0 0 1.18 -1 -1 105.8 MiB 0.93 0.709043 0.615207 105.8 MiB -1 0.16 - k6_frac_N10_40nm.xml seq.pre-vpr.blif common 4.73 vpr 76.79 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 84 41 -1 -1 success v8.0.0-12490-ge99a5ee8c release VTR_ASSERT_LEVEL=3 GNU 13.3.0 on Linux-6.8.0-57-generic x86_64 2025-04-21T16:53:01 srivatsan-Precision-Tower-5810 /home/alex/vtr-verilog-to-routing 78628 41 35 1006 76 0 573 160 16 16 256 -1 mcnc_medium -1 -1 7311 6476 7538 345 3855 3338 76.8 MiB 3.59 0.01 5.73065 5.08486 -143.975 -5.08486 nan 0.09 0.0040653 0.00347069 0.103188 0.0899686 76.8 MiB 3.59 76.8 MiB 2.31 10018 17.4834 2728 4.76091 4171 21468 688416 120931 1.05632e+07 4.5271e+06 1.26944e+06 4958.75 18 28900 206586 -1 5.29306 nan -148.307 -5.29306 0 0 0.37 -1 -1 76.8 MiB 0.47 0.321818 0.287107 76.8 MiB -1 0.09 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time 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 +k6_frac_N10_40nm.xml apex4.pre-vpr.blif common 1.98 vpr 73.70 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 82 9 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 75472 9 19 897 28 0 562 110 16 16 256 -1 mcnc_medium -1 -1 7063 6058 5107 505 3249 1353 73.7 MiB 1.50 0.00 5.86674 5.06655 -84.1154 -5.06655 nan 0.04 0.00129454 0.00112381 0.0398145 0.0363439 73.7 MiB 1.50 73.7 MiB 1.00 9718 17.3226 2608 4.64884 4802 24486 815662 139279 1.05632e+07 4.41931e+06 1.26944e+06 4958.75 19 28900 206586 -1 5.26809 nan -87.1269 -5.26809 0 0 0.11 -1 -1 73.7 MiB 0.20 0.127617 0.117429 73.7 MiB -1 0.04 +k6_frac_N10_40nm.xml des.pre-vpr.blif common 0.84 vpr 74.26 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 56 256 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 76044 256 245 954 501 0 584 557 22 22 484 -1 mcnc_large -1 -1 7547 7526 18877 167 2072 16638 74.3 MiB 0.45 0.01 5.52179 4.16523 -782.008 -4.16523 nan 0.05 0.00188121 0.00176936 0.0256359 0.0244673 74.3 MiB 0.45 74.3 MiB 0.31 10323 17.6764 2836 4.85616 2378 5665 320238 68793 2.15576e+07 3.01806e+06 1.49107e+06 3080.73 15 47664 245996 -1 4.41619 nan -842.585 -4.41619 0 0 0.13 -1 -1 74.3 MiB 0.13 0.105433 0.100554 74.3 MiB -1 0.05 +k6_frac_N10_40nm.xml ex1010.pre-vpr.blif common 7.07 vpr 103.68 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 288 10 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 106172 10 10 2659 20 0 1335 308 22 22 484 -1 mcnc_large -1 -1 29594 25215 39790 8187 27516 4087 103.7 MiB 5.65 0.01 8.26681 6.54748 -64.031 -6.54748 nan 0.11 0.00399056 0.00320166 0.20162 0.170474 103.7 MiB 5.65 103.7 MiB 3.13 37789 28.3064 9714 7.27640 8647 53317 2224368 295725 2.15576e+07 1.55215e+07 3.51389e+06 7260.09 18 64568 594370 -1 6.75359 nan -65.2231 -6.75359 0 0 0.36 -1 -1 103.7 MiB 0.62 0.486586 0.43074 103.7 MiB -1 0.11 +k6_frac_N10_40nm.xml seq.pre-vpr.blif common 1.94 vpr 74.89 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 84 41 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 76684 41 35 1006 76 0 588 160 16 16 256 -1 mcnc_medium -1 -1 7718 6599 7104 383 3537 3184 74.9 MiB 1.47 0.00 5.60618 5.02988 -143.324 -5.02988 nan 0.04 0.00146693 0.00126108 0.0415462 0.0377108 74.9 MiB 1.47 74.9 MiB 0.93 9956 16.9320 2725 4.63435 4001 20451 637770 113848 1.05632e+07 4.5271e+06 1.26944e+06 4958.75 17 28900 206586 -1 5.3225 nan -147.435 -5.3225 0 0 0.11 -1 -1 74.9 MiB 0.19 0.135186 0.124628 74.9 MiB -1 0.04 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_ap/appack_full_legalizer/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_ap/appack_full_legalizer/config/golden_results.txt index 91c3630a8a8..76465232886 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_ap/appack_full_legalizer/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_ap/appack_full_legalizer/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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time 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 - k6_frac_N10_40nm.xml apex4.pre-vpr.blif common 4.88 vpr 75.36 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 83 9 -1 -1 success v8.0.0-12490-ge99a5ee8c release VTR_ASSERT_LEVEL=3 GNU 13.3.0 on Linux-6.8.0-57-generic x86_64 2025-04-21T16:53:01 srivatsan-Precision-Tower-5810 /home/alex/vtr-verilog-to-routing 77168 9 19 897 28 0 565 111 16 16 256 -1 mcnc_medium -1 -1 6985 6104 4899 468 3178 1253 75.4 MiB 3.73 0.01 5.45737 4.88762 -81.315 -4.88762 nan 0.09 0.00371221 0.00305644 0.097355 0.0840965 75.4 MiB 3.73 75.4 MiB 2.65 9609 17.0372 2580 4.57447 4604 23759 790399 131608 1.05632e+07 4.4732e+06 1.26944e+06 4958.75 18 28900 206586 -1 5.07748 nan -84.5559 -5.07748 0 0 0.34 -1 -1 75.4 MiB 0.50 0.299102 0.265267 75.4 MiB -1 0.09 - k6_frac_N10_40nm.xml des.pre-vpr.blif common 2.04 vpr 75.95 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 58 256 -1 -1 success v8.0.0-12490-ge99a5ee8c release VTR_ASSERT_LEVEL=3 GNU 13.3.0 on Linux-6.8.0-57-generic x86_64 2025-04-21T16:53:01 srivatsan-Precision-Tower-5810 /home/alex/vtr-verilog-to-routing 77776 256 245 954 501 0 584 559 22 22 484 -1 mcnc_large -1 -1 7428 7369 18967 157 2360 16450 76.0 MiB 1.04 0.02 4.87092 4.07054 -789.645 -4.07054 nan 0.13 0.00356373 0.00322411 0.0543939 0.0472155 76.0 MiB 1.04 76.0 MiB 0.69 10168 17.4110 2803 4.79966 2303 5353 301769 65803 2.15576e+07 3.12585e+06 1.49107e+06 3080.73 13 47664 245996 -1 4.58117 nan -866.844 -4.58117 0 0 0.39 -1 -1 76.0 MiB 0.32 0.22263 0.205375 76.0 MiB -1 0.13 - k6_frac_N10_40nm.xml ex1010.pre-vpr.blif common 14.50 vpr 105.74 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 289 10 -1 -1 success v8.0.0-12490-ge99a5ee8c release VTR_ASSERT_LEVEL=3 GNU 13.3.0 on Linux-6.8.0-57-generic x86_64 2025-04-21T16:53:01 srivatsan-Precision-Tower-5810 /home/alex/vtr-verilog-to-routing 108280 10 10 2659 20 0 1312 309 22 22 484 -1 mcnc_large -1 -1 30891 24822 37893 7171 26674 4048 105.7 MiB 11.89 0.02 9.04847 6.65923 -63.8387 -6.65923 nan 0.16 0.0066784 0.00535245 0.30231 0.252682 105.7 MiB 11.89 105.7 MiB 7.07 37153 28.3178 9567 7.29192 8219 52828 2194741 285748 2.15576e+07 1.55754e+07 3.51389e+06 7260.09 18 64568 594370 -1 7.35737 nan -66.9799 -7.35737 0 0 1.11 -1 -1 105.7 MiB 0.94 0.707357 0.615217 105.7 MiB -1 0.16 - k6_frac_N10_40nm.xml seq.pre-vpr.blif common 4.83 vpr 76.43 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 84 41 -1 -1 success v8.0.0-12490-ge99a5ee8c release VTR_ASSERT_LEVEL=3 GNU 13.3.0 on Linux-6.8.0-57-generic x86_64 2025-04-21T16:53:01 srivatsan-Precision-Tower-5810 /home/alex/vtr-verilog-to-routing 78264 41 35 1006 76 0 573 160 16 16 256 -1 mcnc_medium -1 -1 7311 6476 7538 345 3855 3338 76.4 MiB 3.68 0.01 5.73065 5.08486 -143.975 -5.08486 nan 0.11 0.00384755 0.00327555 0.103123 0.0900634 76.4 MiB 3.68 76.4 MiB 2.39 10018 17.4834 2728 4.76091 4171 21468 688416 120931 1.05632e+07 4.5271e+06 1.26944e+06 4958.75 18 28900 206586 -1 5.29306 nan -148.307 -5.29306 0 0 0.35 -1 -1 76.4 MiB 0.48 0.323332 0.288275 76.4 MiB -1 0.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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time 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 +k6_frac_N10_40nm.xml apex4.pre-vpr.blif common 1.97 vpr 73.36 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 82 9 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 75120 9 19 897 28 0 562 110 16 16 256 -1 mcnc_medium -1 -1 7063 6058 5107 505 3249 1353 73.4 MiB 1.50 0.00 5.86674 5.06655 -84.1154 -5.06655 nan 0.04 0.00131792 0.00114251 0.0400779 0.0365448 73.4 MiB 1.50 73.4 MiB 0.99 9718 17.3226 2608 4.64884 4802 24486 815662 139279 1.05632e+07 4.41931e+06 1.26944e+06 4958.75 19 28900 206586 -1 5.26809 nan -87.1269 -5.26809 0 0 0.11 -1 -1 73.4 MiB 0.20 0.127955 0.117552 73.4 MiB -1 0.04 +k6_frac_N10_40nm.xml des.pre-vpr.blif common 0.84 vpr 73.95 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 56 256 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 75720 256 245 954 501 0 584 557 22 22 484 -1 mcnc_large -1 -1 7547 7526 18877 167 2072 16638 73.9 MiB 0.45 0.01 5.52179 4.16523 -782.008 -4.16523 nan 0.05 0.00182847 0.00171986 0.0251787 0.0240126 73.9 MiB 0.45 73.9 MiB 0.31 10323 17.6764 2836 4.85616 2378 5665 320238 68793 2.15576e+07 3.01806e+06 1.49107e+06 3080.73 15 47664 245996 -1 4.41619 nan -842.585 -4.41619 0 0 0.13 -1 -1 73.9 MiB 0.13 0.107099 0.101914 73.9 MiB -1 0.05 +k6_frac_N10_40nm.xml ex1010.pre-vpr.blif common 6.93 vpr 103.80 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 288 10 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 106292 10 10 2659 20 0 1335 308 22 22 484 -1 mcnc_large -1 -1 29594 25215 39790 8187 27516 4087 103.8 MiB 5.52 0.01 8.26681 6.54748 -64.031 -6.54748 nan 0.11 0.00402634 0.00322812 0.200547 0.169453 103.8 MiB 5.52 103.8 MiB 3.00 37789 28.3064 9714 7.27640 8647 53317 2224368 295725 2.15576e+07 1.55215e+07 3.51389e+06 7260.09 18 64568 594370 -1 6.75359 nan -65.2231 -6.75359 0 0 0.36 -1 -1 103.8 MiB 0.62 0.485669 0.429563 103.8 MiB -1 0.11 +k6_frac_N10_40nm.xml seq.pre-vpr.blif common 1.99 vpr 75.20 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 84 41 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 77004 41 35 1006 76 0 588 160 16 16 256 -1 mcnc_medium -1 -1 7718 6599 7104 383 3537 3184 75.2 MiB 1.48 0.00 5.60618 5.02988 -143.324 -5.02988 nan 0.04 0.00153795 0.00132852 0.0472318 0.0431113 75.2 MiB 1.48 75.2 MiB 0.93 9956 16.9320 2725 4.63435 4001 20451 637770 113848 1.05632e+07 4.5271e+06 1.26944e+06 4958.75 17 28900 206586 -1 5.3225 nan -147.435 -5.3225 0 0 0.11 -1 -1 75.2 MiB 0.20 0.147085 0.135687 75.2 MiB -1 0.04 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_ap/bipartitioning_partial_legalizer/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_ap/bipartitioning_partial_legalizer/config/golden_results.txt index e03594be3ed..3917cf290cc 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_ap/bipartitioning_partial_legalizer/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_ap/bipartitioning_partial_legalizer/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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time 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 - k6_frac_N10_40nm.xml apex4.pre-vpr.blif common 4.66 vpr 75.36 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 83 9 -1 -1 success v8.0.0-12490-ge99a5ee8c release VTR_ASSERT_LEVEL=3 GNU 13.3.0 on Linux-6.8.0-57-generic x86_64 2025-04-21T16:53:01 srivatsan-Precision-Tower-5810 /home/alex/vtr-verilog-to-routing 77168 9 19 897 28 0 565 111 16 16 256 -1 mcnc_medium -1 -1 6985 6104 4899 468 3178 1253 75.4 MiB 3.54 0.01 5.45737 4.88762 -81.315 -4.88762 nan 0.09 0.00377685 0.0031064 0.0971738 0.0840095 75.4 MiB 3.54 75.4 MiB 2.44 9609 17.0372 2580 4.57447 4604 23759 790399 131608 1.05632e+07 4.4732e+06 1.26944e+06 4958.75 18 28900 206586 -1 5.07748 nan -84.5559 -5.07748 0 0 0.35 -1 -1 75.4 MiB 0.49 0.299893 0.266532 75.4 MiB -1 0.09 - k6_frac_N10_40nm.xml des.pre-vpr.blif common 1.87 vpr 76.21 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 58 256 -1 -1 success v8.0.0-12490-ge99a5ee8c release VTR_ASSERT_LEVEL=3 GNU 13.3.0 on Linux-6.8.0-57-generic x86_64 2025-04-21T16:53:01 srivatsan-Precision-Tower-5810 /home/alex/vtr-verilog-to-routing 78040 256 245 954 501 0 584 559 22 22 484 -1 mcnc_large -1 -1 7428 7369 18967 157 2360 16450 76.2 MiB 0.95 0.02 4.87092 4.07054 -789.645 -4.07054 nan 0.12 0.00361228 0.00324116 0.0472811 0.0432415 76.2 MiB 0.95 76.2 MiB 0.63 10168 17.4110 2803 4.79966 2303 5353 301769 65803 2.15576e+07 3.12585e+06 1.49107e+06 3080.73 13 47664 245996 -1 4.58117 nan -866.844 -4.58117 0 0 0.40 -1 -1 76.2 MiB 0.27 0.192439 0.178374 76.2 MiB -1 0.12 - k6_frac_N10_40nm.xml ex1010.pre-vpr.blif common 15.92 vpr 105.80 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 289 10 -1 -1 success v8.0.0-12490-ge99a5ee8c release VTR_ASSERT_LEVEL=3 GNU 13.3.0 on Linux-6.8.0-57-generic x86_64 2025-04-21T16:53:01 srivatsan-Precision-Tower-5810 /home/alex/vtr-verilog-to-routing 108344 10 10 2659 20 0 1312 309 22 22 484 -1 mcnc_large -1 -1 30891 24822 37893 7171 26674 4048 105.8 MiB 13.27 0.02 9.04847 6.65923 -63.8387 -6.65923 nan 0.27 0.0064285 0.00513075 0.474187 0.399734 105.8 MiB 13.27 105.8 MiB 7.54 37153 28.3178 9567 7.29192 8219 52828 2194741 285748 2.15576e+07 1.55754e+07 3.51389e+06 7260.09 18 64568 594370 -1 7.35737 nan -66.9799 -7.35737 0 0 1.15 -1 -1 105.8 MiB 0.91 0.870133 0.753188 105.8 MiB -1 0.27 - k6_frac_N10_40nm.xml seq.pre-vpr.blif common 4.70 vpr 76.73 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 84 41 -1 -1 success v8.0.0-12490-ge99a5ee8c release VTR_ASSERT_LEVEL=3 GNU 13.3.0 on Linux-6.8.0-57-generic x86_64 2025-04-21T16:53:01 srivatsan-Precision-Tower-5810 /home/alex/vtr-verilog-to-routing 78576 41 35 1006 76 0 573 160 16 16 256 -1 mcnc_medium -1 -1 7311 6476 7538 345 3855 3338 76.7 MiB 3.57 0.01 5.73065 5.08486 -143.975 -5.08486 nan 0.10 0.00387961 0.00328771 0.108944 0.0952913 76.7 MiB 3.57 76.7 MiB 2.29 10018 17.4834 2728 4.76091 4171 21468 688416 120931 1.05632e+07 4.5271e+06 1.26944e+06 4958.75 18 28900 206586 -1 5.29306 nan -148.307 -5.29306 0 0 0.32 -1 -1 76.7 MiB 0.51 0.337895 0.301103 76.7 MiB -1 0.10 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time 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 +k6_frac_N10_40nm.xml apex4.pre-vpr.blif common 1.96 vpr 73.72 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 82 9 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 75492 9 19 897 28 0 562 110 16 16 256 -1 mcnc_medium -1 -1 7063 6058 5107 505 3249 1353 73.7 MiB 1.48 0.00 5.86674 5.06655 -84.1154 -5.06655 nan 0.04 0.00133012 0.00115567 0.0399995 0.0365239 73.7 MiB 1.48 73.7 MiB 0.98 9718 17.3226 2608 4.64884 4802 24486 815662 139279 1.05632e+07 4.41931e+06 1.26944e+06 4958.75 19 28900 206586 -1 5.26809 nan -87.1269 -5.26809 0 0 0.11 -1 -1 73.7 MiB 0.20 0.127012 0.116845 73.7 MiB -1 0.04 +k6_frac_N10_40nm.xml des.pre-vpr.blif common 0.84 vpr 74.27 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 56 256 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 76048 256 245 954 501 0 584 557 22 22 484 -1 mcnc_large -1 -1 7547 7526 18877 167 2072 16638 74.3 MiB 0.45 0.01 5.52179 4.16523 -782.008 -4.16523 nan 0.05 0.00182176 0.00171274 0.0250514 0.0238946 74.3 MiB 0.45 74.3 MiB 0.31 10323 17.6764 2836 4.85616 2378 5665 320238 68793 2.15576e+07 3.01806e+06 1.49107e+06 3080.73 15 47664 245996 -1 4.41619 nan -842.585 -4.41619 0 0 0.13 -1 -1 74.3 MiB 0.13 0.104201 0.0993829 74.3 MiB -1 0.05 +k6_frac_N10_40nm.xml ex1010.pre-vpr.blif common 6.92 vpr 103.52 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 288 10 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 106000 10 10 2659 20 0 1335 308 22 22 484 -1 mcnc_large -1 -1 29594 25215 39790 8187 27516 4087 103.5 MiB 5.51 0.01 8.26681 6.54748 -64.031 -6.54748 nan 0.11 0.00398133 0.00318465 0.201687 0.170276 103.5 MiB 5.51 103.5 MiB 2.97 37789 28.3064 9714 7.27640 8647 53317 2224368 295725 2.15576e+07 1.55215e+07 3.51389e+06 7260.09 18 64568 594370 -1 6.75359 nan -65.2231 -6.75359 0 0 0.36 -1 -1 103.5 MiB 0.63 0.489118 0.432801 103.5 MiB -1 0.11 +k6_frac_N10_40nm.xml seq.pre-vpr.blif common 1.93 vpr 75.02 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 84 41 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 76824 41 35 1006 76 0 588 160 16 16 256 -1 mcnc_medium -1 -1 7718 6599 7104 383 3537 3184 75.0 MiB 1.46 0.00 5.60618 5.02988 -143.324 -5.02988 nan 0.04 0.00146279 0.00126181 0.0412226 0.0375036 75.0 MiB 1.46 75.0 MiB 0.92 9956 16.9320 2725 4.63435 4001 20451 637770 113848 1.05632e+07 4.5271e+06 1.26944e+06 4958.75 17 28900 206586 -1 5.3225 nan -147.435 -5.3225 0 0 0.11 -1 -1 75.0 MiB 0.18 0.130876 0.120888 75.0 MiB -1 0.04 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_ap/flowbased_partial_legalizer/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_ap/flowbased_partial_legalizer/config/golden_results.txt index 260e0e2c056..3759478d8c9 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_ap/flowbased_partial_legalizer/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_ap/flowbased_partial_legalizer/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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time 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 - k6_frac_N10_40nm.xml apex4.pre-vpr.blif common 11.76 vpr 75.41 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 81 9 -1 -1 success v8.0.0-12490-ge99a5ee8c release VTR_ASSERT_LEVEL=3 GNU 13.3.0 on Linux-6.8.0-57-generic x86_64 2025-04-21T16:53:01 srivatsan-Precision-Tower-5810 /home/alex/vtr-verilog-to-routing 77216 9 19 897 28 0 575 109 16 16 256 -1 mcnc_medium -1 -1 7102 6246 3749 356 2360 1033 75.4 MiB 10.60 0.01 5.59875 5.15754 -83.6777 -5.15754 nan 0.09 0.00367809 0.00303729 0.0800582 0.0701494 75.4 MiB 10.60 75.4 MiB 2.58 9765 17.0122 2613 4.55226 4147 20677 658214 114215 1.05632e+07 4.36541e+06 1.26944e+06 4958.75 18 28900 206586 -1 5.35541 nan -88.358 -5.35541 0 0 0.32 -1 -1 75.4 MiB 0.48 0.288075 0.253539 75.4 MiB -1 0.09 - k6_frac_N10_40nm.xml des.pre-vpr.blif common 1.95 vpr 76.07 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 57 256 -1 -1 success v8.0.0-12490-ge99a5ee8c release VTR_ASSERT_LEVEL=3 GNU 13.3.0 on Linux-6.8.0-57-generic x86_64 2025-04-21T16:53:01 srivatsan-Precision-Tower-5810 /home/alex/vtr-verilog-to-routing 77892 256 245 954 501 0 585 558 22 22 484 -1 mcnc_large -1 -1 7568 7468 23518 202 3225 20091 76.1 MiB 1.06 0.02 4.58215 4.06321 -789.076 -4.06321 nan 0.17 0.00395794 0.00352194 0.0546633 0.0494666 76.1 MiB 1.06 76.1 MiB 0.64 10448 17.8598 2871 4.90769 2610 5820 337031 73978 2.15576e+07 3.07196e+06 1.49107e+06 3080.73 15 47664 245996 -1 4.29926 nan -860.162 -4.29926 0 0 0.37 -1 -1 76.1 MiB 0.29 0.21912 0.199431 76.1 MiB -1 0.17 - k6_frac_N10_40nm.xml ex1010.pre-vpr.blif common 34.79 vpr 105.75 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 284 10 -1 -1 success v8.0.0-12490-ge99a5ee8c release VTR_ASSERT_LEVEL=3 GNU 13.3.0 on Linux-6.8.0-57-generic x86_64 2025-04-21T16:53:01 srivatsan-Precision-Tower-5810 /home/alex/vtr-verilog-to-routing 108284 10 10 2659 20 0 1371 304 22 22 484 -1 mcnc_large -1 -1 32736 26176 50333 12484 33100 4749 105.7 MiB 32.12 0.02 8.62387 6.83404 -65.9282 -6.83404 nan 0.15 0.0053571 0.00415525 0.333874 0.272699 105.7 MiB 32.12 105.7 MiB 4.39 39078 28.5033 10004 7.29686 9032 54400 2294214 310826 2.15576e+07 1.53059e+07 3.51389e+06 7260.09 18 64568 594370 -1 7.03175 nan -67.1956 -7.03175 0 0 1.19 -1 -1 105.7 MiB 0.86 0.709263 0.607527 105.7 MiB -1 0.15 - k6_frac_N10_40nm.xml seq.pre-vpr.blif common 12.51 vpr 76.27 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 85 41 -1 -1 success v8.0.0-12490-ge99a5ee8c release VTR_ASSERT_LEVEL=3 GNU 13.3.0 on Linux-6.8.0-57-generic x86_64 2025-04-21T16:53:01 srivatsan-Precision-Tower-5810 /home/alex/vtr-verilog-to-routing 78100 41 35 1006 76 0 566 161 16 16 256 -1 mcnc_medium -1 -1 7257 6649 5842 273 2922 2647 76.3 MiB 11.37 0.02 5.58018 4.9431 -137.944 -4.9431 nan 0.09 0.00696141 0.00638215 0.115593 0.094552 76.3 MiB 11.37 76.3 MiB 2.39 10043 17.7438 2739 4.83922 3885 20440 636556 113525 1.05632e+07 4.58099e+06 1.26944e+06 4958.75 17 28900 206586 -1 5.06598 nan -144.027 -5.06598 0 0 0.35 -1 -1 76.3 MiB 0.47 0.340764 0.297617 76.3 MiB -1 0.09 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time 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 +k6_frac_N10_40nm.xml apex4.pre-vpr.blif common 4.47 vpr 72.90 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 81 9 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 74648 9 19 897 28 0 573 109 16 16 256 -1 mcnc_medium -1 -1 6908 6255 4529 398 2936 1195 72.9 MiB 3.99 0.00 5.79498 4.95412 -82.8956 -4.95412 nan 0.04 0.00131961 0.00114781 0.0384284 0.0351556 72.9 MiB 3.99 72.9 MiB 0.98 9742 17.0315 2618 4.57692 4440 22553 733607 128435 1.05632e+07 4.36541e+06 1.26944e+06 4958.75 20 28900 206586 -1 5.29908 nan -85.521 -5.29908 0 0 0.11 -1 -1 72.9 MiB 0.20 0.12869 0.118081 72.9 MiB -1 0.04 +k6_frac_N10_40nm.xml des.pre-vpr.blif common 0.82 vpr 74.07 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 56 256 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 75844 256 245 954 501 0 584 557 22 22 484 -1 mcnc_large -1 -1 7554 7460 5137 56 892 4189 74.1 MiB 0.43 0.01 5.01539 4.43785 -787.81 -4.43785 nan 0.05 0.00191044 0.00178051 0.0139785 0.0135099 74.1 MiB 0.43 74.1 MiB 0.31 10209 17.4812 2812 4.81507 2325 5207 293343 64225 2.15576e+07 3.01806e+06 1.49107e+06 3080.73 16 47664 245996 -1 4.5769 nan -866.798 -4.5769 0 0 0.13 -1 -1 74.1 MiB 0.13 0.0965434 0.0922593 74.1 MiB -1 0.05 +k6_frac_N10_40nm.xml ex1010.pre-vpr.blif common 17.00 vpr 103.79 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 281 10 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 106276 10 10 2659 20 0 1385 301 22 22 484 -1 mcnc_large -1 -1 32437 26329 47677 11320 31685 4672 103.8 MiB 15.55 0.01 7.86298 6.97012 -66.6328 -6.97012 nan 0.11 0.00394585 0.0031393 0.234275 0.197015 103.8 MiB 15.55 103.8 MiB 3.13 39327 28.3949 10114 7.30253 9446 56175 2430685 325649 2.15576e+07 1.51442e+07 3.51389e+06 7260.09 18 64568 594370 -1 7.25735 nan -68.7995 -7.25735 0 0 0.36 -1 -1 103.8 MiB 0.66 0.518833 0.45621 103.8 MiB -1 0.11 +k6_frac_N10_40nm.xml seq.pre-vpr.blif common 4.58 vpr 74.77 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 85 41 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 76560 41 35 1006 76 0 564 161 16 16 256 -1 mcnc_medium -1 -1 7552 6671 7590 431 3792 3367 74.8 MiB 4.11 0.00 5.51469 5.01871 -140.744 -5.01871 nan 0.04 0.00145908 0.00126433 0.0433791 0.0394286 74.8 MiB 4.11 74.8 MiB 0.92 10043 17.8067 2733 4.84574 3791 19758 636928 113707 1.05632e+07 4.58099e+06 1.26944e+06 4958.75 17 28900 206586 -1 5.42495 nan -150.307 -5.42495 0 0 0.11 -1 -1 74.8 MiB 0.18 0.135187 0.124838 74.8 MiB -1 0.04 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_ap/lp_b2b_analytical_solver/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_ap/lp_b2b_analytical_solver/config/golden_results.txt index e9dd4dbf472..595d1c891b5 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_ap/lp_b2b_analytical_solver/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_ap/lp_b2b_analytical_solver/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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time 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 - k6_frac_N10_40nm.xml apex4.pre-vpr.blif common 4.77 vpr 75.73 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 83 9 -1 -1 success v8.0.0-12490-ge99a5ee8c release VTR_ASSERT_LEVEL=3 GNU 13.3.0 on Linux-6.8.0-57-generic x86_64 2025-04-21T16:53:01 srivatsan-Precision-Tower-5810 /home/alex/vtr-verilog-to-routing 77552 9 19 897 28 0 565 111 16 16 256 -1 mcnc_medium -1 -1 6985 6104 4899 468 3178 1253 75.7 MiB 3.65 0.01 5.45737 4.88762 -81.315 -4.88762 nan 0.09 0.00374471 0.00311178 0.0942637 0.0815881 75.7 MiB 3.65 75.7 MiB 2.54 9609 17.0372 2580 4.57447 4604 23759 790399 131608 1.05632e+07 4.4732e+06 1.26944e+06 4958.75 18 28900 206586 -1 5.07748 nan -84.5559 -5.07748 0 0 0.34 -1 -1 75.7 MiB 0.49 0.296978 0.264335 75.7 MiB -1 0.09 - k6_frac_N10_40nm.xml des.pre-vpr.blif common 1.88 vpr 76.21 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 58 256 -1 -1 success v8.0.0-12490-ge99a5ee8c release VTR_ASSERT_LEVEL=3 GNU 13.3.0 on Linux-6.8.0-57-generic x86_64 2025-04-21T16:53:01 srivatsan-Precision-Tower-5810 /home/alex/vtr-verilog-to-routing 78040 256 245 954 501 0 584 559 22 22 484 -1 mcnc_large -1 -1 7428 7369 18967 157 2360 16450 76.2 MiB 0.98 0.02 4.87092 4.07054 -789.645 -4.07054 nan 0.14 0.0035648 0.00318679 0.0499558 0.0460383 76.2 MiB 0.98 76.2 MiB 0.63 10168 17.4110 2803 4.79966 2303 5353 301769 65803 2.15576e+07 3.12585e+06 1.49107e+06 3080.73 13 47664 245996 -1 4.58117 nan -866.844 -4.58117 0 0 0.38 -1 -1 76.2 MiB 0.27 0.197871 0.183716 76.2 MiB -1 0.14 - k6_frac_N10_40nm.xml ex1010.pre-vpr.blif common 16.47 vpr 105.51 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 289 10 -1 -1 success v8.0.0-12490-ge99a5ee8c release VTR_ASSERT_LEVEL=3 GNU 13.3.0 on Linux-6.8.0-57-generic x86_64 2025-04-21T16:53:01 srivatsan-Precision-Tower-5810 /home/alex/vtr-verilog-to-routing 108040 10 10 2659 20 0 1312 309 22 22 484 -1 mcnc_large -1 -1 30891 24822 37893 7171 26674 4048 105.5 MiB 12.86 0.04 9.04847 6.65923 -63.8387 -6.65923 nan 0.29 0.0116739 0.00965721 0.534688 0.455619 105.5 MiB 12.86 105.5 MiB 7.17 37153 28.3178 9567 7.29192 8219 52828 2194741 285748 2.15576e+07 1.55754e+07 3.51389e+06 7260.09 18 64568 594370 -1 7.35737 nan -66.9799 -7.35737 0 0 1.12 -1 -1 105.5 MiB 1.62 1.25142 1.10117 105.5 MiB -1 0.28 - k6_frac_N10_40nm.xml seq.pre-vpr.blif common 4.88 vpr 76.80 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 84 41 -1 -1 success v8.0.0-12490-ge99a5ee8c release VTR_ASSERT_LEVEL=3 GNU 13.3.0 on Linux-6.8.0-57-generic x86_64 2025-04-21T16:53:01 srivatsan-Precision-Tower-5810 /home/alex/vtr-verilog-to-routing 78644 41 35 1006 76 0 573 160 16 16 256 -1 mcnc_medium -1 -1 7311 6476 7538 345 3855 3338 76.8 MiB 3.64 0.01 5.73065 5.08486 -143.975 -5.08486 nan 0.10 0.00418085 0.00352692 0.113479 0.0974767 76.8 MiB 3.64 76.8 MiB 2.34 10018 17.4834 2728 4.76091 4171 21468 688416 120931 1.05632e+07 4.5271e+06 1.26944e+06 4958.75 18 28900 206586 -1 5.29306 nan -148.307 -5.29306 0 0 0.35 -1 -1 76.8 MiB 0.56 0.365085 0.323172 76.8 MiB -1 0.10 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time 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 +k6_frac_N10_40nm.xml apex4.pre-vpr.blif common 1.97 vpr 74.09 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 82 9 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 75872 9 19 897 28 0 562 110 16 16 256 -1 mcnc_medium -1 -1 7063 6058 5107 505 3249 1353 74.1 MiB 1.50 0.00 5.86674 5.06655 -84.1154 -5.06655 nan 0.04 0.00130604 0.00113413 0.0402888 0.0368028 74.1 MiB 1.50 74.1 MiB 1.00 9718 17.3226 2608 4.64884 4802 24486 815662 139279 1.05632e+07 4.41931e+06 1.26944e+06 4958.75 19 28900 206586 -1 5.26809 nan -87.1269 -5.26809 0 0 0.11 -1 -1 74.1 MiB 0.20 0.127636 0.117479 74.1 MiB -1 0.04 +k6_frac_N10_40nm.xml des.pre-vpr.blif common 0.84 vpr 74.64 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 56 256 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 76432 256 245 954 501 0 584 557 22 22 484 -1 mcnc_large -1 -1 7547 7526 18877 167 2072 16638 74.6 MiB 0.45 0.01 5.52179 4.16523 -782.008 -4.16523 nan 0.05 0.00183319 0.00172495 0.025168 0.0240182 74.6 MiB 0.45 74.6 MiB 0.31 10323 17.6764 2836 4.85616 2378 5665 320238 68793 2.15576e+07 3.01806e+06 1.49107e+06 3080.73 15 47664 245996 -1 4.41619 nan -842.585 -4.41619 0 0 0.13 -1 -1 74.6 MiB 0.13 0.104876 0.100044 74.6 MiB -1 0.05 +k6_frac_N10_40nm.xml ex1010.pre-vpr.blif common 6.98 vpr 103.74 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 288 10 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 106232 10 10 2659 20 0 1335 308 22 22 484 -1 mcnc_large -1 -1 29594 25215 39790 8187 27516 4087 103.7 MiB 5.57 0.01 8.26681 6.54748 -64.031 -6.54748 nan 0.11 0.00463595 0.00382536 0.20651 0.174564 103.7 MiB 5.57 103.7 MiB 3.01 37789 28.3064 9714 7.27640 8647 53317 2224368 295725 2.15576e+07 1.55215e+07 3.51389e+06 7260.09 18 64568 594370 -1 6.75359 nan -65.2231 -6.75359 0 0 0.36 -1 -1 103.7 MiB 0.62 0.493598 0.436694 103.7 MiB -1 0.11 +k6_frac_N10_40nm.xml seq.pre-vpr.blif common 1.96 vpr 74.89 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 84 41 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 76684 41 35 1006 76 0 588 160 16 16 256 -1 mcnc_medium -1 -1 7718 6599 7104 383 3537 3184 74.9 MiB 1.49 0.00 5.60618 5.02988 -143.324 -5.02988 nan 0.04 0.00152566 0.00131828 0.0432798 0.0392071 74.9 MiB 1.49 74.9 MiB 0.93 9956 16.9320 2725 4.63435 4001 20451 637770 113848 1.05632e+07 4.5271e+06 1.26944e+06 4958.75 17 28900 206586 -1 5.3225 nan -147.435 -5.3225 0 0 0.11 -1 -1 74.9 MiB 0.18 0.133178 0.122788 74.9 MiB -1 0.04 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_ap/mcnc/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_ap/mcnc/config/golden_results.txt index c179a99eb71..71bbbe6525b 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_ap/mcnc/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_ap/mcnc/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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time 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 - k6_frac_N10_40nm.xml apex4.pre-vpr.blif common 5.02 vpr 75.58 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 83 9 -1 -1 success v8.0.0-12490-ge99a5ee8c release VTR_ASSERT_LEVEL=3 GNU 13.3.0 on Linux-6.8.0-57-generic x86_64 2025-04-21T16:53:01 srivatsan-Precision-Tower-5810 /home/alex/vtr-verilog-to-routing 77392 9 19 897 28 0 565 111 16 16 256 -1 mcnc_medium -1 -1 6985 6104 4899 468 3178 1253 75.6 MiB 3.80 0.01 5.45737 4.88762 -81.315 -4.88762 nan 0.10 0.00366255 0.00300248 0.0988722 0.0856346 75.6 MiB 3.80 75.6 MiB 2.67 9609 17.0372 2580 4.57447 4604 23759 790399 131608 1.05632e+07 4.4732e+06 1.26944e+06 4958.75 18 28900 206586 -1 5.07748 nan -84.5559 -5.07748 0 0 0.33 -1 -1 75.6 MiB 0.58 0.329873 0.296269 75.6 MiB -1 0.10 - k6_frac_N10_40nm.xml des.pre-vpr.blif common 1.88 vpr 76.08 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 58 256 -1 -1 success v8.0.0-12490-ge99a5ee8c release VTR_ASSERT_LEVEL=3 GNU 13.3.0 on Linux-6.8.0-57-generic x86_64 2025-04-21T16:53:01 srivatsan-Precision-Tower-5810 /home/alex/vtr-verilog-to-routing 77908 256 245 954 501 0 584 559 22 22 484 -1 mcnc_large -1 -1 7428 7369 18967 157 2360 16450 76.1 MiB 0.98 0.02 4.87092 4.07054 -789.645 -4.07054 nan 0.13 0.00361625 0.00323438 0.0481778 0.0440548 76.1 MiB 0.98 76.1 MiB 0.62 10168 17.4110 2803 4.79966 2303 5353 301769 65803 2.15576e+07 3.12585e+06 1.49107e+06 3080.73 13 47664 245996 -1 4.58117 nan -866.844 -4.58117 0 0 0.38 -1 -1 76.1 MiB 0.27 0.193703 0.179342 76.1 MiB -1 0.13 - k6_frac_N10_40nm.xml ex1010.pre-vpr.blif common 16.93 vpr 105.69 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 289 10 -1 -1 success v8.0.0-12490-ge99a5ee8c release VTR_ASSERT_LEVEL=3 GNU 13.3.0 on Linux-6.8.0-57-generic x86_64 2025-04-21T16:53:01 srivatsan-Precision-Tower-5810 /home/alex/vtr-verilog-to-routing 108228 10 10 2659 20 0 1312 309 22 22 484 -1 mcnc_large -1 -1 30891 24822 37893 7171 26674 4048 105.7 MiB 13.43 0.04 9.04847 6.65923 -63.8387 -6.65923 nan 0.25 0.0114469 0.00942196 0.523317 0.437298 105.7 MiB 13.43 105.7 MiB 7.67 37153 28.3178 9567 7.29192 8219 52828 2194741 285748 2.15576e+07 1.55754e+07 3.51389e+06 7260.09 18 64568 594370 -1 7.35737 nan -66.9799 -7.35737 0 0 1.08 -1 -1 105.7 MiB 1.54 1.21056 1.05802 105.7 MiB -1 0.25 - k6_frac_N10_40nm.xml seq.pre-vpr.blif common 4.95 vpr 76.93 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 84 41 -1 -1 success v8.0.0-12490-ge99a5ee8c release VTR_ASSERT_LEVEL=3 GNU 13.3.0 on Linux-6.8.0-57-generic x86_64 2025-04-21T16:53:01 srivatsan-Precision-Tower-5810 /home/alex/vtr-verilog-to-routing 78780 41 35 1006 76 0 573 160 16 16 256 -1 mcnc_medium -1 -1 7311 6476 7538 345 3855 3338 76.9 MiB 3.70 0.01 5.73065 5.08486 -143.975 -5.08486 nan 0.11 0.00501429 0.0044287 0.113755 0.0975648 76.9 MiB 3.70 76.9 MiB 2.39 10018 17.4834 2728 4.76091 4171 21468 688416 120931 1.05632e+07 4.5271e+06 1.26944e+06 4958.75 18 28900 206586 -1 5.29306 nan -148.307 -5.29306 0 0 0.35 -1 -1 76.9 MiB 0.54 0.357802 0.31714 76.9 MiB -1 0.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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time 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 +k6_frac_N10_40nm.xml apex4.pre-vpr.blif common 1.98 vpr 73.66 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 82 9 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 75432 9 19 897 28 0 562 110 16 16 256 -1 mcnc_medium -1 -1 7063 6058 5107 505 3249 1353 73.7 MiB 1.50 0.00 5.86674 5.06655 -84.1154 -5.06655 nan 0.04 0.00133748 0.00116259 0.0408496 0.0373615 73.7 MiB 1.50 73.7 MiB 1.00 9718 17.3226 2608 4.64884 4802 24486 815662 139279 1.05632e+07 4.41931e+06 1.26944e+06 4958.75 19 28900 206586 -1 5.26809 nan -87.1269 -5.26809 0 0 0.11 -1 -1 73.7 MiB 0.20 0.128419 0.118238 73.7 MiB -1 0.04 +k6_frac_N10_40nm.xml des.pre-vpr.blif common 0.91 vpr 74.27 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 56 256 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 76048 256 245 954 501 0 584 557 22 22 484 -1 mcnc_large -1 -1 7547 7526 18877 167 2072 16638 74.3 MiB 0.47 0.01 5.52179 4.16523 -782.008 -4.16523 nan 0.05 0.00308404 0.00296931 0.0300262 0.0287318 74.3 MiB 0.47 74.3 MiB 0.32 10323 17.6764 2836 4.85616 2378 5665 320238 68793 2.15576e+07 3.01806e+06 1.49107e+06 3080.73 15 47664 245996 -1 4.41619 nan -842.585 -4.41619 0 0 0.15 -1 -1 74.3 MiB 0.14 0.119217 0.113274 74.3 MiB -1 0.05 +k6_frac_N10_40nm.xml ex1010.pre-vpr.blif common 6.93 vpr 103.82 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 288 10 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 106308 10 10 2659 20 0 1335 308 22 22 484 -1 mcnc_large -1 -1 29594 25215 39790 8187 27516 4087 103.8 MiB 5.52 0.01 8.26681 6.54748 -64.031 -6.54748 nan 0.11 0.00404456 0.00321972 0.199444 0.168625 103.8 MiB 5.52 103.8 MiB 3.00 37789 28.3064 9714 7.27640 8647 53317 2224368 295725 2.15576e+07 1.55215e+07 3.51389e+06 7260.09 18 64568 594370 -1 6.75359 nan -65.2231 -6.75359 0 0 0.36 -1 -1 103.8 MiB 0.62 0.481167 0.426392 103.8 MiB -1 0.11 +k6_frac_N10_40nm.xml seq.pre-vpr.blif common 1.94 vpr 75.26 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 84 41 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 77068 41 35 1006 76 0 588 160 16 16 256 -1 mcnc_medium -1 -1 7718 6599 7104 383 3537 3184 75.3 MiB 1.47 0.00 5.60618 5.02988 -143.324 -5.02988 nan 0.04 0.00148096 0.00128726 0.0413364 0.0376351 75.3 MiB 1.47 75.3 MiB 0.93 9956 16.9320 2725 4.63435 4001 20451 637770 113848 1.05632e+07 4.5271e+06 1.26944e+06 4958.75 17 28900 206586 -1 5.3225 nan -147.435 -5.3225 0 0 0.11 -1 -1 75.3 MiB 0.18 0.131688 0.121582 75.3 MiB -1 0.04 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_ap/naive_full_legalizer/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_ap/naive_full_legalizer/config/golden_results.txt index 5bcf12189e9..f73f554221f 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_ap/naive_full_legalizer/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_ap/naive_full_legalizer/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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time 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 - k6_frac_N10_40nm.xml apex4.pre-vpr.blif common 5.03 vpr 75.78 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 114 9 -1 -1 success v8.0.0-12490-ge99a5ee8c release VTR_ASSERT_LEVEL=3 GNU 13.3.0 on Linux-6.8.0-57-generic x86_64 2025-04-21T16:53:01 srivatsan-Precision-Tower-5810 /home/alex/vtr-verilog-to-routing 77596 9 19 897 28 0 606 142 16 16 256 -1 mcnc_medium -1 -1 6550 6536 3472 155 2648 669 75.8 MiB 3.88 0.01 5.7154 5.4597 -89.3112 -5.4597 nan 0.10 0.00370216 0.00307222 0.0661479 0.0591146 75.8 MiB 3.88 75.8 MiB 2.88 10481 17.3240 2782 4.59835 4539 23483 740476 125213 1.05632e+07 6.14392e+06 1.26944e+06 4958.75 19 28900 206586 -1 5.72947 nan -94.1462 -5.72947 0 0 0.32 -1 -1 75.8 MiB 0.50 0.310788 0.282654 75.8 MiB -1 0.10 - k6_frac_N10_40nm.xml des.pre-vpr.blif common 3.32 vpr 76.63 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 179 256 -1 -1 success v8.0.0-12490-ge99a5ee8c release VTR_ASSERT_LEVEL=3 GNU 13.3.0 on Linux-6.8.0-57-generic x86_64 2025-04-21T16:53:01 srivatsan-Precision-Tower-5810 /home/alex/vtr-verilog-to-routing 78468 256 245 954 501 0 742 680 22 22 484 -1 mcnc_large -1 -1 9274 7572 60460 2284 20333 37843 76.6 MiB 2.36 0.02 5.23911 4.2903 -840.323 -4.2903 nan 0.13 0.00384619 0.00344153 0.09353 0.0842417 76.6 MiB 2.36 76.6 MiB 1.70 11049 14.8908 3078 4.14825 2733 6987 297544 68761 2.15576e+07 9.64703e+06 1.49107e+06 3080.73 14 47664 245996 -1 4.65189 nan -884.263 -4.65189 0 0 0.41 -1 -1 76.6 MiB 0.28 0.244915 0.224675 76.6 MiB -1 0.13 - k6_frac_N10_40nm.xml ex1010.pre-vpr.blif common 18.12 vpr 106.16 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 362 10 -1 -1 success v8.0.0-12490-ge99a5ee8c release VTR_ASSERT_LEVEL=3 GNU 13.3.0 on Linux-6.8.0-57-generic x86_64 2025-04-21T16:53:01 srivatsan-Precision-Tower-5810 /home/alex/vtr-verilog-to-routing 108712 10 10 2659 20 0 1430 382 22 22 484 -1 mcnc_large -1 -1 30097 26681 50242 8485 37651 4106 106.2 MiB 14.49 0.06 9.5895 7.11784 -67.5602 -7.11784 nan 0.29 0.0120588 0.0101618 0.577448 0.487406 106.2 MiB 14.49 106.2 MiB 8.21 40770 28.5105 10462 7.31608 8938 61030 2640427 332495 2.15576e+07 1.95096e+07 3.51389e+06 7260.09 17 64568 594370 -1 7.68543 nan -70.9452 -7.68543 0 0 1.09 -1 -1 106.2 MiB 1.70 1.23429 1.08029 106.2 MiB -1 0.29 - k6_frac_N10_40nm.xml seq.pre-vpr.blif common 5.65 vpr 76.93 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 124 41 -1 -1 success v8.0.0-12490-ge99a5ee8c release VTR_ASSERT_LEVEL=3 GNU 13.3.0 on Linux-6.8.0-57-generic x86_64 2025-04-21T16:53:01 srivatsan-Precision-Tower-5810 /home/alex/vtr-verilog-to-routing 78780 41 35 1006 76 0 665 200 16 16 256 -1 mcnc_medium -1 -1 8699 7144 11296 577 6471 4248 76.9 MiB 4.33 0.02 6.42009 5.14527 -151.192 -5.14527 nan 0.09 0.0040038 0.00343256 0.111382 0.0964207 76.9 MiB 4.33 76.9 MiB 3.06 11808 17.7564 3134 4.71278 5035 27959 918932 152826 1.05632e+07 6.68286e+06 1.26944e+06 4958.75 20 28900 206586 -1 5.4847 nan -160.203 -5.4847 0 0 0.34 -1 -1 76.9 MiB 0.64 0.362116 0.322037 76.9 MiB -1 0.09 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time 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 +k6_frac_N10_40nm.xml apex4.pre-vpr.blif common 2.31 vpr 73.99 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 119 9 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 75768 9 19 897 28 0 656 147 16 16 256 -1 mcnc_medium -1 -1 9465 7387 7500 653 5233 1614 74.0 MiB 1.83 0.00 6.84375 5.63197 -90.064 -5.63197 nan 0.04 0.00131708 0.00113824 0.0411484 0.0370479 74.0 MiB 1.83 74.0 MiB 1.31 11218 17.1267 2998 4.57710 4710 22969 767847 128278 1.05632e+07 6.41339e+06 1.26944e+06 4958.75 18 28900 206586 -1 6.05963 nan -96.1476 -6.05963 0 0 0.11 -1 -1 74.0 MiB 0.20 0.126178 0.115644 74.0 MiB -1 0.04 +k6_frac_N10_40nm.xml des.pre-vpr.blif common 1.42 vpr 74.60 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 179 256 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 76388 256 245 954 501 0 743 680 22 22 484 -1 mcnc_large -1 -1 9276 7596 60460 2199 20502 37759 74.6 MiB 1.03 0.01 5.23911 4.36438 -841.143 -4.36438 nan 0.05 0.00189527 0.00178544 0.0499427 0.0473007 74.6 MiB 1.03 74.6 MiB 0.79 10985 14.7847 3053 4.10902 2501 6468 260198 59947 2.15576e+07 9.64703e+06 1.49107e+06 3080.73 14 47664 245996 -1 4.95172 nan -902.835 -4.95172 0 0 0.13 -1 -1 74.6 MiB 0.12 0.126567 0.120415 74.6 MiB -1 0.05 +k6_frac_N10_40nm.xml ex1010.pre-vpr.blif common 7.71 vpr 103.92 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 366 10 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 106412 10 10 2659 20 0 1387 386 22 22 484 -1 mcnc_large -1 -1 28407 25969 52334 9214 38970 4150 103.9 MiB 6.23 0.01 8.84225 6.87893 -67.3793 -6.87893 nan 0.11 0.00413268 0.00332707 0.201364 0.170726 103.9 MiB 6.23 103.9 MiB 3.63 40223 29.0000 10345 7.45854 8587 59599 2538983 323136 2.15576e+07 1.97252e+07 3.51389e+06 7260.09 18 64568 594370 -1 7.19431 nan -69.2992 -7.19431 0 0 0.36 -1 -1 103.9 MiB 0.68 0.492176 0.435586 103.9 MiB -1 0.11 +k6_frac_N10_40nm.xml seq.pre-vpr.blif common 2.43 vpr 75.07 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 125 41 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 76868 41 35 1006 76 0 665 201 16 16 256 -1 mcnc_medium -1 -1 9806 7711 9021 479 5180 3362 75.1 MiB 1.93 0.00 7.51244 5.32876 -152.164 -5.32876 nan 0.04 0.00142804 0.00124551 0.0391378 0.0356815 75.1 MiB 1.93 75.1 MiB 1.39 12022 18.0782 3251 4.88872 4219 22486 741180 125076 1.05632e+07 6.73675e+06 1.26944e+06 4958.75 17 28900 206586 -1 5.72072 nan -160.849 -5.72072 0 0 0.11 -1 -1 75.1 MiB 0.19 0.127975 0.117992 75.1 MiB -1 0.04 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_ap/no_fixed_blocks/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_ap/no_fixed_blocks/config/golden_results.txt index e8dd91ee6ae..52747da9fdc 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_ap/no_fixed_blocks/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_ap/no_fixed_blocks/config/golden_results.txt @@ -1,6 +1,6 @@ - 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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time 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 - k6_frac_N10_frac_chain_mem32K_40nm.xml boundtop.v common 25.85 vpr 83.03 MiB -1 -1 18.57 47636 3 1.01 -1 -1 38980 -1 -1 48 196 1 0 success v8.0.0-12490-ge99a5ee8c release VTR_ASSERT_LEVEL=3 GNU 13.3.0 on Linux-6.8.0-57-generic x86_64 2025-04-21T16:53:01 srivatsan-Precision-Tower-5810 /home/alex/vtr-verilog-to-routing 85020 196 193 800 0 1 594 438 20 20 400 -1 vtr_extra_small -1 -1 4169 3142 106806 24519 69152 13135 83.0 MiB 3.45 0.01 2.78642 2.3599 -1119.38 -2.3599 2.3599 0.11 0.00336886 0.00290601 0.267623 0.235425 83.0 MiB 3.45 83.0 MiB 1.54 5164 8.82735 1542 2.63590 1808 2713 166829 48700 2.07112e+07 3.13491e+06 1.26946e+06 3173.65 11 38988 203232 -1 2.79177 2.79177 -1205.37 -2.79177 0 0 0.33 -1 -1 83.0 MiB 0.20 0.427611 0.384897 83.0 MiB -1 0.11 - k6_frac_N10_frac_chain_mem32K_40nm.xml ch_intrinsics.v common 2.71 vpr 77.02 MiB -1 -1 0.44 22136 3 0.13 -1 -1 37044 -1 -1 68 99 1 0 success v8.0.0-12490-ge99a5ee8c release VTR_ASSERT_LEVEL=3 GNU 13.3.0 on Linux-6.8.0-57-generic x86_64 2025-04-21T16:53:01 srivatsan-Precision-Tower-5810 /home/alex/vtr-verilog-to-routing 78864 99 130 264 0 1 227 298 20 20 400 -1 vtr_extra_small -1 -1 1534 732 61988 20558 27121 14309 77.0 MiB 1.17 0.01 1.84094 1.63182 -117.029 -1.63182 1.63182 0.10 0.00116098 0.00102609 0.0719437 0.0636329 77.0 MiB 1.17 77.0 MiB 0.48 1289 7.67262 408 2.42857 432 671 35594 10787 2.07112e+07 4.21279e+06 1.31074e+06 3276.84 12 39388 210115 -1 2.0326 2.0326 -137.711 -2.0326 0 0 0.32 -1 -1 77.0 MiB 0.12 0.146262 0.115522 77.0 MiB -1 0.10 - k6_frac_N10_frac_chain_mem32K_40nm.xml or1200.v common 45.09 vpr 132.19 MiB -1 -1 6.50 65292 8 5.27 -1 -1 44656 -1 -1 246 385 2 1 success v8.0.0-12490-ge99a5ee8c release VTR_ASSERT_LEVEL=3 GNU 13.3.0 on Linux-6.8.0-57-generic x86_64 2025-04-21T16:53:01 srivatsan-Precision-Tower-5810 /home/alex/vtr-verilog-to-routing 135364 385 362 3324 0 1 2378 996 30 30 900 -1 vtr_small -1 -1 45961 31243 503168 167206 308523 27439 132.2 MiB 27.49 0.08 11.3485 9.24445 -10104.3 -9.24445 9.24445 0.52 0.0110533 0.00983869 1.90464 1.67809 132.2 MiB 27.49 132.2 MiB 14.11 42437 17.9590 11048 4.67541 10359 33405 1843617 333376 4.8774e+07 1.47499e+07 6.56785e+06 7297.61 17 120772 1084977 -1 9.50495 9.50495 -10508.2 -9.50495 0 0 2.27 -1 -1 132.2 MiB 0.99 2.49904 2.2274 132.2 MiB -1 0.52 - k6_frac_N10_frac_chain_mem32K_40nm.xml spree.v common 13.73 vpr 86.61 MiB -1 -1 3.85 35472 16 0.66 -1 -1 39332 -1 -1 61 45 3 1 success v8.0.0-12490-ge99a5ee8c release VTR_ASSERT_LEVEL=3 GNU 13.3.0 on Linux-6.8.0-57-generic x86_64 2025-04-21T16:53:01 srivatsan-Precision-Tower-5810 /home/alex/vtr-verilog-to-routing 88684 45 32 936 0 1 764 142 20 20 400 -1 vtr_extra_small -1 -1 7941 6580 16792 4505 10418 1869 86.6 MiB 7.12 0.02 11.8934 10.8778 -6730.96 -10.8778 10.8778 0.15 0.00604523 0.0052746 0.299411 0.249607 86.6 MiB 7.12 86.6 MiB 4.84 11265 14.8029 2859 3.75690 3304 9224 705116 168424 2.07112e+07 5.32753e+06 1.91495e+06 4787.38 16 44576 305072 -1 11.1238 11.1238 -7296.13 -11.1238 0 0 0.55 -1 -1 86.6 MiB 0.49 0.557197 0.483674 86.6 MiB -1 0.15 - k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision3.v common 2.92 vpr 76.71 MiB -1 -1 0.85 26400 4 0.19 -1 -1 36732 -1 -1 15 11 0 0 success v8.0.0-12490-ge99a5ee8c release VTR_ASSERT_LEVEL=3 GNU 13.3.0 on Linux-6.8.0-57-generic x86_64 2025-04-21T16:53:01 srivatsan-Precision-Tower-5810 /home/alex/vtr-verilog-to-routing 78556 11 2 140 0 2 80 28 20 20 400 -1 vtr_extra_small -1 -1 371 277 994 274 621 99 76.7 MiB 0.79 0.00 2.14417 2.10685 -170.205 -2.10685 1.95087 0.09 0.000829747 0.000696435 0.0253099 0.0218497 76.7 MiB 0.79 76.7 MiB 0.47 484 6.54054 125 1.68919 154 271 5642 1534 2.07112e+07 808410 1.12964e+06 2824.09 10 37792 180905 -1 2.24362 1.99822 -177.023 -2.24362 0 0 0.28 -1 -1 76.7 MiB 0.04 0.058266 0.0520206 76.7 MiB -1 0.09 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time 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 +k6_frac_N10_frac_chain_mem32K_40nm.xml boundtop.v common 10.90 vpr 81.36 MiB -1 -1 8.14 44968 3 0.57 -1 -1 35340 -1 -1 49 196 1 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 83308 196 193 800 0 1 601 439 20 20 400 -1 vtr_extra_small -1 -1 4328 3107 92124 17877 63452 10795 81.4 MiB 1.38 0.00 2.56454 2.37946 -1137.82 -2.37946 2.37946 0.04 0.00170951 0.00159049 0.108014 0.100137 81.4 MiB 1.38 81.4 MiB 0.66 5067 8.55912 1503 2.53885 1660 2444 142383 40675 2.07112e+07 3.18881e+06 1.26946e+06 3173.65 10 38988 203232 -1 2.76727 2.76727 -1220.28 -2.76727 0 0 0.11 -1 -1 81.4 MiB 0.08 0.17114 0.160292 81.4 MiB -1 0.04 +k6_frac_N10_frac_chain_mem32K_40nm.xml ch_intrinsics.v common 1.23 vpr 75.47 MiB -1 -1 0.22 18468 3 0.06 -1 -1 33128 -1 -1 68 99 1 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 77280 99 130 264 0 1 226 298 20 20 400 -1 vtr_extra_small -1 -1 998 719 42088 12988 22077 7023 75.5 MiB 0.51 0.00 2.00298 1.89487 -117.095 -1.89487 1.89487 0.04 0.000568785 0.000532954 0.0270668 0.0254536 75.5 MiB 0.51 75.5 MiB 0.25 1273 7.62275 391 2.34132 403 645 32624 10084 2.07112e+07 4.21279e+06 1.31074e+06 3276.84 11 39388 210115 -1 2.02782 2.02782 -132.929 -2.02782 0 0 0.12 -1 -1 75.5 MiB 0.03 0.0466214 0.0438046 75.5 MiB -1 0.04 +k6_frac_N10_frac_chain_mem32K_40nm.xml or1200.v common 18.99 vpr 130.75 MiB -1 -1 2.93 61476 8 2.72 -1 -1 42296 -1 -1 244 385 2 1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 133892 385 362 3324 0 1 2373 994 30 30 900 -1 vtr_small -1 -1 44934 30685 486878 158175 303508 25195 130.8 MiB 10.73 0.04 10.9569 9.14069 -10026.4 -9.14069 9.14069 0.19 0.0075565 0.00697625 0.821563 0.749283 130.8 MiB 10.73 130.8 MiB 5.59 41636 17.6573 10780 4.57167 10078 33334 1771649 321112 4.8774e+07 1.46421e+07 6.56785e+06 7297.61 16 120772 1084977 -1 9.28426 9.28426 -10368.8 -9.28426 0 0 0.73 -1 -1 130.8 MiB 0.67 1.2751 1.17633 130.8 MiB -1 0.19 +k6_frac_N10_frac_chain_mem32K_40nm.xml spree.v common 5.78 vpr 84.59 MiB -1 -1 1.71 32292 16 0.37 -1 -1 34988 -1 -1 59 45 3 1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 86620 45 32 936 0 1 764 140 20 20 400 -1 vtr_extra_small -1 -1 7967 6824 18290 3791 13097 1402 84.6 MiB 2.77 0.00 11.7422 10.6015 -6978.52 -10.6015 10.6015 0.06 0.00172166 0.00152276 0.108719 0.0971486 84.6 MiB 2.77 84.6 MiB 1.78 11182 14.6938 2948 3.87385 3523 9991 831731 205110 2.07112e+07 5.21975e+06 1.91495e+06 4787.38 14 44576 305072 -1 11.0577 11.0577 -7502.5 -11.0577 0 0 0.18 -1 -1 84.6 MiB 0.20 0.207414 0.189307 84.6 MiB -1 0.06 +k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision3.v common 1.46 vpr 74.58 MiB -1 -1 0.41 22932 4 0.10 -1 -1 32968 -1 -1 15 11 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 76368 11 2 140 0 2 81 28 20 20 400 -1 vtr_extra_small -1 -1 344 282 1246 289 767 190 74.6 MiB 0.35 0.00 2.1429 2.10685 -161.57 -2.10685 1.95087 0.04 0.000382895 0.000341958 0.0148948 0.0134952 74.6 MiB 0.35 74.6 MiB 0.22 481 6.41333 125 1.66667 162 273 5235 1511 2.07112e+07 808410 1.12964e+06 2824.09 10 37792 180905 -1 2.13367 2.00787 -169.877 -2.13367 0 0 0.10 -1 -1 74.6 MiB 0.02 0.031341 0.0286656 74.6 MiB -1 0.04 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_ap/none_detailed_placer/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_ap/none_detailed_placer/config/golden_results.txt index 9155e1a0c29..9dcd6930755 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_ap/none_detailed_placer/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_ap/none_detailed_placer/config/golden_results.txt @@ -1,4 +1,4 @@ - arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time 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 - k6_frac_N10_40nm.xml apex4.pre-vpr.blif common 4.37 vpr 75.71 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 83 9 -1 -1 success v8.0.0-12490-ge99a5ee8c release VTR_ASSERT_LEVEL=3 GNU 13.3.0 on Linux-6.8.0-57-generic x86_64 2025-04-21T16:53:01 srivatsan-Precision-Tower-5810 /home/alex/vtr-verilog-to-routing 77532 9 19 897 28 0 565 111 16 16 256 -1 mcnc_medium -1 -1 -1 -1 -1 -1 -1 -1 75.7 MiB 3.24 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 75.7 MiB 3.24 75.7 MiB 2.52 10470 18.5638 2823 5.00532 4441 21451 721238 120368 1.05632e+07 4.4732e+06 1.26944e+06 4958.75 17 28900 206586 -1 5.44204 nan -88.1999 -5.44204 0 0 0.32 -1 -1 75.7 MiB 0.45 0.190621 0.172257 75.7 MiB -1 0.09 - k6_frac_N10_40nm.xml des.pre-vpr.blif common 1.70 vpr 76.20 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 58 256 -1 -1 success v8.0.0-12490-ge99a5ee8c release VTR_ASSERT_LEVEL=3 GNU 13.3.0 on Linux-6.8.0-57-generic x86_64 2025-04-21T16:53:01 srivatsan-Precision-Tower-5810 /home/alex/vtr-verilog-to-routing 78028 256 245 954 501 0 584 559 22 22 484 -1 mcnc_large -1 -1 -1 -1 -1 -1 -1 -1 76.2 MiB 0.69 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 76.2 MiB 0.69 76.2 MiB 0.61 10067 17.2380 2785 4.76884 2224 4785 262051 58317 2.15576e+07 3.12585e+06 1.49107e+06 3080.73 14 47664 245996 -1 5.09713 nan -915.356 -5.09713 0 0 0.38 -1 -1 76.2 MiB 0.25 0.146815 0.136123 76.2 MiB -1 0.13 - k6_frac_N10_40nm.xml seq.pre-vpr.blif common 4.28 vpr 76.66 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 84 41 -1 -1 success v8.0.0-12490-ge99a5ee8c release VTR_ASSERT_LEVEL=3 GNU 13.3.0 on Linux-6.8.0-57-generic x86_64 2025-04-21T16:53:01 srivatsan-Precision-Tower-5810 /home/alex/vtr-verilog-to-routing 78496 41 35 1006 76 0 573 160 16 16 256 -1 mcnc_medium -1 -1 -1 -1 -1 -1 -1 -1 76.7 MiB 3.09 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 76.7 MiB 3.09 76.7 MiB 2.27 10759 18.7766 2936 5.12391 3972 20025 643838 113062 1.05632e+07 4.5271e+06 1.26944e+06 4958.75 17 28900 206586 -1 5.52727 nan -151.75 -5.52727 0 0 0.34 -1 -1 76.7 MiB 0.46 0.206081 0.184898 76.7 MiB -1 0.09 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time 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 +k6_frac_N10_40nm.xml apex4.pre-vpr.blif common 1.88 vpr 73.72 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 82 9 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 75488 9 19 897 28 0 562 110 16 16 256 -1 mcnc_medium -1 -1 -1 -1 -1 -1 -1 -1 73.7 MiB 1.38 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 73.7 MiB 1.38 73.7 MiB 0.99 10384 18.5098 2834 5.05169 4200 20769 686232 118555 1.05632e+07 4.41931e+06 1.26944e+06 4958.75 18 28900 206586 -1 5.71537 nan -90.8975 -5.71537 0 0 0.11 -1 -1 73.7 MiB 0.18 0.0873879 0.0807521 73.7 MiB -1 0.04 +k6_frac_N10_40nm.xml des.pre-vpr.blif common 0.80 vpr 74.64 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 56 256 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 76432 256 245 954 501 0 584 557 22 22 484 -1 mcnc_large -1 -1 -1 -1 -1 -1 -1 -1 74.6 MiB 0.35 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 74.6 MiB 0.35 74.6 MiB 0.31 10173 17.4195 2800 4.79452 2175 4597 261480 57693 2.15576e+07 3.01806e+06 1.49107e+06 3080.73 19 47664 245996 -1 5.19666 nan -941.622 -5.19666 0 0 0.13 -1 -1 74.6 MiB 0.14 0.093956 0.0894993 74.6 MiB -1 0.05 +k6_frac_N10_40nm.xml seq.pre-vpr.blif common 1.86 vpr 75.26 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 84 41 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 77068 41 35 1006 76 0 588 160 16 16 256 -1 mcnc_medium -1 -1 -1 -1 -1 -1 -1 -1 75.3 MiB 1.34 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 75.3 MiB 1.34 75.3 MiB 0.93 11092 18.8639 3046 5.18027 4224 20724 680603 119637 1.05632e+07 4.5271e+06 1.26944e+06 4958.75 17 28900 206586 -1 5.63987 nan -156.834 -5.63987 0 0 0.11 -1 -1 75.3 MiB 0.19 0.0927209 0.0860572 75.3 MiB -1 0.04 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_ap/qp_hybrid_analytical_solver/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_ap/qp_hybrid_analytical_solver/config/golden_results.txt index bd1a356f7b3..d9de69d6485 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_ap/qp_hybrid_analytical_solver/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_ap/qp_hybrid_analytical_solver/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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time 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 - k6_frac_N10_40nm.xml apex4.pre-vpr.blif common 4.48 vpr 75.64 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 79 9 -1 -1 success v8.0.0-12490-ge99a5ee8c release VTR_ASSERT_LEVEL=3 GNU 13.3.0 on Linux-6.8.0-57-generic x86_64 2025-04-21T16:53:01 srivatsan-Precision-Tower-5810 /home/alex/vtr-verilog-to-routing 77452 9 19 897 28 0 613 107 16 16 256 -1 mcnc_medium -1 -1 7227 6446 4661 444 2922 1295 75.6 MiB 3.30 0.01 5.83587 5.20235 -84.7514 -5.20235 nan 0.09 0.00365365 0.00308713 0.0953072 0.0828485 75.6 MiB 3.30 75.6 MiB 2.61 9964 16.2810 2709 4.42647 4690 20859 701687 124089 1.05632e+07 4.25763e+06 1.26944e+06 4958.75 19 28900 206586 -1 5.47836 nan -87.8661 -5.47836 0 0 0.35 -1 -1 75.6 MiB 0.51 0.314162 0.28034 75.6 MiB -1 0.09 - k6_frac_N10_40nm.xml des.pre-vpr.blif common 1.82 vpr 76.20 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 56 256 -1 -1 success v8.0.0-12490-ge99a5ee8c release VTR_ASSERT_LEVEL=3 GNU 13.3.0 on Linux-6.8.0-57-generic x86_64 2025-04-21T16:53:01 srivatsan-Precision-Tower-5810 /home/alex/vtr-verilog-to-routing 78032 256 245 954 501 0 598 557 22 22 484 -1 mcnc_large -1 -1 8430 8247 28037 277 4264 23496 76.2 MiB 0.95 0.02 5.00844 4.05195 -786.983 -4.05195 nan 0.13 0.00372964 0.0033122 0.0643989 0.0586623 76.2 MiB 0.95 76.2 MiB 0.58 10883 18.1990 2937 4.91137 2442 5565 332488 69751 2.15576e+07 3.01806e+06 1.49107e+06 3080.73 12 47664 245996 -1 4.40791 nan -837.951 -4.40791 0 0 0.37 -1 -1 76.2 MiB 0.26 0.206289 0.19121 76.2 MiB -1 0.13 - k6_frac_N10_40nm.xml ex1010.pre-vpr.blif common 15.95 vpr 105.57 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 288 10 -1 -1 success v8.0.0-12490-ge99a5ee8c release VTR_ASSERT_LEVEL=3 GNU 13.3.0 on Linux-6.8.0-57-generic x86_64 2025-04-21T16:53:01 srivatsan-Precision-Tower-5810 /home/alex/vtr-verilog-to-routing 108108 10 10 2659 20 0 1500 308 22 22 484 -1 mcnc_large -1 -1 33647 26777 51219 12453 33951 4815 105.6 MiB 12.21 0.05 7.95426 6.65363 -64.7441 -6.65363 nan 0.32 0.01158 0.00952696 0.683148 0.577318 105.6 MiB 12.21 105.6 MiB 8.23 39550 26.3667 10138 6.75867 10136 56388 2554636 337283 2.15576e+07 1.55215e+07 3.51389e+06 7260.09 18 64568 594370 -1 7.10986 nan -67.2122 -7.10986 0 0 1.12 -1 -1 105.6 MiB 1.79 1.41673 1.23449 105.6 MiB -1 0.32 - k6_frac_N10_40nm.xml seq.pre-vpr.blif common 3.96 vpr 76.78 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 85 41 -1 -1 success v8.0.0-12490-ge99a5ee8c release VTR_ASSERT_LEVEL=3 GNU 13.3.0 on Linux-6.8.0-57-generic x86_64 2025-04-21T16:53:01 srivatsan-Precision-Tower-5810 /home/alex/vtr-verilog-to-routing 78624 41 35 1006 76 0 665 161 16 16 256 -1 mcnc_medium -1 -1 7612 6958 7590 343 3947 3300 76.8 MiB 2.84 0.02 6.23108 5.15201 -145.389 -5.15201 nan 0.09 0.00454121 0.00387629 0.099122 0.086103 76.8 MiB 2.84 76.8 MiB 2.13 10685 16.0677 2885 4.33835 4384 18462 592965 106217 1.05632e+07 4.58099e+06 1.26944e+06 4958.75 19 28900 206586 -1 5.45169 nan -154.246 -5.45169 0 0 0.32 -1 -1 76.8 MiB 0.51 0.354223 0.314944 76.8 MiB -1 0.09 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time 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 +k6_frac_N10_40nm.xml apex4.pre-vpr.blif common 1.79 vpr 74.09 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 80 9 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 75868 9 19 897 28 0 628 108 16 16 256 -1 mcnc_medium -1 -1 7133 6654 3706 357 2411 938 74.1 MiB 1.24 0.00 5.58018 4.92812 -82.703 -4.92812 nan 0.04 0.00130258 0.00113599 0.0349201 0.0320233 74.1 MiB 1.24 74.1 MiB 0.99 10212 16.2871 2746 4.37959 5878 26871 986532 171228 1.05632e+07 4.31152e+06 1.26944e+06 4958.75 26 28900 206586 -1 5.21469 nan -86.576 -5.21469 0 0 0.11 -1 -1 74.1 MiB 0.27 0.144906 0.13215 74.1 MiB -1 0.04 +k6_frac_N10_40nm.xml des.pre-vpr.blif common 0.82 vpr 74.61 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 57 256 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 76400 256 245 954 501 0 596 558 22 22 484 -1 mcnc_large -1 -1 8442 8222 21222 240 2369 18613 74.6 MiB 0.43 0.01 4.85109 4.26724 -789.819 -4.26724 nan 0.05 0.00183483 0.0017214 0.0271893 0.0259535 74.6 MiB 0.43 74.6 MiB 0.31 10906 18.2987 2932 4.91946 2356 5389 309032 65263 2.15576e+07 3.07196e+06 1.49107e+06 3080.73 12 47664 245996 -1 4.73179 nan -857.452 -4.73179 0 0 0.13 -1 -1 74.6 MiB 0.12 0.0974406 0.0930916 74.6 MiB -1 0.05 +k6_frac_N10_40nm.xml ex1010.pre-vpr.blif common 6.00 vpr 103.25 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 289 10 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 105732 10 10 2659 20 0 1510 309 22 22 484 -1 mcnc_large -1 -1 31802 27364 49377 11982 32709 4686 103.3 MiB 4.45 0.01 8.38409 6.51429 -63.2845 -6.51429 nan 0.11 0.00401015 0.00322611 0.239471 0.201148 103.3 MiB 4.45 103.3 MiB 3.22 40850 27.0530 10492 6.94834 11089 63641 3035099 392249 2.15576e+07 1.55754e+07 3.51389e+06 7260.09 19 64568 594370 -1 6.78146 nan -65.8802 -6.78146 0 0 0.37 -1 -1 103.3 MiB 0.76 0.540944 0.474742 103.3 MiB -1 0.11 +k6_frac_N10_40nm.xml seq.pre-vpr.blif common 1.73 vpr 75.25 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 83 41 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 77056 41 35 1006 76 0 678 159 16 16 256 -1 mcnc_medium -1 -1 7799 7097 7039 323 3443 3273 75.2 MiB 1.24 0.00 5.82238 4.98732 -145.614 -4.98732 nan 0.04 0.001505 0.00130537 0.0413734 0.0374728 75.2 MiB 1.24 75.2 MiB 0.95 10391 15.3260 2846 4.19764 4879 22033 706386 126210 1.05632e+07 4.4732e+06 1.26944e+06 4958.75 20 28900 206586 -1 5.2747 nan -150.182 -5.2747 0 0 0.12 -1 -1 75.2 MiB 0.20 0.139029 0.127655 75.2 MiB -1 0.04 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_ap/unrelated_clustering/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_ap/unrelated_clustering/config/golden_results.txt index 353d272ff5e..e985dbf5f92 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_ap/unrelated_clustering/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_ap/unrelated_clustering/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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time 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 - k6_frac_N10_40nm.xml apex4.pre-vpr.blif common 4.96 vpr 75.33 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 81 9 -1 -1 success v8.0.0-12490-ge99a5ee8c release VTR_ASSERT_LEVEL=3 GNU 13.3.0 on Linux-6.8.0-57-generic x86_64 2025-04-21T16:53:01 srivatsan-Precision-Tower-5810 /home/alex/vtr-verilog-to-routing 77136 9 19 897 28 0 571 109 16 16 256 -1 mcnc_medium -1 -1 6849 6197 3749 306 2447 996 75.3 MiB 3.80 0.01 5.6777 5.15854 -84.4388 -5.15854 nan 0.12 0.00372518 0.00308527 0.0851251 0.0744623 75.3 MiB 3.80 75.3 MiB 2.72 9547 16.7491 2591 4.54561 4007 19117 612422 105847 1.05632e+07 4.36541e+06 1.26944e+06 4958.75 18 28900 206586 -1 5.57046 nan -89.3939 -5.57046 0 0 0.36 -1 -1 75.3 MiB 0.45 0.290389 0.260271 75.3 MiB -1 0.12 - k6_frac_N10_40nm.xml des.pre-vpr.blif common 1.92 vpr 76.21 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 55 256 -1 -1 success v8.0.0-12490-ge99a5ee8c release VTR_ASSERT_LEVEL=3 GNU 13.3.0 on Linux-6.8.0-57-generic x86_64 2025-04-21T16:53:01 srivatsan-Precision-Tower-5810 /home/alex/vtr-verilog-to-routing 78044 256 245 954 501 0 584 556 22 22 484 -1 mcnc_large -1 -1 7414 7336 16551 117 1750 14684 76.2 MiB 0.96 0.02 4.79868 3.95956 -780.296 -3.95956 nan 0.14 0.0037776 0.00334019 0.0431145 0.0394451 76.2 MiB 0.96 76.2 MiB 0.63 10156 17.3904 2785 4.76884 2499 5829 309976 67350 2.15576e+07 2.96417e+06 1.49107e+06 3080.73 17 47664 245996 -1 4.43922 nan -858.538 -4.43922 0 0 0.40 -1 -1 76.2 MiB 0.31 0.225991 0.20914 76.2 MiB -1 0.13 - k6_frac_N10_40nm.xml ex1010.pre-vpr.blif common 18.50 vpr 105.55 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 263 10 -1 -1 success v8.0.0-12490-ge99a5ee8c release VTR_ASSERT_LEVEL=3 GNU 13.3.0 on Linux-6.8.0-57-generic x86_64 2025-04-21T16:53:01 srivatsan-Precision-Tower-5810 /home/alex/vtr-verilog-to-routing 108088 10 10 2659 20 0 1335 283 22 22 484 -1 mcnc_large -1 -1 29142 24368 34619 6112 24966 3541 105.6 MiB 14.79 0.04 8.99039 6.64595 -64.2305 -6.64595 nan 0.30 0.011351 0.00921126 0.534655 0.453947 105.6 MiB 14.79 105.6 MiB 8.92 36909 27.6472 9531 7.13933 8973 57196 2436221 318880 2.15576e+07 1.41741e+07 3.51389e+06 7260.09 18 64568 594370 -1 7.07899 nan -66.0192 -7.07899 0 0 1.11 -1 -1 105.6 MiB 1.75 1.29851 1.13315 105.6 MiB -1 0.30 - k6_frac_N10_40nm.xml seq.pre-vpr.blif common 5.12 vpr 76.36 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 84 41 -1 -1 success v8.0.0-12490-ge99a5ee8c release VTR_ASSERT_LEVEL=3 GNU 13.3.0 on Linux-6.8.0-57-generic x86_64 2025-04-21T16:53:01 srivatsan-Precision-Tower-5810 /home/alex/vtr-verilog-to-routing 78196 41 35 1006 76 0 573 160 16 16 256 -1 mcnc_medium -1 -1 7414 6419 7538 405 3643 3490 76.4 MiB 3.99 0.01 5.66659 5.10396 -142.048 -5.10396 nan 0.09 0.00395858 0.00331812 0.0974473 0.0845959 76.4 MiB 3.99 76.4 MiB 2.72 9920 17.3124 2710 4.72949 3957 20035 633461 111527 1.05632e+07 4.5271e+06 1.26944e+06 4958.75 17 28900 206586 -1 5.31293 nan -148.764 -5.31293 0 0 0.36 -1 -1 76.4 MiB 0.47 0.311907 0.278187 76.4 MiB -1 0.09 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time 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 +k6_frac_N10_40nm.xml apex4.pre-vpr.blif common 2.02 vpr 73.77 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 83 9 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 75536 9 19 897 28 0 563 111 16 16 256 -1 mcnc_medium -1 -1 7098 5977 5165 481 3314 1370 73.8 MiB 1.56 0.00 5.87393 5.10533 -84.2691 -5.10533 nan 0.04 0.00129553 0.00112415 0.0425662 0.0388316 73.8 MiB 1.56 73.8 MiB 1.05 9429 16.7776 2543 4.52491 4233 21427 685976 119142 1.05632e+07 4.4732e+06 1.26944e+06 4958.75 19 28900 206586 -1 5.42217 nan -87.2542 -5.42217 0 0 0.11 -1 -1 73.8 MiB 0.18 0.129552 0.119237 73.8 MiB -1 0.04 +k6_frac_N10_40nm.xml des.pre-vpr.blif common 0.82 vpr 73.47 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 54 256 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 75236 256 245 954 501 0 584 555 22 22 484 -1 mcnc_large -1 -1 7542 7463 5115 58 915 4142 73.5 MiB 0.43 0.01 5.52179 4.5111 -812.738 -4.5111 nan 0.05 0.00187057 0.00175451 0.014083 0.0136228 73.5 MiB 0.43 73.5 MiB 0.31 10180 17.4315 2798 4.79110 2290 5418 289765 61404 2.15576e+07 2.91028e+06 1.49107e+06 3080.73 12 47664 245996 -1 4.73551 nan -877.111 -4.73551 0 0 0.13 -1 -1 73.5 MiB 0.11 0.0874376 0.08384 73.5 MiB -1 0.05 +k6_frac_N10_40nm.xml ex1010.pre-vpr.blif common 7.39 vpr 103.38 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 269 10 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 105864 10 10 2659 20 0 1330 289 22 22 484 -1 mcnc_large -1 -1 29067 24555 40399 8417 28233 3749 103.4 MiB 5.92 0.01 8.57662 6.48829 -62.7527 -6.48829 nan 0.11 0.00410389 0.00328836 0.220573 0.18529 103.4 MiB 5.92 103.4 MiB 3.36 37342 28.0767 9643 7.25038 9194 59469 2527516 336331 2.15576e+07 1.44975e+07 3.51389e+06 7260.09 17 64568 594370 -1 6.74005 nan -65.3498 -6.74005 0 0 0.36 -1 -1 103.4 MiB 0.67 0.506692 0.445776 103.4 MiB -1 0.11 +k6_frac_N10_40nm.xml seq.pre-vpr.blif common 2.01 vpr 74.89 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 83 41 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 76688 41 35 1006 76 0 592 159 16 16 256 -1 mcnc_medium -1 -1 7434 6630 6609 294 3295 3020 74.9 MiB 1.52 0.00 5.72346 5.17082 -143.976 -5.17082 nan 0.04 0.00140043 0.0012182 0.0394494 0.0360877 74.9 MiB 1.52 74.9 MiB 0.98 9848 16.6351 2709 4.57601 4387 22649 730292 125901 1.05632e+07 4.4732e+06 1.26944e+06 4958.75 19 28900 206586 -1 5.09467 nan -146.142 -5.09467 0 0 0.11 -1 -1 74.9 MiB 0.20 0.135638 0.125011 74.9 MiB -1 0.04 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_ap/vtr_chain/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_ap/vtr_chain/config/golden_results.txt index d7bb035e33d..493089933c3 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_ap/vtr_chain/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_ap/vtr_chain/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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time 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 - k6_frac_N10_frac_chain_mem32K_40nm.xml boundtop.v common 24.78 vpr 83.23 MiB -1 -1 18.50 47880 3 1.03 -1 -1 38848 -1 -1 50 196 1 0 success v8.0.0-12490-ge99a5ee8c release VTR_ASSERT_LEVEL=3 GNU 13.3.0 on Linux-6.8.0-57-generic x86_64 2025-04-21T16:53:01 srivatsan-Precision-Tower-5810 /home/alex/vtr-verilog-to-routing 85228 196 193 800 389 1 591 440 20 20 400 -1 vtr_extra_small -1 -1 3715 3554 3784 38 823 2923 83.2 MiB 2.24 0.02 2.85588 2.57265 -1175.96 -2.57265 2.57265 0.10 0.00362627 0.00313967 0.0281499 0.026191 83.2 MiB 2.24 83.2 MiB 1.59 5468 9.39519 1600 2.74914 1643 2642 175568 48502 2.07112e+07 3.2427e+06 1.26946e+06 3173.65 13 38988 203232 -1 2.92546 2.92546 -1279.3 -2.92546 0 0 0.33 -1 -1 83.2 MiB 0.23 0.194282 0.17603 83.2 MiB -1 0.10 - k6_frac_N10_frac_chain_mem32K_40nm.xml ch_intrinsics.v common 2.30 vpr 77.05 MiB -1 -1 0.46 21648 3 0.11 -1 -1 36796 -1 -1 69 99 1 0 success v8.0.0-12490-ge99a5ee8c release VTR_ASSERT_LEVEL=3 GNU 13.3.0 on Linux-6.8.0-57-generic x86_64 2025-04-21T16:53:01 srivatsan-Precision-Tower-5810 /home/alex/vtr-verilog-to-routing 78904 99 130 240 229 1 219 299 20 20 400 -1 vtr_extra_small -1 -1 897 855 16283 1900 1766 12617 77.1 MiB 0.85 0.01 1.95754 1.93615 -150.064 -1.93615 1.93615 0.10 0.00114824 0.00101953 0.0225391 0.0202679 77.1 MiB 0.85 77.1 MiB 0.55 1415 8.84375 420 2.62500 390 656 29567 8292 2.07112e+07 4.26669e+06 1.31074e+06 3276.84 10 39388 210115 -1 1.99132 1.99132 -170.793 -1.99132 0 0 0.34 -1 -1 77.1 MiB 0.05 0.0576019 0.0526431 77.1 MiB -1 0.10 - k6_frac_N10_frac_chain_mem32K_40nm.xml spree.v common 12.74 vpr 86.56 MiB -1 -1 3.84 35864 16 0.69 -1 -1 39076 -1 -1 61 45 3 1 success v8.0.0-12490-ge99a5ee8c release VTR_ASSERT_LEVEL=3 GNU 13.3.0 on Linux-6.8.0-57-generic x86_64 2025-04-21T16:53:01 srivatsan-Precision-Tower-5810 /home/alex/vtr-verilog-to-routing 88636 45 32 936 77 1 765 142 20 20 400 -1 vtr_extra_small -1 -1 7990 6993 2362 101 1016 1245 86.6 MiB 6.20 0.02 12.1921 10.5297 -7133.55 -10.5297 10.5297 0.16 0.00556384 0.00434574 0.083545 0.0720334 86.6 MiB 6.20 86.6 MiB 4.77 11420 14.9869 2979 3.90945 3498 9480 737557 180691 2.07112e+07 5.32753e+06 1.91495e+06 4787.38 14 44576 305072 -1 10.8282 10.8282 -7490.44 -10.8282 0 0 0.55 -1 -1 86.6 MiB 0.48 0.322984 0.290732 86.6 MiB -1 0.16 - k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision3.v common 2.69 vpr 76.73 MiB -1 -1 0.87 26256 4 0.17 -1 -1 36604 -1 -1 15 11 0 0 success v8.0.0-12490-ge99a5ee8c release VTR_ASSERT_LEVEL=3 GNU 13.3.0 on Linux-6.8.0-57-generic x86_64 2025-04-21T16:53:01 srivatsan-Precision-Tower-5810 /home/alex/vtr-verilog-to-routing 78576 11 2 140 13 2 79 28 20 20 400 -1 vtr_extra_small -1 -1 425 276 658 98 289 271 76.7 MiB 0.68 0.00 2.38519 2.10685 -169.375 -2.10685 1.95087 0.09 0.000833002 0.000701647 0.018572 0.0162134 76.7 MiB 0.68 76.7 MiB 0.44 404 5.53425 120 1.64384 174 291 5454 1630 2.07112e+07 808410 1.12964e+06 2824.09 11 37792 180905 -1 2.17742 1.95241 -171.997 -2.17742 0 0 0.30 -1 -1 76.7 MiB 0.04 0.0564754 0.0510591 76.7 MiB -1 0.09 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time 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 +k6_frac_N10_frac_chain_mem32K_40nm.xml boundtop.v common 10.47 vpr 81.20 MiB -1 -1 8.11 45204 3 0.57 -1 -1 35608 -1 -1 50 196 1 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 83148 196 193 800 389 1 589 440 20 20 400 -1 vtr_extra_small -1 -1 3998 3782 18832 248 3091 15493 81.2 MiB 0.98 0.00 2.85588 2.47185 -1156.3 -2.47185 2.47185 0.04 0.00172364 0.00159607 0.0308341 0.0290834 81.2 MiB 0.98 81.2 MiB 0.63 5632 9.71035 1634 2.81724 1596 2379 162444 45554 2.07112e+07 3.2427e+06 1.26946e+06 3173.65 13 38988 203232 -1 2.84177 2.84177 -1268.87 -2.84177 0 0 0.12 -1 -1 81.2 MiB 0.09 0.105167 0.0996991 81.2 MiB -1 0.04 +k6_frac_N10_frac_chain_mem32K_40nm.xml ch_intrinsics.v common 1.08 vpr 75.51 MiB -1 -1 0.22 18464 3 0.06 -1 -1 33404 -1 -1 69 99 1 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 77320 99 130 240 229 1 222 299 20 20 400 -1 vtr_extra_small -1 -1 1001 943 16283 1928 655 13700 75.5 MiB 0.37 0.00 1.95754 1.93615 -151.243 -1.93615 1.93615 0.04 0.000568044 0.000533906 0.0123779 0.0117131 75.5 MiB 0.37 75.5 MiB 0.24 1463 8.97546 433 2.65644 390 644 29549 8534 2.07112e+07 4.26669e+06 1.31074e+06 3276.84 9 39388 210115 -1 1.99132 1.99132 -165.748 -1.99132 0 0 0.12 -1 -1 75.5 MiB 0.02 0.0304031 0.0286853 75.5 MiB -1 0.04 +k6_frac_N10_frac_chain_mem32K_40nm.xml spree.v common 5.50 vpr 84.02 MiB -1 -1 1.72 32292 16 0.36 -1 -1 35064 -1 -1 59 45 3 1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 86032 45 32 936 77 1 764 140 20 20 400 -1 vtr_extra_small -1 -1 8308 6790 6311 196 3112 3003 84.0 MiB 2.52 0.00 11.697 10.6608 -7088.74 -10.6608 10.6608 0.06 0.00172403 0.00151742 0.0484196 0.0441323 84.0 MiB 2.52 84.0 MiB 1.83 11366 14.9356 2988 3.92641 3444 9377 809880 202958 2.07112e+07 5.21975e+06 1.91495e+06 4787.38 14 44576 305072 -1 10.968 10.968 -7522.1 -10.968 0 0 0.18 -1 -1 84.0 MiB 0.19 0.146169 0.135428 84.0 MiB -1 0.06 +k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision3.v common 1.39 vpr 74.81 MiB -1 -1 0.41 22692 4 0.10 -1 -1 32956 -1 -1 15 11 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 76604 11 2 140 13 2 79 28 20 20 400 -1 vtr_extra_small -1 -1 441 361 112 19 45 48 74.8 MiB 0.32 0.00 2.32519 2.16196 -166.836 -2.16196 1.97742 0.04 0.000403733 0.000348452 0.00435748 0.00414137 74.8 MiB 0.32 74.8 MiB 0.21 486 6.65753 142 1.94521 190 278 5599 1612 2.07112e+07 808410 1.12964e+06 2824.09 10 37792 180905 -1 2.17143 1.9491 -169.271 -2.17143 0 0 0.10 -1 -1 74.8 MiB 0.02 0.0211176 0.0196106 74.8 MiB -1 0.04 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_bidir/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_bidir/config/golden_results.txt index 37ed89929f5..2c66d16fd32 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_bidir/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_bidir/config/golden_results.txt @@ -1,5 +1,5 @@ - arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - k4_n4_v7_bidir.xml styr.blif common 1.86 vpr 61.17 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 69 10 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 62636 10 10 253 263 1 165 89 11 11 121 clb auto 21.5 MiB 0.05 1288 4445 682 3619 144 61.2 MiB 0.05 0.00 5.46014 -72.9505 -5.46014 5.46014 0.08 0.000682102 0.000589331 0.0191204 0.0168271 -1 -1 -1 -1 14 2036 29 2.43e+06 2.07e+06 -1 -1 0.92 0.219017 0.188624 3402 27531 -1 1911 15 1185 4098 215222 27160 6.9309 6.9309 -92.2142 -6.9309 0 0 -1 -1 0.01 0.09 0.03 -1 -1 0.01 0.0322472 0.0293972 - k4_n4_v7_longline_bidir.xml styr.blif common 1.71 vpr 60.48 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 69 10 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 61932 10 10 253 263 1 165 89 11 11 121 clb auto 21.2 MiB 0.08 1219 4247 600 3483 164 60.5 MiB 0.06 0.00 4.42494 -53.3169 -4.42494 4.42494 0.10 0.000822212 0.000745517 0.0200899 0.0175819 -1 -1 -1 -1 18 2215 40 2.43e+06 2.07e+06 -1 -1 0.71 0.217702 0.191181 3282 34431 -1 2139 18 1151 3756 254207 31830 9.07319 9.07319 -108.035 -9.07319 0 0 -1 -1 0.02 0.11 0.03 -1 -1 0.02 0.0360271 0.0325274 - k4_n4_v7_l1_bidir.xml styr.blif common 2.28 vpr 61.04 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 69 10 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 62500 10 10 253 263 1 165 89 11 11 121 clb auto 21.5 MiB 0.06 1285 7613 1616 5547 450 61.0 MiB 0.11 0.00 6.9252 -85.9419 -6.9252 6.9252 0.14 0.00083663 0.000735935 0.0404209 0.0365528 -1 -1 -1 -1 10 1481 31 2.43e+06 2.07e+06 -1 -1 1.11 0.183783 0.164876 4482 22551 -1 1268 22 1168 4312 263452 47622 7.30329 7.30329 -93.8299 -7.30329 0 0 -1 -1 0.01 0.12 0.02 -1 -1 0.01 0.0404434 0.0363816 - k4_n4_v7_bidir_pass_gate.xml styr.blif common 3.36 vpr 60.46 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 69 10 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 61916 10 10 253 263 1 165 89 11 11 121 clb auto 21.3 MiB 0.09 1234 4643 666 3821 156 60.5 MiB 0.06 0.00 3.51175 -43.7413 -3.51175 3.51175 0.10 0.000796689 0.00069941 0.0254117 0.0229956 -1 -1 -1 -1 16 1911 27 2.43e+06 2.07e+06 -1 -1 2.14 0.308921 0.270668 3522 30407 -1 1965 30 1263 4698 759011 126866 28.7744 28.7744 -241.883 -28.7744 0 0 -1 -1 0.01 0.28 0.03 -1 -1 0.01 0.0527885 0.0460513 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +k4_n4_v7_bidir.xml styr.blif common 0.99 vpr 59.04 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 72 10 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 60460 10 10 253 263 1 171 92 11 11 121 clb auto 19.8 MiB 0.03 1829 1341 4439 719 3525 195 59.0 MiB 0.03 0.00 8.75156 5.95188 -76.2362 -5.95188 5.95188 0.03 0.000369091 0.000332668 0.0100569 0.0091901 -1 -1 -1 -1 14 2179 38 2.43e+06 2.16e+06 -1 -1 0.45 0.0941641 0.0811795 3402 27531 -1 1923 17 1033 3494 176707 22465 7.58177 7.58177 -95.383 -7.58177 0 0 -1 -1 0.00 0.04 0.01 -1 -1 0.00 0.0164104 0.0147275 +k4_n4_v7_longline_bidir.xml styr.blif common 0.93 vpr 58.68 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 72 10 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 60084 10 10 253 263 1 171 92 11 11 121 clb auto 19.5 MiB 0.03 1829 1318 3611 426 3020 165 58.7 MiB 0.02 0.00 5.19817 4.47516 -54.2373 -4.47516 4.47516 0.04 0.000369472 0.000337461 0.00887057 0.00812854 -1 -1 -1 -1 17 2528 41 2.43e+06 2.16e+06 -1 -1 0.36 0.0873451 0.075572 3202 31699 -1 2252 25 1472 4968 313575 40767 9.40236 9.40236 -107.704 -9.40236 0 0 -1 -1 0.01 0.06 0.01 -1 -1 0.01 0.0212313 0.0188588 +k4_n4_v7_l1_bidir.xml styr.blif common 1.05 vpr 58.30 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 72 10 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 59704 10 10 253 263 1 171 92 11 11 121 clb auto 19.1 MiB 0.03 1829 1340 8579 1857 6361 361 58.3 MiB 0.04 0.00 11.3865 6.30908 -81.1511 -6.30908 6.30908 0.04 0.000366977 0.000330995 0.0174482 0.0159247 -1 -1 -1 -1 11 1565 28 2.43e+06 2.16e+06 -1 -1 0.45 0.0856261 0.0746974 4842 26035 -1 1365 23 1309 5061 314893 55846 8.55913 8.55913 -101.511 -8.55913 0 0 -1 -1 0.00 0.06 0.01 -1 -1 0.00 0.0198322 0.0175973 +k4_n4_v7_bidir_pass_gate.xml styr.blif common 1.29 vpr 59.10 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 72 10 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 60520 10 10 253 263 1 171 92 11 11 121 clb auto 19.6 MiB 0.03 1829 1326 4025 528 3322 175 59.1 MiB 0.02 0.00 4.50889 3.47884 -44.786 -3.47884 3.47884 0.03 0.000378131 0.000339956 0.00936549 0.00859198 -1 -1 -1 -1 16 2193 28 2.43e+06 2.16e+06 -1 -1 0.67 0.09289 0.0804764 3522 30407 -1 2061 19 1236 4213 766518 139225 14.4125 14.4125 -146.898 -14.4125 0 0 -1 -1 0.00 0.12 0.01 -1 -1 0.00 0.017958 0.0160944 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_binary/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_binary/config/golden_results.txt index 99bb28a8269..1eefaffbf17 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_binary/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_binary/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 ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - k6_N10_mem32K_40nm.xml stereovision3.v common_--verify_binary_search_off 2.33 vpr 66.02 MiB -1 -1 0.85 26768 5 0.17 -1 -1 37096 -1 -1 12 10 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 67604 10 2 181 183 1 35 24 6 6 36 clb auto 26.9 MiB 0.04 152 432 67 335 30 66.0 MiB 0.03 0.00 2.14643 -92.8849 -2.14643 2.14643 0.04 0.000423798 0.000369821 0.00844968 0.00761151 -1 -1 -1 -1 12 196 16 646728 646728 19965.4 554.594 0.19 0.07328 0.0645326 1696 3924 -1 174 13 186 392 8874 2604 2.14935 2.14935 -96.0816 -2.14935 0 0 25971.8 721.439 0.00 0.03 0.01 -1 -1 0.00 0.0168546 0.0152174 - k6_N10_mem32K_40nm.xml stereovision3.v common_--verify_binary_search_on 2.62 vpr 65.81 MiB -1 -1 0.84 26884 5 0.22 -1 -1 36840 -1 -1 12 10 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 67392 10 2 181 183 1 35 24 6 6 36 clb auto 26.8 MiB 0.05 152 432 67 335 30 65.8 MiB 0.02 0.00 2.14643 -92.8849 -2.14643 2.14643 0.05 0.000430785 0.000371967 0.00760808 0.00673261 -1 -1 -1 -1 12 196 16 646728 646728 19965.4 554.594 0.40 0.162173 0.135998 1696 3924 -1 174 13 186 392 8874 2604 2.14935 2.14935 -96.0816 -2.14935 0 0 25971.8 721.439 0.00 0.05 0.01 -1 -1 0.00 0.0294148 0.0268014 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +k6_N10_mem32K_40nm.xml stereovision3.v common_--verify_binary_search_off 1.34 vpr 64.70 MiB -1 -1 0.42 23428 5 0.11 -1 -1 33000 -1 -1 12 10 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66248 10 2 181 183 1 36 24 6 6 36 clb auto 25.2 MiB 0.02 196 151 500 122 353 25 64.7 MiB 0.01 0.00 2.24217 2.14643 -91.6412 -2.14643 2.14643 0.01 0.000227544 0.000206917 0.00459824 0.0042382 -1 -1 -1 -1 12 169 17 646728 646728 19965.4 554.594 0.05 0.0320813 0.0276697 1696 3924 -1 165 16 218 500 9678 3037 2.12594 2.12594 -92.801 -2.12594 0 0 25971.8 721.439 0.00 0.01 0.00 -1 -1 0.00 0.010025 0.0089725 +k6_N10_mem32K_40nm.xml stereovision3.v common_--verify_binary_search_on 1.40 vpr 64.32 MiB -1 -1 0.42 23432 5 0.11 -1 -1 32976 -1 -1 12 10 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65864 10 2 181 183 1 36 24 6 6 36 clb auto 25.2 MiB 0.02 196 151 500 122 353 25 64.3 MiB 0.01 0.00 2.24217 2.14643 -91.6412 -2.14643 2.14643 0.01 0.000220507 0.000200662 0.0045838 0.00422736 -1 -1 -1 -1 12 169 17 646728 646728 19965.4 554.594 0.12 0.0664389 0.0562702 1696 3924 -1 165 16 218 500 9678 3037 2.12594 2.12594 -92.801 -2.12594 0 0 25971.8 721.439 0.00 0.01 0.00 -1 -1 0.00 0.00984711 0.00881128 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_binary_heap/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_binary_heap/config/golden_results.txt index 5d7f440c1da..9b9daa1ca9d 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_binary_heap/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_binary_heap/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 total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - k6_frac_N10_mem32K_40nm.xml ch_intrinsics.v common_--router_heap_binary 2.91 vpr 67.98 MiB -1 -1 0.40 22276 3 0.11 -1 -1 36796 -1 -1 68 99 1 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 69616 99 130 344 474 1 227 298 12 12 144 clb auto 28.7 MiB 0.20 673 63978 19550 30341 14087 68.0 MiB 0.20 0.00 1.86472 -118.834 -1.86472 1.86472 0.22 0.000979117 0.000879056 0.0638803 0.0581045 -1 -1 -1 -1 38 1389 12 5.66058e+06 4.21279e+06 319130. 2216.18 0.56 0.199818 0.181639 12522 62564 -1 1120 9 399 643 21323 6785 1.90702 1.90702 -133.259 -1.90702 -1.20917 -0.320482 406292. 2821.48 0.02 0.04 0.10 -1 -1 0.02 0.0304906 0.0285332 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +k6_frac_N10_mem32K_40nm.xml ch_intrinsics.v common_--router_heap_binary 1.68 vpr 66.70 MiB -1 -1 0.22 18444 3 0.06 -1 -1 33084 -1 -1 68 99 1 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 68304 99 130 344 474 1 228 298 12 12 144 clb auto 26.7 MiB 0.11 1675 704 66963 20370 32791 13802 66.7 MiB 0.12 0.00 2.18241 1.84343 -121.838 -1.84343 1.84343 0.09 0.000559141 0.000523608 0.0432041 0.0404375 -1 -1 -1 -1 40 1452 18 5.66058e+06 4.21279e+06 333335. 2314.82 0.33 0.16437 0.150951 12666 64609 -1 1219 12 447 673 30224 10238 2.02932 2.02932 -138.474 -2.02932 -0.424985 -0.298787 419432. 2912.72 0.01 0.03 0.04 -1 -1 0.01 0.0190203 0.0177879 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_blocks_with_no_inputs/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_blocks_with_no_inputs/config/golden_results.txt index c1c20666920..62bfe78ec62 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_blocks_with_no_inputs/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_blocks_with_no_inputs/config/golden_results.txt @@ -1,9 +1,9 @@ - arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - k6_N10_mem32K_40nm.xml ch_intrinsics.v common 3.54 vpr 67.39 MiB -1 -1 0.42 22156 3 0.16 -1 -1 36544 -1 -1 71 99 1 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 69008 99 130 344 474 1 225 301 13 13 169 clb auto 27.8 MiB 0.09 709 69853 20089 36202 13562 67.4 MiB 0.23 0.00 2.16096 -124.938 -2.16096 2.16096 0.29 0.000913323 0.000821579 0.0687918 0.0619499 -1 -1 -1 -1 30 1301 10 6.63067e+06 4.37447e+06 308771. 1827.05 1.05 0.343222 0.313014 11444 57198 -1 1153 11 545 813 32907 9964 1.99803 1.99803 -136.313 -1.99803 -0.30784 -0.0857401 382024. 2260.50 0.04 0.06 0.10 -1 -1 0.04 0.0301423 0.0279655 - k6_N10_mem32K_40nm.xml diffeq1.v common 13.02 vpr 70.71 MiB -1 -1 0.61 26808 15 0.59 -1 -1 38128 -1 -1 61 162 0 5 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 72412 162 96 1009 950 1 665 324 16 16 256 mult_36 auto 31.1 MiB 0.36 5686 93732 25708 60129 7895 70.7 MiB 0.92 0.01 21.5854 -1586.88 -21.5854 21.5854 0.47 0.00359311 0.00328994 0.373845 0.344857 -1 -1 -1 -1 42 11019 36 1.21132e+07 5.26753e+06 637230. 2489.18 7.15 1.94736 1.79599 20148 122574 -1 9118 25 3874 8580 1140724 318272 22.5245 22.5245 -1660.58 -22.5245 0 0 799729. 3123.94 0.07 0.71 0.15 -1 -1 0.07 0.298338 0.280888 - k6_N10_mem32K_40nm.xml single_wire.v common 0.56 vpr 65.29 MiB -1 -1 0.11 20620 1 0.02 -1 -1 33040 -1 -1 0 1 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 66856 1 1 1 2 0 1 2 3 3 9 -1 auto 27.0 MiB 0.00 2 3 0 3 0 65.3 MiB 0.00 0.00 0.18684 -0.18684 -0.18684 nan 0.00 1.0264e-05 6.201e-06 6.8769e-05 4.6066e-05 -1 -1 -1 -1 2 1 1 53894 0 1165.58 129.509 0.00 0.00116982 0.00111262 254 297 -1 1 1 1 1 15 7 0.211201 nan -0.211201 -0.211201 0 0 1165.58 129.509 0.00 0.00 0.00 -1 -1 0.00 0.00106891 0.001042 - k6_N10_mem32K_40nm.xml single_ff.v common 0.54 vpr 65.06 MiB -1 -1 0.09 21000 1 0.02 -1 -1 33296 -1 -1 1 2 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 66620 2 1 3 4 1 3 4 3 3 9 -1 auto 26.6 MiB 0.00 6 9 3 5 1 65.1 MiB 0.00 0.00 0.55247 -0.90831 -0.55247 0.55247 0.01 2.0617e-05 1.4741e-05 0.000141684 0.000107774 -1 -1 -1 -1 2 2 2 53894 53894 1165.58 129.509 0.00 0.00168512 0.00158841 254 297 -1 2 2 3 3 56 20 0.577715 0.577715 -0.9588 -0.577715 0 0 1165.58 129.509 0.00 0.00 0.00 -1 -1 0.00 0.00172391 0.0016612 - k6_N10_mem32K_40nm_i_or_o.xml ch_intrinsics.v common 5.58 vpr 67.37 MiB -1 -1 0.39 22284 3 0.08 -1 -1 36712 -1 -1 71 99 1 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 68984 99 130 344 474 1 225 301 19 19 361 o auto 27.9 MiB 0.07 850 78925 21699 38013 19213 67.4 MiB 0.30 0.00 2.16428 -129.737 -2.16428 2.16428 1.74 0.000907451 0.000818758 0.097179 0.0888059 -1 -1 -1 -1 36 1162 10 1.79173e+07 4.37447e+06 833707. 2309.44 1.42 0.329975 0.298327 24998 161561 -1 1074 10 581 868 36231 9318 1.99581 1.99581 -134.677 -1.99581 -0.182839 -0.0660558 1.02328e+06 2834.56 0.12 0.05 0.23 -1 -1 0.12 0.0286893 0.0266338 - k6_N10_mem32K_40nm_i_or_o.xml diffeq1.v common 20.39 vpr 77.82 MiB -1 -1 0.54 26812 15 0.47 -1 -1 38260 -1 -1 61 162 0 5 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 79688 162 96 1009 950 1 665 324 24 24 576 i auto 30.8 MiB 0.33 7393 99292 28927 58867 11498 77.8 MiB 1.03 0.02 21.7254 -1657.33 -21.7254 21.7254 3.05 0.00462453 0.00428627 0.416981 0.375188 -1 -1 -1 -1 38 12380 31 3.08128e+07 5.26753e+06 1.42563e+06 2475.05 11.34 2.12533 1.94729 42274 284153 -1 10868 19 3672 8078 1198132 301968 22.4983 22.4983 -1725.65 -22.4983 0 0 1.79535e+06 3116.93 0.13 0.60 0.50 -1 -1 0.13 0.215504 0.199648 - k6_N10_mem32K_40nm_i_or_o.xml single_wire.v common 0.51 vpr 65.29 MiB -1 -1 0.10 20720 1 0.02 -1 -1 33044 -1 -1 0 1 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 66852 1 1 1 2 0 1 2 4 4 16 i auto 26.9 MiB 0.00 3 3 0 0 3 65.3 MiB 0.00 0.00 0.18684 -0.18684 -0.18684 nan 0.00 1.1044e-05 6.598e-06 7.3231e-05 5.0487e-05 -1 -1 -1 -1 4 2 1 215576 0 2092.17 130.760 0.00 0.00113801 0.00107607 324 600 -1 2 1 1 1 17 7 0.229376 nan -0.229376 -0.229376 0 0 3281.68 205.105 0.00 0.00 0.00 -1 -1 0.00 0.00158495 0.00154688 - k6_N10_mem32K_40nm_i_or_o.xml single_ff.v common 0.64 vpr 65.29 MiB -1 -1 0.10 20876 1 0.03 -1 -1 33324 -1 -1 1 2 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 66852 2 1 3 4 1 3 4 4 4 16 i auto 27.0 MiB 0.00 7 9 0 1 8 65.3 MiB 0.00 0.00 0.55247 -0.955943 -0.55247 0.55247 0.00 1.4352e-05 9.526e-06 0.000103801 7.6571e-05 -1 -1 -1 -1 6 3 2 215576 53894 3281.68 205.105 0.01 0.00161569 0.00152133 340 760 -1 3 2 3 3 59 19 0.569757 0.569757 -0.969092 -0.569757 0 0 4601.64 287.602 0.00 0.00 0.00 -1 -1 0.00 0.00155787 0.00150496 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +k6_N10_mem32K_40nm.xml ch_intrinsics.v common 1.49 vpr 66.48 MiB -1 -1 0.22 18824 3 0.06 -1 -1 33092 -1 -1 72 99 1 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 68076 99 130 344 474 1 224 302 13 13 169 clb auto 26.8 MiB 0.04 1746 762 68106 19514 34631 13961 66.5 MiB 0.11 0.00 2.21168 1.87164 -122.901 -1.87164 1.87164 0.11 0.000545151 0.000510762 0.0399859 0.0374705 -1 -1 -1 -1 32 1396 14 6.63067e+06 4.42837e+06 323148. 1912.12 0.21 0.10715 0.0986602 11612 59521 -1 1378 10 517 775 49020 15288 2.04417 2.04417 -145.25 -2.04417 -0.103145 -0.0426347 396943. 2348.77 0.01 0.03 0.03 -1 -1 0.01 0.0162028 0.0151156 +k6_N10_mem32K_40nm.xml diffeq1.v common 4.73 vpr 69.38 MiB -1 -1 0.32 23428 15 0.29 -1 -1 34064 -1 -1 61 162 0 5 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 71040 162 96 1009 950 1 667 324 16 16 256 mult_36 auto 29.7 MiB 0.16 9690 5422 80388 23076 51132 6180 69.4 MiB 0.32 0.01 24.8942 21.9154 -1692.2 -21.9154 21.9154 0.18 0.0016374 0.00152032 0.126843 0.118121 -1 -1 -1 -1 40 11149 48 1.21132e+07 5.26753e+06 612675. 2393.26 2.18 0.566686 0.523646 19892 118481 -1 8842 23 4046 9257 1093658 327616 22.4259 22.4259 -1741.35 -22.4259 0 0 771607. 3014.09 0.02 0.23 0.07 -1 -1 0.02 0.0905548 0.0850156 +k6_N10_mem32K_40nm.xml single_wire.v common 0.53 vpr 63.50 MiB -1 -1 0.07 17288 1 0.02 -1 -1 29952 -1 -1 0 1 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65024 1 1 1 2 0 1 2 3 3 9 -1 auto 25.2 MiB 0.00 2 2 3 0 3 0 63.5 MiB 0.00 0.00 0.18684 0.18684 -0.18684 -0.18684 nan 0.00 6.533e-06 3.577e-06 5.4316e-05 3.6591e-05 -1 -1 -1 -1 2 1 1 53894 0 1165.58 129.509 0.00 0.000899985 0.000839888 254 297 -1 1 1 1 1 15 7 0.211201 nan -0.211201 -0.211201 0 0 1165.58 129.509 0.00 0.00 0.00 -1 -1 0.00 0.000879513 0.000848701 +k6_N10_mem32K_40nm.xml single_ff.v common 0.53 vpr 63.50 MiB -1 -1 0.07 17292 1 0.02 -1 -1 29972 -1 -1 1 2 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65020 2 1 3 4 1 3 4 3 3 9 -1 auto 25.2 MiB 0.00 6 6 9 3 5 1 63.5 MiB 0.00 0.00 0.55247 0.55247 -0.90831 -0.55247 0.55247 0.00 1.9086e-05 1.5272e-05 8.8302e-05 6.8383e-05 -1 -1 -1 -1 2 2 2 53894 53894 1165.58 129.509 0.00 0.000997361 0.00092975 254 297 -1 2 2 3 3 56 20 0.577715 0.577715 -0.9588 -0.577715 0 0 1165.58 129.509 0.00 0.00 0.00 -1 -1 0.00 0.000928588 0.000891047 +k6_N10_mem32K_40nm_i_or_o.xml ch_intrinsics.v common 2.68 vpr 66.09 MiB -1 -1 0.23 18680 3 0.06 -1 -1 33044 -1 -1 72 99 1 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 67676 99 130 344 474 1 224 302 19 19 361 o auto 26.0 MiB 0.04 2630 951 69118 18569 36933 13616 66.1 MiB 0.12 0.00 2.44032 1.89487 -136.14 -1.89487 1.89487 0.68 0.000571066 0.000535628 0.0419031 0.0391258 -1 -1 -1 -1 36 1362 12 1.79173e+07 4.42837e+06 833707. 2309.44 0.54 0.158153 0.144928 24998 161561 -1 1242 10 542 821 37855 9195 1.91637 1.91637 -141.984 -1.91637 -0.260117 -0.143334 1.02328e+06 2834.56 0.03 0.03 0.09 -1 -1 0.03 0.0197224 0.0183669 +k6_N10_mem32K_40nm_i_or_o.xml diffeq1.v common 5.48 vpr 76.38 MiB -1 -1 0.31 23816 15 0.29 -1 -1 34012 -1 -1 61 162 0 5 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 78212 162 96 1009 950 1 667 324 24 24 576 i auto 30.0 MiB 0.16 14162 6905 91508 24620 57078 9810 76.4 MiB 0.36 0.01 26.8808 21.7286 -1710.39 -21.7286 21.7286 1.13 0.00162259 0.00150985 0.144903 0.134733 -1 -1 -1 -1 32 12694 37 3.08128e+07 5.26753e+06 1.24505e+06 2161.54 1.45 0.414682 0.384459 39974 242477 -1 10860 26 4768 10723 1400040 362149 22.9048 22.9048 -1885.36 -22.9048 0 0 1.54255e+06 2678.04 0.05 0.27 0.13 -1 -1 0.05 0.0982135 0.0920022 +k6_N10_mem32K_40nm_i_or_o.xml single_wire.v common 0.54 vpr 63.39 MiB -1 -1 0.07 17288 1 0.02 -1 -1 29952 -1 -1 0 1 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 64908 1 1 1 2 0 1 2 4 4 16 i auto 25.1 MiB 0.00 3 3 3 0 0 3 63.4 MiB 0.00 0.00 0.18684 0.18684 -0.18684 -0.18684 nan 0.00 7.064e-06 3.953e-06 5.5843e-05 3.7452e-05 -1 -1 -1 -1 4 2 1 215576 0 2092.17 130.760 0.00 0.000937595 0.000878513 324 600 -1 2 1 1 1 17 7 0.229376 nan -0.229376 -0.229376 0 0 3281.68 205.105 0.00 0.00 0.00 -1 -1 0.00 0.000868787 0.000834386 +k6_N10_mem32K_40nm_i_or_o.xml single_ff.v common 0.53 vpr 63.02 MiB -1 -1 0.07 17672 1 0.02 -1 -1 29920 -1 -1 1 2 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 64528 2 1 3 4 1 3 4 4 4 16 i auto 24.8 MiB 0.00 7 7 9 0 1 8 63.0 MiB 0.00 0.00 0.55247 0.55247 -0.955943 -0.55247 0.55247 0.00 9.672e-06 6.229e-06 7.3202e-05 5.3956e-05 -1 -1 -1 -1 6 3 2 215576 53894 3281.68 205.105 0.00 0.000992269 0.000917558 340 760 -1 3 2 3 3 59 19 0.569757 0.569757 -0.969092 -0.569757 0 0 4601.64 287.602 0.00 0.00 0.00 -1 -1 0.00 0.00094227 0.000904416 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_bounding_box/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_bounding_box/config/golden_results.txt index 278399cb6d8..c7a42e2d8a5 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_bounding_box/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_bounding_box/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 total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - k6_N10_mem32K_40nm.xml stereovision3.v common 1.77 vpr 65.95 MiB -1 -1 0.64 26892 5 0.17 -1 -1 36964 -1 -1 12 10 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 67536 10 2 181 183 1 35 24 6 6 36 clb auto 26.9 MiB 0.04 152 568 210 329 29 66.0 MiB 0.00 0.00 -1 -1 -1 -1 -1 0 0 0 0 -1 -1 -1 -1 12 168 36 646728 646728 19965.4 554.594 0.12 0.0658358 0.0559906 1696 3924 -1 165 24 236 544 12437 3707 2.26842 2.26842 -94.6601 -2.26842 0 0 25971.8 721.439 0.00 0.03 0.00 -1 -1 0.00 0.0200385 0.0180231 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +k6_N10_mem32K_40nm.xml stereovision3.v common 1.30 vpr 64.27 MiB -1 -1 0.42 23048 5 0.11 -1 -1 32508 -1 -1 12 10 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65812 10 2 181 183 1 36 24 6 6 36 clb auto 25.2 MiB 0.02 196 165 874 360 491 23 64.3 MiB 0.00 0.00 -1 -1 -1 -1 -1 -1 0 0 0 0 -1 -1 -1 -1 12 194 14 646728 646728 19965.4 554.594 0.05 0.0268855 0.0229859 1696 3924 -1 170 14 189 408 8500 2615 2.16176 2.16176 -92.1884 -2.16176 0 0 25971.8 721.439 0.00 0.01 0.00 -1 -1 0.00 0.00914723 0.00823102 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_check_route_options/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_check_route_options/config/golden_results.txt index b44eab4cd1c..457ca6aae28 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_check_route_options/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_check_route_options/config/golden_results.txt @@ -1,4 +1,4 @@ - arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - sub_tiles.xml sub_tiles.blif common_--check_route_full 14.98 vpr 58.93 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 6 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 60340 6 7 19 26 0 19 26 3 3 9 -1 auto 20.6 MiB 0.00 51 216 43 63 110 58.9 MiB 0.00 0.00 3.682 -25.774 -3.682 nan 13.82 4.4449e-05 3.636e-05 0.000492339 0.000302558 -1 -1 -1 -1 6 19 3 14813.4 192574 -1 -1 0.14 0.00246861 0.00204917 1370 14749 -1 19 3 36 39 5813 2852 3.87729 nan -27.141 -3.87729 0 0 -1 -1 0.00 0.00 0.05 -1 -1 0.00 0.00171876 0.00162871 - sub_tiles.xml sub_tiles.blif common_--check_route_quick 17.28 vpr 59.05 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 6 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 60472 6 7 19 26 0 19 26 3 3 9 -1 auto 20.6 MiB 0.00 51 216 43 63 110 59.1 MiB 0.00 0.00 3.682 -25.774 -3.682 nan 15.88 4.5558e-05 3.7864e-05 0.000392587 0.000316954 -1 -1 -1 -1 6 19 3 14813.4 192574 -1 -1 0.12 0.00226581 0.00204304 1370 14749 -1 19 3 36 39 5813 2852 3.87729 nan -27.141 -3.87729 0 0 -1 -1 0.00 0.00 0.03 -1 -1 0.00 0.00121674 0.00115171 - sub_tiles.xml sub_tiles.blif common_--check_route_off 16.44 vpr 58.93 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 6 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 60340 6 7 19 26 0 19 26 3 3 9 -1 auto 20.5 MiB 0.00 51 216 43 63 110 58.9 MiB 0.00 0.00 3.682 -25.774 -3.682 nan 15.05 6.9962e-05 5.8494e-05 0.000570046 0.000472887 -1 -1 -1 -1 6 19 3 14813.4 192574 -1 -1 0.09 0.00239105 0.00217713 1370 14749 -1 19 3 36 39 5813 2852 3.87729 nan -27.141 -3.87729 0 0 -1 -1 0.00 0.00 0.03 -1 -1 0.00 0.00134624 0.00127449 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +sub_tiles.xml sub_tiles.blif common_--check_route_full 4.62 vpr 57.15 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 6 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 58524 6 7 19 26 0 19 26 3 3 9 -1 auto 18.7 MiB 0.00 51 51 216 43 63 110 57.2 MiB 0.00 0.00 3.92819 3.682 -25.774 -3.682 nan 3.90 2.1456e-05 1.7214e-05 0.000207128 0.000166346 -1 -1 -1 -1 6 19 3 14813.4 192574 -1 -1 0.06 0.00133396 0.00120338 1370 14749 -1 19 3 36 39 5813 2852 3.87729 nan -27.141 -3.87729 0 0 -1 -1 0.00 0.00 0.03 -1 -1 0.00 0.0010614 0.00100173 +sub_tiles.xml sub_tiles.blif common_--check_route_quick 4.53 vpr 57.53 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 6 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 58908 6 7 19 26 0 19 26 3 3 9 -1 auto 19.1 MiB 0.00 51 51 216 43 63 110 57.5 MiB 0.00 0.00 3.92819 3.682 -25.774 -3.682 nan 3.82 2.2115e-05 1.7856e-05 0.000217527 0.000170315 -1 -1 -1 -1 6 19 3 14813.4 192574 -1 -1 0.06 0.00124615 0.00111395 1370 14749 -1 19 3 36 39 5813 2852 3.87729 nan -27.141 -3.87729 0 0 -1 -1 0.00 0.00 0.03 -1 -1 0.00 0.00107232 0.00101111 +sub_tiles.xml sub_tiles.blif common_--check_route_off 4.56 vpr 57.15 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 6 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 58520 6 7 19 26 0 19 26 3 3 9 -1 auto 18.7 MiB 0.00 51 51 216 43 63 110 57.1 MiB 0.00 0.00 3.92819 3.682 -25.774 -3.682 nan 3.84 2.2198e-05 1.7921e-05 0.000224128 0.000167458 -1 -1 -1 -1 6 19 3 14813.4 192574 -1 -1 0.06 0.0014896 0.00134369 1370 14749 -1 19 3 36 39 5813 2852 3.87729 nan -27.141 -3.87729 0 0 -1 -1 0.00 0.00 0.03 -1 -1 0.00 0.00102348 0.00096044 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 124aaee2a04..5f3bbb09c0f 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 ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time num_le num_luts num_add_blocks max_add_chain_length num_sub_blocks max_sub_chain_length - k6_frac_N10_4add_2chains_tie_off_depop50_mem20K_22nm.xml mult_4x4.v common 1.66 vpr 66.09 MiB -1 -1 0.12 21064 1 0.03 -1 -1 33388 -1 -1 3 9 0 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 67676 9 8 75 70 1 34 20 5 5 25 clb auto 27.2 MiB 0.65 100 74 24 47 3 66.1 MiB 0.00 0.00 2.48207 -28.4593 -2.48207 2.48207 0.02 0.000164662 0.000145718 0.00164144 0.00155216 -1 -1 -1 -1 38 129 6 151211 75605.7 48493.3 1939.73 0.18 0.0548944 0.0466047 2100 8065 -1 122 13 105 125 3874 2046 2.74837 2.74837 -33.9524 -2.74837 0 0 61632.8 2465.31 0.00 0.01 0.01 -1 -1 0.00 0.00954243 0.00888996 13 18 -1 -1 -1 -1 - k6_frac_N10_4add_2chains_tie_off_depop50_mem20K_22nm.xml mult_9x9.v common 7.16 vpr 67.19 MiB -1 -1 0.14 21572 1 0.04 -1 -1 34020 -1 -1 6 19 0 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 68800 19 18 308 249 1 134 43 5 5 25 clb auto 27.7 MiB 5.80 445 2068 454 1604 10 67.2 MiB 0.04 0.00 4.5386 -91.3528 -4.5386 4.5386 0.02 0.000449316 0.000397091 0.0186893 0.0169167 -1 -1 -1 -1 50 721 33 151211 151211 61632.8 2465.31 0.30 0.144091 0.126311 2268 9834 -1 620 20 733 1185 38218 18241 5.03997 5.03997 -109.631 -5.03997 0 0 77226.2 3089.05 0.00 0.04 0.01 -1 -1 0.00 0.0288144 0.0262691 53 83 -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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time num_le num_luts num_add_blocks max_add_chain_length num_sub_blocks max_sub_chain_length +k6_frac_N10_4add_2chains_tie_off_depop50_mem20K_22nm.xml mult_4x4.v common 1.12 vpr 64.71 MiB -1 -1 0.07 17596 1 0.02 -1 -1 30072 -1 -1 3 9 0 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66268 9 8 75 70 1 34 20 5 5 25 clb auto 25.5 MiB 0.37 114 98 74 21 50 3 64.7 MiB 0.00 0.00 2.48207 2.48207 -27.0891 -2.48207 2.48207 0.01 0.000107575 9.8776e-05 0.00110372 0.00106107 -1 -1 -1 -1 38 138 12 151211 75605.7 48493.3 1939.73 0.06 0.0197476 0.0166644 2100 8065 -1 119 12 82 91 2625 1383 2.45975 2.45975 -29.6014 -2.45975 0 0 61632.8 2465.31 0.00 0.01 0.00 -1 -1 0.00 0.00468675 0.00431297 13 18 -1 -1 -1 -1 +k6_frac_N10_4add_2chains_tie_off_depop50_mem20K_22nm.xml mult_9x9.v common 4.60 vpr 65.51 MiB -1 -1 0.09 18364 1 0.03 -1 -1 30608 -1 -1 9 19 0 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 67084 19 18 308 249 1 135 46 6 6 36 clb auto 26.2 MiB 3.56 587 468 1358 299 1048 11 65.5 MiB 0.02 0.00 4.87574 4.8546 -99.0856 -4.8546 4.8546 0.02 0.000300463 0.000275416 0.00787823 0.00739934 -1 -1 -1 -1 40 1040 31 403230 226817 88484.8 2457.91 0.20 0.07778 0.0678958 3734 16003 -1 750 18 631 1001 35065 15346 5.69994 5.69994 -115.447 -5.69994 0 0 110337. 3064.92 0.00 0.02 0.01 -1 -1 0.00 0.0168321 0.0154848 54 83 -1 -1 -1 -1 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_clock_aliases/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_clock_aliases/config/golden_results.txt index e2bde77991f..316cb57d442 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_clock_aliases/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_clock_aliases/config/golden_results.txt @@ -1,4 +1,4 @@ - arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - timing/k6_N10_40nm.xml clock_aliases.blif common_-sdc_file_sdc/samples/clock_aliases/clk.sdc 0.40 vpr 59.77 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 4 1 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 61208 1 4 28 32 2 10 9 4 4 16 clb auto 21.3 MiB 0.01 21 27 10 10 7 59.8 MiB 0.00 0.00 2.44626 0 0 2.44626 0.01 7.9684e-05 6.8866e-05 0.000576703 0.000522527 -1 -1 -1 -1 8 11 5 72000 72000 5593.62 349.601 0.02 0.00940561 0.00796331 672 1128 -1 21 6 21 21 561 284 2.37141 2.37141 0 0 0 0 6492.02 405.751 0.00 0.01 0.00 -1 -1 0.00 0.00917782 0.00398665 - timing/k6_N10_40nm.xml clock_aliases.blif common_-sdc_file_sdc/samples/clock_aliases/clk_assign.sdc 0.34 vpr 59.79 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 4 1 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 61228 1 4 28 32 2 10 9 4 4 16 clb auto 21.3 MiB 0.01 21 27 10 10 7 59.8 MiB 0.00 0.00 2.44626 0 0 2.44626 0.01 6.4384e-05 5.704e-05 0.000402489 0.000366894 -1 -1 -1 -1 8 11 5 72000 72000 5593.62 349.601 0.02 0.0100179 0.00835542 672 1128 -1 21 6 21 21 561 284 2.37141 2.37141 0 0 0 0 6492.02 405.751 0.00 0.00 0.00 -1 -1 0.00 0.00286153 0.00265955 - timing/k6_N10_40nm.xml clock_aliases.blif common_-sdc_file_sdc/samples/clock_aliases/counter_clk.sdc 0.31 vpr 59.75 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 4 1 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 61188 1 4 28 32 2 10 9 4 4 16 clb auto 21.1 MiB 0.01 21 27 10 10 7 59.8 MiB 0.00 0.00 2.44626 0 0 2.44626 0.01 6.4879e-05 5.7282e-05 0.000404422 0.000368079 -1 -1 -1 -1 8 11 5 72000 72000 5593.62 349.601 0.02 0.00971796 0.00808787 672 1128 -1 21 6 21 21 561 284 2.37141 2.37141 0 0 0 0 6492.02 405.751 0.00 0.00 0.00 -1 -1 0.00 0.00303232 0.00280678 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +timing/k6_N10_40nm.xml clock_aliases.blif common_-sdc_file_sdc/samples/clock_aliases/clk.sdc 0.31 vpr 58.46 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 4 1 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 59868 1 4 28 32 2 10 9 4 4 16 clb auto 19.8 MiB 0.01 22 21 27 10 10 7 58.5 MiB 0.00 0.00 2.44626 2.44626 0 0 2.44626 0.00 6.53e-05 5.4819e-05 0.000394918 0.000361284 -1 -1 -1 -1 8 11 5 72000 72000 5593.62 349.601 0.02 0.0059078 0.00495365 672 1128 -1 21 6 21 21 561 284 2.37141 2.37141 0 0 0 0 6492.02 405.751 0.00 0.00 0.00 -1 -1 0.00 0.0017688 0.00164015 +timing/k6_N10_40nm.xml clock_aliases.blif common_-sdc_file_sdc/samples/clock_aliases/clk_assign.sdc 0.31 vpr 57.82 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 4 1 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 59208 1 4 28 32 2 10 9 4 4 16 clb auto 19.2 MiB 0.00 22 21 27 10 10 7 57.8 MiB 0.00 0.00 2.44626 2.44626 0 0 2.44626 0.01 4.7045e-05 4.1525e-05 0.000356415 0.000327846 -1 -1 -1 -1 8 11 5 72000 72000 5593.62 349.601 0.02 0.00503283 0.0042397 672 1128 -1 21 6 21 21 561 284 2.37141 2.37141 0 0 0 0 6492.02 405.751 0.00 0.00 0.00 -1 -1 0.00 0.00176555 0.00162958 +timing/k6_N10_40nm.xml clock_aliases.blif common_-sdc_file_sdc/samples/clock_aliases/counter_clk.sdc 0.31 vpr 57.73 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 4 1 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 59112 1 4 28 32 2 10 9 4 4 16 clb auto 19.1 MiB 0.00 22 21 27 10 10 7 57.7 MiB 0.00 0.00 2.44626 2.44626 0 0 2.44626 0.00 4.1269e-05 3.581e-05 0.000380089 0.000351263 -1 -1 -1 -1 8 11 5 72000 72000 5593.62 349.601 0.02 0.00490459 0.00412987 672 1128 -1 21 6 21 21 561 284 2.37141 2.37141 0 0 0 0 6492.02 405.751 0.00 0.00 0.00 -1 -1 0.00 0.00176255 0.0016337 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_clock_aliases_set_delay/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_clock_aliases_set_delay/config/golden_results.txt index 9d76eedbd00..b227476183e 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_clock_aliases_set_delay/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_clock_aliases_set_delay/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 total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - timing/k6_N10_40nm.xml clock_set_delay_aliases.blif common_-sdc_file_sdc/samples/clock_aliases/set_delay.sdc 0.31 vpr 59.78 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 2 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 61216 2 2 22 24 2 4 6 4 4 16 clb auto 21.3 MiB 0.00 8 15 5 7 3 59.8 MiB 0.00 0.00 1.297 0 0 1.297 0.01 5.264e-05 4.5649e-05 0.000308634 0.000273818 -1 -1 -1 -1 6 12 3 72000 36000 4025.56 251.598 0.01 0.002301 0.00212354 660 1032 -1 15 4 8 8 644 530 1.297 1.297 0 0 0 0 5593.62 349.601 0.00 0.00 0.00 -1 -1 0.00 0.00265986 0.00219441 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +timing/k6_N10_40nm.xml clock_set_delay_aliases.blif common_-sdc_file_sdc/samples/clock_aliases/set_delay.sdc 0.29 vpr 58.18 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 2 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 59572 2 2 22 24 2 4 6 4 4 16 clb auto 19.5 MiB 0.00 8 8 15 5 7 3 58.2 MiB 0.00 0.00 1.297 1.297 0 0 1.297 0.01 3.3312e-05 2.8021e-05 0.000249857 0.000222009 -1 -1 -1 -1 6 12 3 72000 36000 4025.56 251.598 0.00 0.00183223 0.00169467 660 1032 -1 15 4 8 8 644 530 1.297 1.297 0 0 0 0 5593.62 349.601 0.00 0.00 0.00 -1 -1 0.00 0.00137997 0.0012867 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_clock_buf/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_clock_buf/config/golden_results.txt index 55f3e1dd3ba..b7e6584d848 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_clock_buf/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_clock_buf/config/golden_results.txt @@ -1,2 +1,2 @@ - arch circuit script_params crit_path_delay_mcw clk_to_clk_cpd clk_to_clk2_cpd clk_to_input_cpd clk_to_output_cpd clk2_to_clk2_cpd clk2_to_clk_cpd clk2_to_input_cpd clk2_to_output_cpd input_to_input_cpd input_to_clk_cpd input_to_clk2_cpd input_to_output_cpd output_to_output_cpd output_to_clk_cpd output_to_clk2_cpd output_to_input_cpd clk_to_clk_setup_slack clk_to_clk2_setup_slack clk_to_input_setup_slack clk_to_output_setup_slack clk2_to_clk2_setup_slack clk2_to_clk_setup_slack clk2_to_input_setup_slack clk2_to_output_setup_slack input_to_input_setup_slack input_to_clk_setup_slack input_to_clk2_setup_slack input_to_output_setup_slack output_to_output_setup_slack output_to_clk_setup_slack output_to_clk2_setup_slack output_to_input_setup_slack clk_to_clk_hold_slack clk_to_clk2_hold_slack clk_to_input_hold_slack clk_to_output_hold_slack clk2_to_clk2_hold_slack clk2_to_clk_hold_slack clk2_to_input_hold_slack clk2_to_output_hold_slack input_to_input_hold_slack input_to_clk_hold_slack input_to_clk2_hold_slack input_to_output_hold_slack output_to_output_hold_slack output_to_clk_hold_slack output_to_clk2_hold_slack output_to_input_hold_slack - k6_frac_N10_mem32K_40nm_clk_buf.xml multiclock_buf.blif common 1.69449 0.545 -1 -1 -1 0.545 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0.293 -1 -1 -1 0.293 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +arch circuit script_params crit_path_delay_mcw clk_to_clk_cpd clk_to_clk2_cpd clk_to_input_cpd clk_to_output_cpd clk2_to_clk2_cpd clk2_to_clk_cpd clk2_to_input_cpd clk2_to_output_cpd input_to_input_cpd input_to_clk_cpd input_to_clk2_cpd input_to_output_cpd output_to_output_cpd output_to_clk_cpd output_to_clk2_cpd output_to_input_cpd clk_to_clk_setup_slack clk_to_clk2_setup_slack clk_to_input_setup_slack clk_to_output_setup_slack clk2_to_clk2_setup_slack clk2_to_clk_setup_slack clk2_to_input_setup_slack clk2_to_output_setup_slack input_to_input_setup_slack input_to_clk_setup_slack input_to_clk2_setup_slack input_to_output_setup_slack output_to_output_setup_slack output_to_clk_setup_slack output_to_clk2_setup_slack output_to_input_setup_slack clk_to_clk_hold_slack clk_to_clk2_hold_slack clk_to_input_hold_slack clk_to_output_hold_slack clk2_to_clk2_hold_slack clk2_to_clk_hold_slack clk2_to_input_hold_slack clk2_to_output_hold_slack input_to_input_hold_slack input_to_clk_hold_slack input_to_clk2_hold_slack input_to_output_hold_slack output_to_output_hold_slack output_to_clk_hold_slack output_to_clk2_hold_slack output_to_input_hold_slack +k6_frac_N10_mem32K_40nm_clk_buf.xml multiclock_buf.blif common 1.69449 0.545 -1 -1 -1 0.545 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0.293 -1 -1 -1 0.293 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_clock_modeling/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_clock_modeling/config/golden_results.txt index 948d09b747d..e1f6058b268 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_clock_modeling/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/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 ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time num_global_nets num_routed_nets - timing/k6_N10_40nm.xml microbenchmarks/d_flip_flop.v common_--clock_modeling_ideal_--route_chan_width_60 0.26 vpr 59.66 MiB -1 -1 0.07 21096 1 0.02 -1 -1 33168 -1 -1 1 2 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 61096 2 1 3 4 1 3 4 3 3 9 -1 auto 21.4 MiB 0.00 6 9 6 3 0 59.7 MiB 0.00 0.00 0.55447 -0.91031 -0.55447 0.55447 0.00 1.5934e-05 1.0639e-05 9.4808e-05 6.8481e-05 -1 -1 -1 -1 -1 2 4 18000 18000 14049.7 1561.07 0.00 0.00119359 0.00110751 -1 -1 -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_--clock_modeling_route_--route_chan_width_60 0.27 vpr 59.66 MiB -1 -1 0.08 20840 1 0.02 -1 -1 33340 -1 -1 1 2 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 61096 2 1 3 4 1 3 4 3 3 9 -1 auto 21.2 MiB 0.00 9 9 5 2 2 59.7 MiB 0.00 0.00 0.48631 -0.91031 -0.48631 0.48631 0.00 1.6744e-05 1.0373e-05 9.4261e-05 6.634e-05 -1 -1 -1 -1 -1 4 1 18000 18000 15707.9 1745.32 0.00 0.00132946 0.0012632 -1 -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_--clock_modeling_ideal_--route_chan_width_60 31.57 parmys 210.75 MiB -1 -1 25.18 215804 2 1.59 -1 -1 60048 -1 -1 155 5 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 63168 5 156 191 347 1 163 316 15 15 225 clb auto 22.1 MiB 0.04 31 86316 62145 3320 20851 61.7 MiB 0.22 0.02 1.49664 -15.0848 -1.49664 1.49664 0.00 0.000537912 0.000491594 0.0397632 0.036381 -1 -1 -1 -1 -1 50 5 3.042e+06 2.79e+06 863192. 3836.41 0.01 0.0494991 0.045404 -1 -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_--clock_modeling_route_--route_chan_width_60 25.71 parmys 210.82 MiB -1 -1 22.20 215880 2 0.99 -1 -1 60300 -1 -1 155 5 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 62916 5 156 191 347 1 163 316 15 15 225 clb auto 21.9 MiB 0.02 33 86316 61936 3548 20832 61.4 MiB 0.10 0.00 1.51877 -14.6769 -1.51877 1.51877 0.00 0.000236107 0.000213852 0.0263786 0.0239723 -1 -1 -1 -1 -1 59 7 3.042e+06 2.79e+06 892591. 3967.07 0.01 0.0328145 0.0299576 -1 -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_--clock_modeling_ideal_--route_chan_width_60 0.41 vpr 65.16 MiB -1 -1 0.11 20748 1 0.02 -1 -1 33304 -1 -1 1 2 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 66724 2 1 3 4 1 3 4 3 3 9 -1 auto 26.9 MiB 0.00 6 9 6 2 1 65.2 MiB 0.00 0.00 0.55247 -0.90831 -0.55247 0.55247 0.00 1.6453e-05 1.1342e-05 0.000108728 7.9328e-05 -1 -1 -1 -1 -1 2 2 53894 53894 12370.0 1374.45 0.00 0.0015946 0.00150943 -1 -1 -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_--clock_modeling_route_--route_chan_width_60 0.41 vpr 65.16 MiB -1 -1 0.11 21132 1 0.02 -1 -1 33192 -1 -1 1 2 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 66724 2 1 3 4 1 3 4 3 3 9 -1 auto 26.9 MiB 0.00 9 9 5 2 2 65.2 MiB 0.00 0.00 0.48631 -0.90831 -0.48631 0.48631 0.00 1.8934e-05 1.2137e-05 0.000113982 8.1444e-05 -1 -1 -1 -1 -1 8 1 53894 53894 14028.3 1558.70 0.00 0.00161693 0.00153615 -1 -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_--clock_modeling_ideal_--route_chan_width_60 5.07 vpr 72.77 MiB -1 -1 1.12 29456 2 0.10 -1 -1 37868 -1 -1 43 311 15 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 74516 311 156 972 1128 1 953 525 28 28 784 memory auto 32.5 MiB 0.54 8655 197406 67882 119014 10510 72.8 MiB 1.23 0.02 3.83315 -4315.62 -3.83315 3.83315 0.00 0.0052551 0.00459042 0.542684 0.463052 -1 -1 -1 -1 -1 12421 13 4.25198e+07 1.05374e+07 2.96205e+06 3778.13 0.41 0.761716 0.663478 -1 -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_--clock_modeling_route_--route_chan_width_60 5.34 vpr 72.84 MiB -1 -1 1.44 29580 2 0.14 -1 -1 38000 -1 -1 43 311 15 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 74592 311 156 972 1128 1 953 525 28 28 784 memory auto 32.4 MiB 0.55 8675 193172 64013 116396 12763 72.8 MiB 0.82 0.01 3.94715 -3504.6 -3.94715 3.94715 0.00 0.00308193 0.00262987 0.364549 0.310746 -1 -1 -1 -1 -1 12709 18 4.25198e+07 1.05374e+07 3.02951e+06 3864.17 0.33 0.5457 0.474589 -1 -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 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time num_global_nets num_routed_nets +timing/k6_N10_40nm.xml microbenchmarks/d_flip_flop.v common_--clock_modeling_ideal_--route_chan_width_60 0.33 vpr 58.26 MiB -1 -1 0.06 17124 1 0.02 -1 -1 29960 -1 -1 1 2 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 59656 2 1 3 4 1 3 4 3 3 9 -1 auto 19.5 MiB 0.00 6 6 9 6 3 0 58.3 MiB 0.00 0.00 0.631526 0.55447 -0.91031 -0.55447 0.55447 0.00 9.096e-06 5.714e-06 7.2854e-05 5.3361e-05 -1 -1 -1 -1 -1 2 4 18000 18000 14049.7 1561.07 0.00 0.00119026 0.00111378 -1 -1 -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_--clock_modeling_route_--route_chan_width_60 0.35 vpr 57.88 MiB -1 -1 0.06 17120 1 0.02 -1 -1 29900 -1 -1 1 2 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 59272 2 1 3 4 1 3 4 3 3 9 -1 auto 19.5 MiB 0.00 9 9 9 5 2 2 57.9 MiB 0.00 0.00 0.50194 0.48631 -0.91031 -0.48631 0.48631 0.00 1.0552e-05 6.177e-06 7.7442e-05 5.6208e-05 -1 -1 -1 -1 -1 4 1 18000 18000 15707.9 1745.32 0.00 0.00124162 0.00117322 -1 -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_--clock_modeling_ideal_--route_chan_width_60 18.39 parmys 207.19 MiB -1 -1 15.30 212160 2 0.89 -1 -1 56412 -1 -1 155 5 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 61752 5 156 191 347 1 163 316 15 15 225 clb auto 20.3 MiB 0.02 93 31 86316 62044 3278 20994 60.3 MiB 0.08 0.00 1.75726 1.49664 -15.0848 -1.49664 1.49664 0.00 0.000224295 0.000210617 0.0190742 0.0179017 -1 -1 -1 -1 -1 46 7 3.042e+06 2.79e+06 863192. 3836.41 0.01 0.0245095 0.0229368 -1 -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_--clock_modeling_route_--route_chan_width_60 18.49 parmys 207.43 MiB -1 -1 15.24 212412 2 0.90 -1 -1 56416 -1 -1 155 5 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 61372 5 156 191 347 1 163 316 15 15 225 clb auto 20.6 MiB 0.02 102 33 86316 61971 3553 20792 59.9 MiB 0.07 0.00 1.51873 1.47673 -14.6018 -1.47673 1.47673 0.00 0.000227964 0.000214063 0.0189836 0.0177643 -1 -1 -1 -1 -1 49 5 3.042e+06 2.79e+06 892591. 3967.07 0.01 0.0236295 0.02208 -1 -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_--clock_modeling_ideal_--route_chan_width_60 0.38 vpr 63.18 MiB -1 -1 0.06 17272 1 0.02 -1 -1 29964 -1 -1 1 2 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 64696 2 1 3 4 1 3 4 3 3 9 -1 auto 24.5 MiB 0.00 6 6 9 6 2 1 63.2 MiB 0.00 0.00 0.629525 0.55247 -0.90831 -0.55247 0.55247 0.00 9.944e-06 6.35e-06 7.7389e-05 5.7155e-05 -1 -1 -1 -1 -1 2 2 53894 53894 12370.0 1374.45 0.00 0.00103762 0.000966446 -1 -1 -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_--clock_modeling_route_--route_chan_width_60 0.36 vpr 63.41 MiB -1 -1 0.06 17128 1 0.02 -1 -1 29980 -1 -1 1 2 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 64932 2 1 3 4 1 3 4 3 3 9 -1 auto 24.8 MiB 0.00 9 9 9 5 2 2 63.4 MiB 0.00 0.00 0.49994 0.48631 -0.90831 -0.48631 0.48631 0.00 1.0823e-05 6.339e-06 7.8471e-05 5.6828e-05 -1 -1 -1 -1 -1 8 1 53894 53894 14028.3 1558.70 0.00 0.000951333 0.000890977 -1 -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_--clock_modeling_ideal_--route_chan_width_60 2.92 vpr 70.77 MiB -1 -1 0.75 26116 2 0.09 -1 -1 33620 -1 -1 43 311 15 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 72472 311 156 972 1128 1 953 525 28 28 784 memory auto 31.7 MiB 0.27 18876 8963 212225 78866 122905 10454 70.8 MiB 0.61 0.01 4.92557 4.25856 -4308.38 -4.25856 4.25856 0.00 0.00268505 0.00240057 0.286887 0.256005 -1 -1 -1 -1 -1 12922 12 4.25198e+07 1.05374e+07 2.96205e+06 3778.13 0.19 0.383503 0.345483 -1 -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_--clock_modeling_route_--route_chan_width_60 2.96 vpr 71.48 MiB -1 -1 0.73 26120 2 0.09 -1 -1 33580 -1 -1 43 311 15 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 73192 311 156 972 1128 1 953 525 28 28 784 memory auto 32.0 MiB 0.27 19048 9147 216459 76243 126716 13500 71.5 MiB 0.65 0.01 5.19493 4.54954 -3411.74 -4.54954 4.54954 0.00 0.00270574 0.0024254 0.30082 0.26586 -1 -1 -1 -1 -1 13132 15 4.25198e+07 1.05374e+07 3.02951e+06 3864.17 0.22 0.424559 0.380762 -1 -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/strong_clock_pll/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_clock_pll/config/golden_results.txt index 9cebacaf785..5bc7bdd18eb 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_clock_pll/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_clock_pll/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 ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_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 - k6_frac_N10_mem32K_40nm_clk_pll_valid.xml multiclock_buf.blif common 0.85 vpr 66.03 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 4 8 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 67612 8 4 25 28 5 19 19 6 6 36 clb auto 27.5 MiB 0.60 51 194 39 119 36 66.0 MiB 0.01 0.00 1.41795 -5.85435 -1.41795 0.545 0.00 8.3509e-05 6.4713e-05 0.00086545 0.000699438 -1 -1 -1 -1 86 6.14286 35 2.50000 16 16 675 275 431152 215576 56755.0 1576.53 2 2184 7490 -1 1.6578 0.545 -6.7903 -1.6578 -0.42675 -0.369747 0.01 -1 -1 66.0 MiB 0.00 0.00307466 0.00275514 66.0 MiB -1 0.00 - k6_frac_N10_mem32K_40nm_clk_pll_invalid.xml multiclock_buf.blif common 0.03 vpr 20.80 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 exited with return code 1 v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 21296 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time 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 +k6_frac_N10_mem32K_40nm_clk_pll_valid.xml multiclock_buf.blif common 0.34 vpr 63.98 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 4 8 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65512 8 4 25 28 5 19 19 6 6 36 clb auto 25.3 MiB 0.17 73 51 194 39 119 36 64.0 MiB 0.00 0.00 1.51369 1.41795 -5.85435 -1.41795 0.545 0.00 3.4898e-05 2.684e-05 0.000448159 0.000363972 -1 -1 -1 -1 86 6.14286 35 2.50000 16 16 673 275 431152 215576 56755.0 1576.53 2 2184 7490 -1 1.6578 0.545 -6.7903 -1.6578 -0.42675 -0.369747 0.00 -1 -1 64.0 MiB 0.00 0.00175021 0.00156962 64.0 MiB -1 0.00 +k6_frac_N10_mem32K_40nm_clk_pll_invalid.xml multiclock_buf.blif common 0.04 vpr 18.51 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 exited with return code 1 v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 18952 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -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_strong/strong_constant_outputs/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_constant_outputs/config/golden_results.txt index c751724ac21..feaca68d693 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_constant_outputs/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_constant_outputs/config/golden_results.txt @@ -1,2 +1,2 @@ - arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - k6_N10_mem32K_40nm.xml constant_outputs_only.blif common 0.30 vpr 65.00 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 0 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 66556 -1 2 2 4 0 2 4 4 4 16 clb auto 26.8 MiB 0.00 0 9 0 2 7 65.0 MiB 0.00 0.00 nan 0 0 nan 0.01 9.099e-06 4.802e-06 6.6245e-05 4.4664e-05 -1 -1 -1 -1 2 0 1 107788 107788 1342.00 83.8749 0.00 0.00112148 0.00105568 504 462 -1 0 1 0 0 0 0 nan nan 0 0 0 0 1342.00 83.8749 0.00 0.00 0.00 -1 -1 0.00 0.00152182 0.00148612 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +k6_N10_mem32K_40nm.xml constant_outputs_only.blif common 0.32 vpr 63.62 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 0 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65152 -1 2 2 4 0 2 4 4 4 16 clb auto 25.0 MiB 0.00 0 0 9 0 2 7 63.6 MiB 0.00 0.00 nan nan 0 0 nan 0.00 8.028e-06 4.217e-06 6.2739e-05 4.2279e-05 -1 -1 -1 -1 2 0 1 107788 107788 1342.00 83.8749 0.00 0.000902134 0.000846924 504 462 -1 0 1 0 0 0 0 nan nan 0 0 0 0 1342.00 83.8749 0.00 0.00 0.00 -1 -1 0.00 0.000893006 0.000861174 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_custom_grid/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_custom_grid/config/golden_results.txt index 19c7fb784a9..4228b940981 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_custom_grid/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_custom_grid/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 ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - fixed_grid.xml raygentop.v common 36.32 vpr 86.72 MiB -1 -1 4.05 45484 3 0.90 -1 -1 40972 -1 -1 129 236 1 6 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 88800 236 305 3199 3011 1 1520 677 25 25 625 -1 25x25 45.9 MiB 3.77 14108 309661 104995 184095 20571 86.7 MiB 2.82 0.04 4.79923 -2884.9 -4.79923 4.79923 1.31 0.00890658 0.00798503 1.05545 0.927146 -1 -1 -1 -1 58 25094 44 3.19446e+07 9.87633e+06 2.35761e+06 3772.18 18.23 4.76599 4.25993 69363 480205 -1 22477 18 6375 16887 1571491 383129 5.01505 5.01505 -3124.26 -5.01505 0 0 3.00727e+06 4811.63 0.12 0.58 0.43 -1 -1 0.12 0.287158 0.267873 - column_io.xml raygentop.v common 21.72 vpr 86.87 MiB -1 -1 3.94 45412 3 0.59 -1 -1 40804 -1 -1 129 236 1 6 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 88956 236 305 3199 3011 1 1520 677 25 25 625 io auto 46.1 MiB 2.22 12585 268067 93998 147700 26369 86.9 MiB 1.58 0.02 4.73901 -2866.75 -4.73901 4.73901 0.71 0.00580557 0.00496502 0.564483 0.497852 -1 -1 -1 -1 54 26673 50 2.82259e+07 9.87633e+06 2.01770e+06 3228.33 9.11 2.60416 2.32669 60384 399159 -1 22031 17 6221 15823 1566992 390050 4.92063 4.92063 -3214.76 -4.92063 0 0 2.61977e+06 4191.64 0.11 0.57 0.36 -1 -1 0.11 0.283045 0.264698 - multiwidth_blocks.xml raygentop.v common 24.35 vpr 86.45 MiB -1 -1 4.29 45400 3 0.88 -1 -1 40680 -1 -1 129 236 1 6 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 88524 236 305 3199 3011 1 1520 677 19 19 361 io clb auto 45.5 MiB 3.44 13659 253212 84696 147080 21436 86.4 MiB 2.39 0.03 4.97053 -2888.67 -4.97053 4.97053 0.57 0.0095941 0.00864195 0.904905 0.798443 -1 -1 -1 -1 70 23087 25 1.65001e+07 9.87633e+06 1.31889e+06 3653.42 9.29 3.5266 3.16984 37321 246261 -1 21189 14 5796 14717 1380152 383870 5.13329 5.13329 -3164.24 -5.13329 0 0 1.66774e+06 4619.77 0.06 0.50 0.26 -1 -1 0.06 0.248992 0.232939 - non_column.xml raygentop.v common 55.37 vpr 101.45 MiB -1 -1 4.51 45384 3 0.78 -1 -1 40740 -1 -1 125 236 1 6 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 103880 236 305 3188 3000 1 1523 673 33 33 1089 io auto 46.9 MiB 3.81 15255 254201 81770 140693 31738 97.7 MiB 2.36 0.03 4.86131 -2900.08 -4.86131 4.86131 2.27 0.00977579 0.00884174 0.917497 0.805822 -1 -1 -1 -1 48 30162 49 5.44432e+07 9.66075e+06 2.98548e+06 2741.49 34.00 4.50443 4.0188 95950 575791 -1 25045 20 6804 18118 1664218 433730 5.45028 5.45028 -3158.16 -5.45028 0 0 3.81303e+06 3501.40 0.21 0.95 0.95 -1 -1 0.21 0.482241 0.44347 - non_column_tall_aspect_ratio.xml raygentop.v common 44.05 vpr 108.02 MiB -1 -1 4.73 45644 3 0.86 -1 -1 40856 -1 -1 125 236 1 6 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 110616 236 305 3188 3000 1 1523 673 23 46 1058 io auto 47.3 MiB 3.74 14790 242409 83942 122709 35758 98.8 MiB 2.21 0.03 4.6713 -2947.44 -4.6713 4.6713 2.10 0.00881355 0.00803567 0.866396 0.762137 -1 -1 -1 -1 54 27998 49 5.05849e+07 9.66075e+06 3.28516e+06 3105.07 22.44 5.06657 4.53255 98319 656086 -1 23970 19 6505 16966 1638977 432992 5.05886 5.05886 -3281.32 -5.05886 0 0 4.26512e+06 4031.31 0.30 0.98 1.19 -1 -1 0.30 0.480325 0.442198 - non_column_wide_aspect_ratio.xml raygentop.v common 55.14 vpr 115.98 MiB -1 -1 4.85 45536 3 0.89 -1 -1 40604 -1 -1 125 236 1 6 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 118764 236 305 3188 3000 1 1523 673 53 27 1431 io auto 47.2 MiB 4.13 15438 292525 96949 170972 24604 116.0 MiB 2.79 0.04 4.87363 -3002.95 -4.87363 4.87363 2.83 0.00999099 0.00902684 1.12807 0.98489 -1 -1 -1 -1 46 32183 50 7.18852e+07 9.66075e+06 3.81039e+06 2662.74 30.50 4.16688 3.69158 125381 744275 -1 26057 24 7716 19635 2034521 534369 5.1816 5.1816 -3336.75 -5.1816 0 0 4.88937e+06 3416.75 0.38 1.34 1.15 -1 -1 0.38 0.614347 0.564321 - custom_sbloc.xml raygentop.v common 26.06 vpr 86.32 MiB -1 -1 4.50 45448 3 1.04 -1 -1 40804 -1 -1 129 236 1 6 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 88392 236 305 3199 3011 1 1520 677 19 19 361 io clb auto 45.3 MiB 4.20 13741 271038 86813 158916 25309 86.3 MiB 2.67 0.04 4.66207 -2945.67 -4.66207 4.66207 0.62 0.0101306 0.00867476 0.964821 0.865378 -1 -1 -1 -1 68 24218 46 1.65001e+07 9.87633e+06 1.26689e+06 3509.39 7.14 3.30943 2.96886 36601 241349 -1 21082 17 5846 15055 1419293 377571 4.86127 4.86127 -3204.17 -4.86127 0 0 1.57833e+06 4372.12 0.09 0.93 0.49 -1 -1 0.09 0.46499 0.431595 - multiple_io_types.xml raygentop.v common 162.68 vpr 512.77 MiB -1 -1 4.59 44868 3 0.91 -1 -1 40632 -1 -1 129 236 1 6 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 525072 236 305 3199 3011 1 1520 677 70 70 4900 io_left auto 46.0 MiB 4.88 29540 98720 5114 25125 68481 512.8 MiB 0.75 0.03 4.77694 -3775.91 -4.77694 4.77694 29.11 0.00955143 0.00822118 0.265489 0.23233 -1 -1 -1 -1 46 47171 45 2.76175e+08 9.87633e+06 1.25363e+07 2558.43 103.39 4.74809 4.24216 425698 2387761 -1 40627 18 8645 22202 3622069 899914 5.14884 5.14884 -4109.51 -5.14884 0 0 1.61910e+07 3304.29 1.21 1.53 3.08 -1 -1 1.21 0.445697 0.411568 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +fixed_grid.xml raygentop.v common 17.52 vpr 84.87 MiB -1 -1 2.11 42840 3 0.53 -1 -1 37004 -1 -1 127 236 1 6 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 86904 236 305 3199 3011 1 1523 675 25 25 625 -1 25x25 45.9 MiB 1.88 30826 14481 296575 101967 175892 18716 84.9 MiB 1.19 0.02 7.09553 4.79307 -2895.89 -4.79307 4.79307 0.49 0.00404936 0.00373604 0.453796 0.412288 -1 -1 -1 -1 56 27441 32 3.19446e+07 9.76854e+06 2.27235e+06 3635.76 8.42 1.54762 1.41602 68115 457904 -1 23429 18 6422 16721 1633043 414220 4.92066 4.92066 -3228.39 -4.92066 0 0 2.89946e+06 4639.14 0.09 0.43 0.26 -1 -1 0.09 0.228671 0.215662 +column_io.xml raygentop.v common 13.20 vpr 84.73 MiB -1 -1 2.11 42840 3 0.53 -1 -1 37000 -1 -1 127 236 1 6 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 86760 236 305 3199 3011 1 1523 675 25 25 625 io auto 45.5 MiB 1.86 28947 12805 264026 93507 163068 7451 84.7 MiB 1.07 0.02 6.19083 4.92182 -2798.47 -4.92182 4.92182 0.45 0.00386921 0.003551 0.384409 0.349362 -1 -1 -1 -1 54 25735 23 2.82259e+07 9.76854e+06 2.01770e+06 3228.33 4.39 1.3452 1.22801 60384 399159 -1 22144 15 5803 15289 1517391 375232 5.17726 5.17726 -3105.16 -5.17726 0 0 2.61977e+06 4191.64 0.08 0.39 0.23 -1 -1 0.08 0.208718 0.197683 +multiwidth_blocks.xml raygentop.v common 11.01 vpr 85.16 MiB -1 -1 2.10 42644 3 0.51 -1 -1 37000 -1 -1 127 236 1 6 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 87204 236 305 3199 3011 1 1523 675 19 19 361 io clb auto 45.9 MiB 1.83 27296 13664 243313 79797 144041 19475 85.2 MiB 0.96 0.01 7.04872 4.69621 -2916.6 -4.69621 4.69621 0.21 0.00375866 0.00345546 0.355094 0.322715 -1 -1 -1 -1 70 24143 30 1.65001e+07 9.76854e+06 1.31889e+06 3653.42 3.07 1.33175 1.21367 37321 246261 -1 21464 15 6203 15799 1529026 424169 4.71101 4.71101 -3112.78 -4.71101 0 0 1.66774e+06 4619.77 0.04 0.35 0.16 -1 -1 0.04 0.187972 0.177589 +non_column.xml raygentop.v common 14.99 vpr 98.91 MiB -1 -1 2.24 41936 3 0.48 -1 -1 38412 -1 -1 126 236 1 6 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 101288 236 305 3188 3000 1 1520 674 33 33 1089 io auto 46.7 MiB 1.99 36533 15061 269488 91860 157197 20431 97.4 MiB 1.00 0.01 7.4161 4.90918 -2943.89 -4.90918 4.90918 0.82 0.00384724 0.00350765 0.37964 0.345058 -1 -1 -1 -1 54 27586 33 5.44432e+07 9.71464e+06 3.30487e+06 3034.77 4.75 1.37884 1.25939 100302 649205 -1 23881 20 6491 17318 1529311 414224 6.12281 6.12281 -3223.84 -6.12281 0 0 4.28921e+06 3938.67 0.13 0.43 0.50 -1 -1 0.13 0.232808 0.218578 +non_column_tall_aspect_ratio.xml raygentop.v common 16.02 vpr 97.64 MiB -1 -1 2.30 42268 3 0.49 -1 -1 38420 -1 -1 126 236 1 6 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 99984 236 305 3188 3000 1 1520 674 23 46 1058 io auto 48.2 MiB 1.93 38199 14733 245856 82760 136190 26906 95.4 MiB 0.94 0.01 8.90911 4.95032 -2931.23 -4.95032 4.95032 0.79 0.003732 0.00342402 0.351006 0.319132 -1 -1 -1 -1 52 28730 41 5.05849e+07 9.71464e+06 3.17293e+06 2998.99 5.91 1.39167 1.27101 97261 632982 -1 24184 19 6976 18077 1589447 411584 5.61027 5.61027 -3209.89 -5.61027 0 0 4.15960e+06 3931.57 0.13 0.42 0.46 -1 -1 0.13 0.222476 0.208816 +non_column_wide_aspect_ratio.xml raygentop.v common 16.23 vpr 114.89 MiB -1 -1 2.23 42456 3 0.51 -1 -1 38084 -1 -1 126 236 1 6 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 117652 236 305 3188 3000 1 1520 674 53 27 1431 io auto 47.4 MiB 2.01 41800 15715 293120 96558 176401 20161 114.9 MiB 1.13 0.02 8.75852 4.83208 -2966.14 -4.83208 4.83208 1.11 0.00394946 0.00359569 0.43193 0.391243 -1 -1 -1 -1 50 29305 30 7.18852e+07 9.71464e+06 4.09444e+06 2861.24 5.10 1.45359 1.3252 128243 787897 -1 25411 18 6656 17052 1503266 383226 5.17928 5.17928 -3293.35 -5.17928 0 0 5.23266e+06 3656.65 0.17 0.41 0.52 -1 -1 0.17 0.218658 0.206004 +custom_sbloc.xml raygentop.v common 11.14 vpr 85.09 MiB -1 -1 2.11 42068 3 0.51 -1 -1 36976 -1 -1 127 236 1 6 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 87128 236 305 3199 3011 1 1523 675 19 19 361 io clb auto 45.9 MiB 1.88 27296 13137 255149 87552 148387 19210 85.1 MiB 1.03 0.02 7.00084 4.99197 -2892.82 -4.99197 4.99197 0.22 0.00391014 0.00357245 0.373695 0.338718 -1 -1 -1 -1 68 22261 27 1.65001e+07 9.76854e+06 1.26689e+06 3509.39 3.06 1.3486 1.22808 36601 241349 -1 20367 15 5668 14466 1281380 334598 4.957 4.957 -3115.31 -4.957 0 0 1.57833e+06 4372.12 0.04 0.34 0.15 -1 -1 0.04 0.197825 0.186835 +multiple_io_types.xml raygentop.v common 38.75 vpr 510.90 MiB -1 -1 2.11 42452 3 0.54 -1 -1 37000 -1 -1 127 236 1 6 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 523164 236 305 3199 3011 1 1523 675 70 70 4900 io_left auto 45.9 MiB 2.29 68337 27793 95363 4323 24983 66057 510.9 MiB 0.44 0.01 10.4866 5.00659 -3523.06 -5.00659 5.00659 12.29 0.00405701 0.00372146 0.166522 0.152725 -1 -1 -1 -1 52 42943 37 2.76175e+08 9.76854e+06 1.39708e+07 2851.19 12.38 1.27647 1.16971 445294 2682153 -1 37901 18 8291 21706 3271061 840277 5.11058 5.11058 -3856.44 -5.11058 0 0 1.83718e+07 3749.35 0.63 0.68 1.74 -1 -1 0.63 0.221189 0.207674 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_custom_pin_locs/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_custom_pin_locs/config/golden_results.txt index 9ad80c43a91..a52c4e985c2 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_custom_pin_locs/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_custom_pin_locs/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 total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - k6_frac_N10_mem32K_40nm_custom_pins.xml ch_intrinsics.v common 3.10 vpr 67.93 MiB -1 -1 0.36 22040 3 0.12 -1 -1 36928 -1 -1 68 99 1 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 69560 99 130 344 474 1 227 298 12 12 144 clb auto 28.6 MiB 0.23 673 63978 19550 30341 14087 67.9 MiB 0.25 0.01 1.86472 -118.834 -1.86472 1.86472 0.23 0.00124652 0.00114654 0.0791433 0.0725521 -1 -1 -1 -1 38 1384 9 5.66058e+06 4.21279e+06 328943. 2284.32 0.66 0.24355 0.222932 12522 66188 -1 1114 9 395 636 21516 6871 1.90702 1.90702 -133.439 -1.90702 -1.20917 -0.320482 418267. 2904.63 0.04 0.05 0.10 -1 -1 0.04 0.0351893 0.0324309 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +k6_frac_N10_mem32K_40nm_custom_pins.xml ch_intrinsics.v common 1.65 vpr 66.48 MiB -1 -1 0.22 18444 3 0.06 -1 -1 33100 -1 -1 68 99 1 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 68076 99 130 344 474 1 228 298 12 12 144 clb auto 27.1 MiB 0.10 1675 704 66963 20370 32791 13802 66.5 MiB 0.11 0.00 2.18241 1.84343 -121.838 -1.84343 1.84343 0.10 0.000547023 0.000511318 0.0407422 0.0381484 -1 -1 -1 -1 40 1447 14 5.66058e+06 4.21279e+06 343462. 2385.15 0.33 0.154346 0.141557 12666 68385 -1 1229 9 430 657 29320 9898 2.03042 2.03042 -138.775 -2.03042 -0.436676 -0.298787 431791. 2998.55 0.01 0.02 0.04 -1 -1 0.01 0.0159269 0.0149459 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_custom_sb_loc/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_custom_sb_loc/config/golden_results.txt index 88d0cc36263..7a201af14f7 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_custom_sb_loc/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_custom_sb_loc/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_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 ucsb_152_tap_fir_stratixiv_arch_timing.blif common 65.74 vpr 1.17 GiB 42 758 0 0 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 1222776 13 29 26295 20086 1 12439 800 40 32 1280 -1 EP4SGX110 1063.6 MiB 14.29 72376 238368 44187 187356 6825 1172.1 MiB 12.27 0.21 5.14869 -5574.19 -4.14869 2.7734 0.01 0.0513395 0.0444487 3.37672 2.67885 83490 6.71303 20017 1.60947 25863 35776 9229792 1644713 0 0 2.34683e+07 18334.6 15 375646 4004209 -1 5.37962 2.85331 -5732.11 -4.37962 0 0 7.55 -1 -1 1172.1 MiB 6.09 5.72718 4.67253 1172.1 MiB -1 3.79 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est 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 ucsb_152_tap_fir_stratixiv_arch_timing.blif common 35.31 vpr 1.17 GiB 42 749 0 0 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 1222524 13 29 26295 20086 1 12646 791 40 32 1280 -1 EP4SGX110 1077.3 MiB 7.77 239076 73734 242087 47102 187997 6988 1170.3 MiB 6.30 0.09 5.63444 5.39011 -5538.73 -4.39011 2.81304 0.01 0.0220364 0.0193919 1.79552 1.47773 84889 6.71378 20487 1.62029 25867 34992 8975854 1601365 0 0 2.34683e+07 18334.6 16 375646 4004209 -1 5.63353 2.99154 -5719.81 -4.63353 0 0 3.73 -1 -1 1170.3 MiB 2.72 2.96387 2.51924 1170.3 MiB -1 1.28 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_custom_switch_block/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_custom_switch_block/config/golden_results.txt index f8dbe6d76d8..9399e0cc166 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_custom_switch_block/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_custom_switch_block/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 total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time 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 - k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm.xml ch_intrinsics.v common 2.26 vpr 64.63 MiB -1 -1 0.36 22472 3 0.08 -1 -1 36672 -1 -1 72 99 1 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 66184 99 130 353 483 1 273 302 15 15 225 memory auto 25.1 MiB 0.03 836 70130 21082 33527 15521 64.6 MiB 0.28 0.00 1.52582 -78.5706 -1.52582 1.52582 0.00 0.00103975 0.000940046 0.0805857 0.0730912 -1 -1 -1 -1 1163 5.43458 640 2.99065 663 1535 177334 49638 1.16234e+06 363548 2.18283e+06 9701.45 10 48952 428016 -1 1.65868 1.65868 -90.7494 -1.65868 -2.16982 -0.309514 0.64 -1 -1 64.6 MiB 0.08 0.105372 0.095866 64.6 MiB -1 0.38 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time 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 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm.xml ch_intrinsics.v common 1.29 vpr 62.83 MiB -1 -1 0.27 18364 3 0.06 -1 -1 33116 -1 -1 72 99 1 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 64340 99 130 353 483 1 273 302 15 15 225 memory auto 23.4 MiB 0.02 2130 858 65070 19636 30261 15173 62.8 MiB 0.12 0.00 1.71828 1.52582 -77.3355 -1.52582 1.52582 0.00 0.00058607 0.000549367 0.0386887 0.0361876 -1 -1 -1 -1 1238 5.78505 678 3.16822 700 1565 188506 51086 1.16234e+06 363548 2.18283e+06 9701.45 11 48952 428016 -1 1.60126 1.60126 -87.5381 -1.60126 -2.22487 -0.375057 0.27 -1 -1 62.8 MiB 0.04 0.0551511 0.0514246 62.8 MiB -1 0.14 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_dedicated_clock/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_dedicated_clock/config/golden_results.txt index 01809a06f11..9b0f40005b1 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_dedicated_clock/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_dedicated_clock/config/golden_results.txt @@ -1,4 +1,4 @@ - arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time num_global_nets num_routed_nets - timing/k6_frac_N10_frac_chain_mem32K_htree0_40nm.xml verilog/mkPktMerge.v common_--clock_modeling_dedicated_network 22.14 vpr 81.82 MiB -1 -1 1.50 29500 2 0.12 -1 -1 37736 -1 -1 32 311 15 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 83780 311 156 1015 1158 1 965 514 28 28 784 memory auto 35.0 MiB 0.98 9365 202198 74776 117229 10193 76.8 MiB 1.40 0.02 4.8046 -3913.87 -4.8046 4.8046 1.69 0.00610306 0.00535177 0.650008 0.562031 -1 -1 -1 -1 46 14326 15 4.25198e+07 9.94461e+06 2.42825e+06 3097.26 10.53 2.95135 2.62498 81963 495902 -1 13813 11 2359 2703 832718 314081 4.94363 4.94363 -4384.42 -4.94363 -367.864 -1.26276 3.12000e+06 3979.60 0.25 1.49 0.70 -1 -1 0.25 0.183604 0.168791 15 950 - timing/k6_frac_N10_frac_chain_mem32K_htree0_routedCLK_40nm.xml verilog/mkPktMerge.v common_--clock_modeling_dedicated_network 21.14 vpr 85.34 MiB -1 -1 1.46 29488 2 0.17 -1 -1 37984 -1 -1 32 311 15 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 87384 311 156 1015 1158 1 965 514 28 28 784 memory auto 34.6 MiB 1.02 9365 202198 74776 117229 10193 77.2 MiB 1.49 0.03 4.8046 -3913.87 -4.8046 4.8046 1.72 0.00745529 0.00636204 0.709181 0.610899 -1 -1 -1 -1 46 14531 14 4.25198e+07 9.94461e+06 2.47848e+06 3161.33 10.27 3.22179 2.86209 81963 509322 -1 13895 10 2295 2641 564364 164225 5.2138 5.2138 -4583.26 -5.2138 -149.396 -1.20609 3.17357e+06 4047.92 0.16 0.89 0.46 -1 -1 0.16 0.127663 0.117099 15 950 - timing/k6_frac_N10_frac_chain_mem32K_htree0short_40nm.xml verilog/mkPktMerge.v common_--clock_modeling_dedicated_network 25.61 vpr 78.92 MiB -1 -1 1.51 29244 2 0.15 -1 -1 37516 -1 -1 32 311 15 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 80812 311 156 1015 1158 1 965 514 28 28 784 memory auto 34.8 MiB 0.83 9442 200140 70475 118412 11253 78.1 MiB 1.44 0.02 4.10149 -3784.12 -4.10149 4.10149 1.51 0.00620655 0.00547017 0.672177 0.575194 -1 -1 -1 -1 40 16586 15 4.25198e+07 9.94461e+06 2.15085e+06 2743.43 14.64 1.95101 1.72006 78831 435812 -1 15579 11 2621 3012 1218850 719774 5.45816 5.45816 -4586.28 -5.45816 -1608.52 -3.17721 2.68809e+06 3428.68 0.23 1.76 0.54 -1 -1 0.23 0.216383 0.199419 15 950 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time num_global_nets num_routed_nets +timing/k6_frac_N10_frac_chain_mem32K_htree0_40nm.xml verilog/mkPktMerge.v common_--clock_modeling_dedicated_network 7.83 vpr 76.29 MiB -1 -1 0.77 25744 2 0.08 -1 -1 34464 -1 -1 32 311 15 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 78124 311 156 1015 1158 1 965 514 28 28 784 memory auto 34.3 MiB 0.45 19865 9549 204256 72417 120221 11618 75.2 MiB 0.58 0.01 5.60967 3.86883 -3854.15 -3.86883 3.86883 0.62 0.00251817 0.00223801 0.26652 0.235626 -1 -1 -1 -1 38 15620 13 4.25198e+07 9.94461e+06 2.06185e+06 2629.91 2.65 0.824788 0.739806 78047 421269 -1 14413 13 2666 3203 1457933 704363 4.53757 4.53757 -4350.73 -4.53757 -517.68 -1.45296 2.60823e+06 3326.82 0.08 0.69 0.22 -1 -1 0.08 0.100156 0.0932531 15 950 +timing/k6_frac_N10_frac_chain_mem32K_htree0_routedCLK_40nm.xml verilog/mkPktMerge.v common_--clock_modeling_dedicated_network 7.65 vpr 76.19 MiB -1 -1 0.74 25740 2 0.09 -1 -1 34340 -1 -1 32 311 15 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 78020 311 156 1015 1158 1 965 514 28 28 784 memory auto 34.3 MiB 0.49 19865 9549 204256 72417 120221 11618 75.1 MiB 0.60 0.01 5.60967 3.86883 -3854.15 -3.86883 3.86883 0.65 0.00269112 0.00240935 0.28253 0.250663 -1 -1 -1 -1 36 16026 28 4.25198e+07 9.94461e+06 2.00618e+06 2558.90 2.54 0.974248 0.877683 76483 403003 -1 14763 13 2964 3560 850058 256440 4.32275 4.32275 -4167.47 -4.32275 -202.025 -1.15486 2.47848e+06 3161.33 0.09 0.52 0.21 -1 -1 0.09 0.103198 0.09627 15 950 +timing/k6_frac_N10_frac_chain_mem32K_htree0short_40nm.xml verilog/mkPktMerge.v common_--clock_modeling_dedicated_network 9.40 vpr 77.06 MiB -1 -1 0.72 25744 2 0.08 -1 -1 34472 -1 -1 32 311 15 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 78912 311 156 1015 1158 1 965 514 28 28 784 memory auto 34.3 MiB 0.45 19865 9322 210430 75479 122755 12196 77.1 MiB 0.61 0.01 5.60967 3.96043 -3633.05 -3.96043 3.96043 0.61 0.00270142 0.00233618 0.287893 0.256515 -1 -1 -1 -1 36 16853 27 4.25198e+07 9.94461e+06 1.96702e+06 2508.96 4.16 0.934384 0.84348 76483 392433 -1 15496 13 2658 3060 1573658 1035121 5.75178 5.75178 -4622.22 -5.75178 -1616.18 -3.24966 2.42368e+06 3091.42 0.11 0.81 0.20 -1 -1 0.11 0.100558 0.0936526 15 950 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_default_fc_pinlocs/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_default_fc_pinlocs/config/golden_results.txt index 6c7432d3e12..0dbc3e0ca1d 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_default_fc_pinlocs/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_default_fc_pinlocs/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 total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - k4_N4_90nm_default_fc_pinloc.xml diffeq.blif common 16.52 vpr 71.54 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 438 64 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 73256 64 39 1935 1974 1 1077 541 23 23 529 clb auto 31.4 MiB 0.33 10472 141533 36950 100839 3744 71.5 MiB 1.36 0.02 7.46482 -1369.01 -7.46482 7.46482 0.53 0.00499636 0.00433729 0.369387 0.30729 -1 -1 -1 -1 24 13068 28 983127 976439 797780. 1508.09 10.94 2.01193 1.71604 39018 137339 -1 11478 18 6600 23331 1479297 381870 7.27304 7.27304 -1454.66 -7.27304 0 0 1.04508e+06 1975.57 0.04 0.85 0.23 -1 -1 0.04 0.262211 0.23364 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +k4_N4_90nm_default_fc_pinloc.xml diffeq.blif common 5.00 vpr 70.14 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 439 64 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 71820 64 39 1935 1974 1 1075 542 23 23 529 clb auto 30.0 MiB 0.17 24088 10407 135291 36283 95683 3325 70.1 MiB 0.56 0.01 23.0912 7.70338 -1562.28 -7.70338 7.70338 0.21 0.00207977 0.00177833 0.142029 0.122896 -1 -1 -1 -1 24 13067 26 983127 978669 797780. 1508.09 2.49 0.448442 0.390716 39018 137339 -1 11571 16 6466 23559 1530116 397333 7.70338 7.70338 -1636.85 -7.70338 0 0 1.04508e+06 1975.57 0.02 0.31 0.08 -1 -1 0.02 0.092161 0.0837678 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_depop/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_depop/config/golden_results.txt index 15d40a35dda..9ddaee22f6b 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_depop/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_depop/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 total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - k6_frac_N10_frac_chain_depop50_mem32K_40nm.xml mkSMAdapter4B.v common 34.16 vpr 84.50 MiB -1 -1 7.12 54432 5 2.11 -1 -1 42788 -1 -1 153 193 5 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 86528 193 205 2718 2652 1 1312 556 20 20 400 memory auto 43.4 MiB 1.85 10543 233626 82676 126206 24744 84.5 MiB 2.72 0.04 4.85425 -2733.64 -4.85425 4.85425 0.66 0.00818288 0.00722228 1.06716 0.90034 -1 -1 -1 -1 76 20844 33 2.07112e+07 1.09858e+07 2.02110e+06 5052.76 15.57 4.03457 3.54046 52074 423490 -1 18742 16 4982 13549 1088379 246430 5.27071 5.27071 -2903.22 -5.27071 -6.49744 -0.292146 2.51807e+06 6295.18 0.11 0.47 0.38 -1 -1 0.11 0.260053 0.24125 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +k6_frac_N10_frac_chain_depop50_mem32K_40nm.xml mkSMAdapter4B.v common 14.31 vpr 83.68 MiB -1 -1 3.39 52068 5 1.36 -1 -1 39324 -1 -1 152 193 5 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 85688 193 205 2718 2652 1 1315 555 20 20 400 memory auto 44.0 MiB 0.95 22187 10660 223995 81694 118286 24015 83.7 MiB 1.00 0.01 7.82756 5.10197 -2914.56 -5.10197 5.10197 0.30 0.00338005 0.00303666 0.361314 0.32297 -1 -1 -1 -1 76 21455 22 2.07112e+07 1.09319e+07 2.02110e+06 5052.76 4.74 1.15276 1.03306 52074 423490 -1 19292 16 5251 14325 1187541 264668 5.21056 5.21056 -3121.27 -5.21056 -9.98113 -0.359474 2.51807e+06 6295.18 0.07 0.30 0.24 -1 -1 0.07 0.177801 0.166764 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_detailed_timing/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_detailed_timing/config/golden_results.txt index d0e64cbc176..eafba3af010 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_detailed_timing/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_detailed_timing/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 total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - k6_frac_N10_mem32K_40nm.xml ch_intrinsics.v common 2.94 vpr 67.99 MiB -1 -1 0.39 22036 3 0.12 -1 -1 36636 -1 -1 68 99 1 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 69620 99 130 344 474 1 227 298 12 12 144 clb auto 28.6 MiB 0.20 673 63978 19550 30341 14087 68.0 MiB 0.21 0.00 1.86472 -118.834 -1.86472 1.86472 0.24 0.000996678 0.000900839 0.0648293 0.0586504 -1 -1 -1 -1 38 1389 12 5.66058e+06 4.21279e+06 319130. 2216.18 0.58 0.202532 0.183764 12522 62564 -1 1116 11 409 682 22304 6997 1.90702 1.90702 -133.281 -1.90702 -1.20917 -0.320482 406292. 2821.48 0.02 0.06 0.09 -1 -1 0.02 0.0346978 0.0324594 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +k6_frac_N10_mem32K_40nm.xml ch_intrinsics.v common 1.66 vpr 66.19 MiB -1 -1 0.21 18444 3 0.06 -1 -1 33260 -1 -1 68 99 1 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 67776 99 130 344 474 1 228 298 12 12 144 clb auto 26.7 MiB 0.10 1675 704 66963 20370 32791 13802 66.2 MiB 0.11 0.00 2.18241 1.84343 -121.838 -1.84343 1.84343 0.09 0.000579768 0.000542374 0.0417708 0.0391511 -1 -1 -1 -1 40 1453 15 5.66058e+06 4.21279e+06 333335. 2314.82 0.33 0.160171 0.147086 12666 64609 -1 1222 11 442 668 30453 10334 2.02932 2.02932 -138.236 -2.02932 -0.424985 -0.298787 419432. 2912.72 0.01 0.03 0.04 -1 -1 0.01 0.0178875 0.0167542 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_diff_mux_for_inc_dec_wires/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_diff_mux_for_inc_dec_wires/config/golden_results.txt index 2abafbec4a3..eb67e75c426 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_diff_mux_for_inc_dec_wires/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_diff_mux_for_inc_dec_wires/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 ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - k6_N10_40nm.xml stereovision0.v common 151.16 vpr 252.22 MiB -1 -1 13.65 124444 5 69.06 -1 -1 68628 -1 -1 1352 169 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 258272 169 197 21117 21314 1 6442 1718 39 39 1521 clb auto 120.8 MiB 5.85 49865 999363 355164 624898 19301 252.2 MiB 12.58 0.10 3.94387 -15329.6 -3.94387 3.94387 5.65 0.0282487 0.0224608 3.71486 2.98245 -1 -1 -1 -1 38 62474 28 2.4642e+07 2.4336e+07 4.29790e+06 2825.71 27.54 18.235 14.9379 119030 883757 -1 58887 28 30785 67364 2647531 463217 3.72242 3.72242 -16216.3 -3.72242 0 0 5.41627e+06 3561.00 0.27 2.70 0.65 -1 -1 0.27 1.99577 1.72788 - k6_N10_40nm_diff_switch_for_inc_dec_wires.xml stereovision0.v common 145.25 vpr 237.36 MiB -1 -1 13.92 124256 5 67.78 -1 -1 68500 -1 -1 1342 169 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 243060 169 197 21117 21314 1 6530 1708 39 39 1521 clb auto 120.5 MiB 3.79 49914 971183 338147 610049 22987 237.4 MiB 14.52 0.10 3.63479 -14732.8 -3.63479 3.63479 5.35 0.02794 0.0220913 4.48744 3.66675 -1 -1 -1 -1 40 62766 41 7.37824e+07 7.23272e+07 4.31957e+06 2839.95 22.87 16.3688 13.4703 120550 875283 -1 59263 24 31348 67380 2546099 475966 3.57863 3.57863 -15572.9 -3.57863 0 0 5.40678e+06 3554.75 0.57 4.00 1.03 -1 -1 0.57 2.85785 2.46864 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +k6_N10_40nm.xml stereovision0.v common 72.53 vpr 246.70 MiB -1 -1 8.23 120932 5 28.98 -1 -1 65024 -1 -1 1352 169 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 252616 169 197 21117 21314 1 6509 1718 39 39 1521 clb auto 132.6 MiB 3.02 188600 47945 958223 329930 610922 17371 246.7 MiB 6.36 0.07 7.48908 3.85395 -15165.3 -3.85395 3.85395 3.42 0.0181451 0.0155648 1.86364 1.5515 -1 -1 -1 -1 36 61910 50 2.4642e+07 2.4336e+07 4.11737e+06 2707.01 12.81 6.8221 5.66675 115990 821377 -1 57410 21 30914 66833 2643745 477357 3.6821 3.6821 -15912.4 -3.6821 0 0 5.03985e+06 3313.51 0.18 1.66 0.40 -1 -1 0.18 1.17936 1.0401 +k6_N10_40nm_diff_switch_for_inc_dec_wires.xml stereovision0.v common 70.91 vpr 248.29 MiB -1 -1 7.52 121112 5 28.19 -1 -1 65024 -1 -1 1363 169 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 254252 169 197 21117 21314 1 6565 1729 39 39 1521 clb auto 131.8 MiB 2.87 190099 51107 987164 353007 612737 21420 248.3 MiB 6.23 0.06 9.87654 3.59906 -14959.3 -3.59906 3.59906 3.27 0.0160602 0.0137781 1.82077 1.51774 -1 -1 -1 -1 38 67057 39 7.37824e+07 7.3459e+07 4.16760e+06 2740.04 13.11 6.23411 5.17893 119030 845795 -1 61286 30 33152 70295 2804113 519856 3.34587 3.34587 -15492.9 -3.34587 0 0 5.22668e+06 3436.35 0.18 1.99 0.42 -1 -1 0.18 1.42002 1.25013 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_eblif_vpr/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_eblif_vpr/config/golden_results.txt index 3a5d60de356..473197a68cf 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_eblif_vpr/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_eblif_vpr/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 ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - k6_frac_N10_40nm.xml test_eblif.eblif common 0.36 vpr 60.46 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1 3 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 61908 3 1 5 6 1 4 5 3 3 9 -1 auto 22.0 MiB 0.00 9 12 4 4 4 60.5 MiB 0.00 0.00 0.52647 -0.88231 -0.52647 0.52647 0.00 2.3168e-05 1.5881e-05 0.000156154 0.000121512 -1 -1 -1 -1 20 9 2 53894 53894 4880.82 542.314 0.01 0.00179937 0.00168173 379 725 -1 5 1 3 3 29 19 0.545526 0.545526 -1.07365 -0.545526 0 0 6579.40 731.044 0.00 0.00 0.00 -1 -1 0.00 0.00151021 0.00147037 - k6_frac_N10_40nm.xml conn_order.eblif common 0.33 vpr 60.46 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1 2 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 61912 2 1 4 5 1 3 4 3 3 9 -1 auto 22.1 MiB 0.00 6 9 4 1 4 60.5 MiB 0.00 0.00 0.69084 -1.21731 -0.69084 0.69084 0.00 1.6567e-05 1.1555e-05 0.000123665 9.5691e-05 -1 -1 -1 -1 20 7 2 53894 53894 4880.82 542.314 0.00 0.00181279 0.00171778 379 725 -1 15 1 2 2 51 45 1.70808 1.70808 -2.25272 -1.70808 0 0 6579.40 731.044 0.00 0.00 0.00 -1 -1 0.00 0.00154282 0.00150229 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +k6_frac_N10_40nm.xml test_eblif.eblif common 0.28 vpr 58.58 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1 3 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 59984 3 1 5 6 1 4 5 3 3 9 -1 auto 19.8 MiB 0.00 9 9 12 4 4 4 58.6 MiB 0.00 0.00 0.52647 0.52647 -0.88231 -0.52647 0.52647 0.00 1.1225e-05 7.794e-06 8.6604e-05 6.6961e-05 -1 -1 -1 -1 20 9 2 53894 53894 4880.82 542.314 0.00 0.00101901 0.000945649 379 725 -1 5 1 3 3 29 19 0.545526 0.545526 -1.07365 -0.545526 0 0 6579.40 731.044 0.00 0.00 0.00 -1 -1 0.00 0.00092696 0.000891961 +k6_frac_N10_40nm.xml conn_order.eblif common 0.27 vpr 59.04 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1 2 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 60460 2 1 4 5 1 3 4 3 3 9 -1 auto 20.2 MiB 0.00 6 6 9 4 1 4 59.0 MiB 0.00 0.00 0.69084 0.69084 -1.21731 -0.69084 0.69084 0.00 1.0452e-05 7.093e-06 8.2382e-05 6.3346e-05 -1 -1 -1 -1 20 7 2 53894 53894 4880.82 542.314 0.00 0.000974719 0.000907358 379 725 -1 15 1 2 2 51 45 1.70808 1.70808 -2.25272 -1.70808 0 0 6579.40 731.044 0.00 0.00 0.00 -1 -1 0.00 0.00090434 0.000865615 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_eblif_vpr_write/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_eblif_vpr_write/config/golden_results.txt index 6afcd280a0b..6639b016754 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_eblif_vpr_write/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_eblif_vpr_write/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 total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - arch.xml eblif_write.eblif common 0.28 vpr 58.97 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 3 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 60388 3 2 5 7 1 5 7 4 4 16 ff_tile io_tile auto 20.5 MiB 0.00 14 18 7 10 1 59.0 MiB 0.00 0.00 0.198536 -0.769354 -0.198536 0.198536 0.00 2.2578e-05 1.4571e-05 0.000133192 9.8031e-05 -1 -1 -1 -1 1 8 1 59253.6 29626.8 -1 -1 0.00 0.00167256 0.00156119 136 248 -1 8 1 4 4 68 40 0.189392 0.189392 -0.755508 -0.189392 0 0 -1 -1 0.00 0.00 0.00 -1 -1 0.00 0.00133191 0.00129055 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +arch.xml eblif_write.eblif common 0.26 vpr 57.07 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 3 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 58440 3 2 5 7 1 5 7 4 4 16 ff_tile io_tile auto 18.7 MiB 0.00 16 14 18 7 10 1 57.1 MiB 0.00 0.00 0.247067 0.198536 -0.769354 -0.198536 0.198536 0.00 1.3418e-05 8.319e-06 9.1048e-05 6.8306e-05 -1 -1 -1 -1 1 8 1 59253.6 29626.8 -1 -1 0.00 0.0012188 0.00113608 136 248 -1 8 1 4 4 68 40 0.189392 0.189392 -0.755508 -0.189392 0 0 -1 -1 0.00 0.00 0.00 -1 -1 0.00 0.000858214 0.00082141 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_echo_files/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_echo_files/config/golden_results.txt index 826beb46c2f..8c6f8958beb 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_echo_files/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_echo_files/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 total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - k6_N10_mem32K_40nm.xml stereovision3.v common 1.94 vpr 66.02 MiB -1 -1 0.82 27148 5 0.18 -1 -1 36836 -1 -1 12 10 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 67604 10 2 181 183 1 35 24 6 6 36 clb auto 26.9 MiB 0.09 152 432 67 335 30 66.0 MiB 0.04 0.00 2.14835 -93.0339 -2.14835 2.14835 0.00 0.000434946 0.000380309 0.00759691 0.00679441 -1 -1 -1 -1 -1 145 18 646728 646728 60312.4 1675.34 0.03 0.0281069 0.0251327 -1 -1 -1 -1 -1 -1 -1 -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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +k6_N10_mem32K_40nm.xml stereovision3.v common 1.16 vpr 64.28 MiB -1 -1 0.41 23672 5 0.11 -1 -1 32960 -1 -1 12 10 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65820 10 2 181 183 1 36 24 6 6 36 clb auto 25.3 MiB 0.04 196 151 534 120 387 27 64.3 MiB 0.04 0.00 2.24505 2.14835 -91.7778 -2.14835 2.14835 0.00 0.000220534 0.00020053 0.00485037 0.00446277 -1 -1 -1 -1 -1 141 16 646728 646728 60312.4 1675.34 0.01 0.0147489 0.0132903 -1 -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_strong/strong_equivalent_sites/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_equivalent_sites/config/golden_results.txt index 106e5784d60..765891605f6 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_equivalent_sites/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_equivalent_sites/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 total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - equivalent.xml equivalent.blif common 0.33 vpr 58.91 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 60324 1 1 3 4 0 3 4 4 4 16 io_site_1 auto 20.4 MiB 0.00 9 9 3 6 0 58.9 MiB 0.00 0.00 3.8649 -3.8649 -3.8649 nan 0.00 1.5162e-05 1.0275e-05 0.00029282 0.000262472 -1 -1 -1 -1 1 3 1 59253.6 29626.8 -1 -1 0.00 0.00144752 0.00135246 72 304 -1 3 1 3 3 37 15 3.69193 nan -3.69193 -3.69193 0 0 -1 -1 0.00 0.00 0.00 -1 -1 0.00 0.00148764 0.00144592 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +equivalent.xml equivalent.blif common 0.27 vpr 57.07 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 58436 1 1 3 4 0 3 4 4 4 16 io_site_1 auto 18.3 MiB 0.00 11 9 9 3 6 0 57.1 MiB 0.00 0.00 3.98683 3.8649 -3.8649 -3.8649 nan 0.00 9.355e-06 5.92e-06 6.6641e-05 4.6524e-05 -1 -1 -1 -1 1 3 1 59253.6 29626.8 -1 -1 0.00 0.00114442 0.00107229 72 304 -1 3 1 3 3 37 15 3.69193 nan -3.69193 -3.69193 0 0 -1 -1 0.00 0.00 0.00 -1 -1 0.00 0.000890675 0.00085789 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_fc_abs/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_fc_abs/config/golden_results.txt index f0909e951de..d07d79cabc3 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_fc_abs/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_fc_abs/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 total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - k6_N10_mem32K_40nm_fc_abs.xml stereovision3.v common 2.12 vpr 65.83 MiB -1 -1 0.80 26828 5 0.17 -1 -1 36968 -1 -1 12 10 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 67408 10 2 181 183 1 35 24 6 6 36 clb auto 26.9 MiB 0.03 152 432 67 335 30 65.8 MiB 0.01 0.00 2.15218 -93.3318 -2.15218 2.15218 0.04 0.000541794 0.000472344 0.00646942 0.00583397 -1 -1 -1 -1 8 206 22 646728 646728 33486.6 930.184 0.18 0.0650705 0.0566044 1588 8314 -1 169 20 235 523 16218 5641 2.44258 2.44258 -104.337 -2.44258 0 0 42482.2 1180.06 0.00 0.03 0.01 -1 -1 0.00 0.0191215 0.0169186 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +k6_N10_mem32K_40nm_fc_abs.xml stereovision3.v common 1.33 vpr 64.04 MiB -1 -1 0.42 23364 5 0.11 -1 -1 32976 -1 -1 12 10 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65580 10 2 181 183 1 36 24 6 6 36 clb auto 24.7 MiB 0.02 196 164 398 79 297 22 64.0 MiB 0.01 0.00 2.2508 2.15218 -91.8425 -2.15218 2.15218 0.01 0.000224237 0.000202847 0.00388388 0.0035963 -1 -1 -1 -1 14 175 18 646728 646728 52871.9 1468.66 0.06 0.031454 0.0271745 1728 14180 -1 158 12 158 364 11157 4123 2.26022 2.26022 -100.753 -2.26022 0 0 63794.4 1772.07 0.00 0.01 0.01 -1 -1 0.00 0.00852136 0.00764565 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 70ff5b0f62d..84ede063b47 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,175 +1,181 @@ #block name x y subblk layer block number #---------- -- -- ------ ----- ------------ -o_1_ 4 3 0 0 #0 -o_2_ 1 2 1 0 #1 -o_0_ 3 3 4 0 #2 -n_n1827 3 1 5 0 #3 -n_n1829 3 1 0 0 #4 -n_n1812 1 1 3 0 #5 -n_n1866 3 1 3 0 #6 -n_n1865 4 1 5 0 #7 -[493] 5 4 4 0 #8 -n_n544 4 4 3 0 #9 -n_n416 2 2 2 0 #10 -n_n394 2 1 3 0 #11 -n_n391 2 1 0 0 #12 -n_n300 2 1 1 0 #13 -[260] 3 5 3 0 #14 -n_n437 5 1 3 0 #15 -[223] 3 4 2 0 #16 -[79] 3 5 0 0 #17 -[410] 3 5 4 0 #18 -[516] 4 5 4 0 #19 -[245] 5 5 3 0 #20 -[340] 3 3 5 0 #21 -[432] 3 5 1 0 #22 -[80] 4 4 4 0 #23 -[541] 5 4 2 0 #24 -n_n309 2 1 5 0 #25 -[8] 4 5 1 0 #26 -[546] 4 5 3 0 #27 -n_n706 3 1 2 0 #28 -[261] 3 1 4 0 #29 -[463] 5 2 3 0 #30 -n_n1575 4 5 0 0 #31 -n_n1571 3 4 1 0 #32 -[132] 2 5 4 0 #33 -[355] 3 4 0 0 #34 -[214] 5 3 4 0 #35 -[267] 5 4 0 0 #36 -n_n329 5 1 4 0 #37 -[420] 5 3 1 0 #38 -n_n849 3 1 1 0 #39 -[478] 5 5 0 0 #40 -[578] 1 2 5 0 #41 -[253] 2 3 0 0 #42 -[4] 4 2 0 0 #43 -[56] 1 1 2 0 #44 -[226] 2 2 4 0 #45 -[282] 3 3 2 0 #46 -[377] 1 1 0 0 #47 -[71] 1 1 1 0 #48 -[319] 5 2 0 0 #49 -[233] 2 4 3 0 #50 -[246] 2 4 0 0 #51 -[301] 3 5 5 0 #52 -[441] 2 5 1 0 #53 -[608] 5 4 5 0 #54 -[21] 2 1 2 0 #55 -[311] 4 1 4 0 #56 -[344] 3 2 1 0 #57 -[310] 4 1 3 0 #58 -[315] 4 1 1 0 #59 -[29] 3 2 4 0 #60 -[273] 3 4 5 0 #61 -n_n1690 2 4 4 0 #62 -[383] 4 4 1 0 #63 -[390] 3 2 3 0 #64 -[705] 5 4 3 0 #65 -[41] 5 3 2 0 #66 -[351] 5 2 4 0 #67 -[484] 5 2 5 0 #68 -[437] 5 5 1 0 #69 -[349] 2 3 4 0 #70 -[65] 5 5 4 0 #71 -[221] 4 5 5 0 #72 -[402] 2 4 2 0 #73 -[521] 1 2 0 0 #74 -[767] 4 2 3 0 #75 -[133] 2 5 2 0 #76 -[234] 4 3 4 0 #77 -[868] 3 3 3 0 #78 -[904] 4 3 1 0 #79 -[906] 5 3 3 0 #80 -[919] 4 2 1 0 #81 -[1253] 4 1 0 0 #82 -[1283] 1 2 4 0 #83 -[1340] 3 2 0 0 #84 -[1382] 2 2 5 0 #85 -[1404] 3 2 2 0 #86 -[1417] 1 2 3 0 #87 -[1534] 4 4 2 0 #88 -[1615] 2 5 5 0 #89 -[6947] 3 4 4 0 #90 -[7082] 4 4 0 0 #91 -[7159] 5 2 1 0 #92 -[7165] 5 4 1 0 #93 -[7191] 4 3 2 0 #94 -[7319] 1 3 1 0 #95 -[7321] 3 3 0 0 #96 -[7351] 2 3 5 0 #97 -[7388] 2 2 3 0 #98 -[7423] 2 1 4 0 #99 -[7466] 3 2 5 0 #100 -[7782] 4 3 3 0 #101 -[7822] 3 4 3 0 #102 -[7885] 3 5 2 0 #103 -[7888] 4 2 4 0 #104 -[7997] 5 5 2 0 #105 -[8027] 5 3 0 0 #106 -[50] 2 3 3 0 #107 -[288] 2 3 1 0 #108 -[539] 5 3 5 0 #109 -[372] 4 3 5 0 #110 -n_n1584 2 4 5 0 #111 -[196] 2 3 2 0 #112 -[585] 1 3 2 0 #113 -[365] 4 4 5 0 #114 -[492] 4 2 2 0 #115 -[616] 3 3 1 0 #116 -[430] 2 2 1 0 #117 -[663] 2 2 0 0 #118 -[700] 4 2 5 0 #119 -[322] 1 3 5 0 #120 -[739] 1 3 4 0 #121 -[745] 4 1 2 0 #122 -[771] 2 4 1 0 #123 -[95] 4 5 2 0 #124 -[345] 1 2 2 0 #125 -[759] 1 3 0 0 #126 -[1066] 1 4 3 0 #127 -[7199] 5 2 2 0 #128 -[7969] 2 5 3 0 #129 -[7328] 1 3 3 0 #130 -[7559] 1 4 4 0 #131 -out:o_1_ 6 3 3 0 #132 -out:o_2_ 0 2 3 0 #133 -out:o_0_ 3 6 5 0 #134 -i_30_ 3 6 3 0 #135 -i_20_ 6 5 2 0 #136 -i_9_ 2 0 5 0 #137 -i_10_ 4 0 1 0 #138 -i_7_ 3 6 1 0 #139 -i_8_ 2 0 7 0 #140 -i_5_ 2 0 1 0 #141 -i_6_ 3 0 7 0 #142 -i_27_ 4 6 6 0 #143 -i_14_ 4 6 3 0 #144 -i_3_ 4 6 5 0 #145 -i_28_ 3 0 6 0 #146 -i_13_ 4 6 0 0 #147 -i_4_ 6 1 6 0 #148 -i_25_ 2 6 1 0 #149 -i_12_ 2 0 4 0 #150 -i_1_ 6 1 5 0 #151 -i_26_ 4 0 4 0 #152 -i_11_ 2 0 3 0 #153 -i_2_ 6 1 7 0 #154 -i_23_ 3 6 4 0 #155 -i_18_ 2 0 2 0 #156 -i_24_ 3 0 5 0 #157 -i_17_ 3 6 2 0 #158 -i_0_ 4 0 0 0 #159 -i_21_ 4 6 4 0 #160 -i_16_ 3 6 6 0 #161 -i_22_ 2 0 0 0 #162 -i_32_ 3 0 0 0 #163 -i_31_ 3 6 7 0 #164 -i_34_ 3 6 0 0 #165 -i_33_ 3 0 3 0 #166 -i_19_ 2 0 6 0 #167 -i_36_ 5 6 7 0 #168 -i_35_ 3 0 4 0 #169 -i_38_ 3 0 2 0 #170 -i_29_ 4 6 1 0 #171 -i_37_ 4 0 5 0 #172 +o_1_ 4 1 4 0 #0 +o_2_ 4 3 4 0 #1 +o_0_ 2 2 0 0 #2 +n_n1829 3 5 4 0 #3 +n_n1812 5 3 5 0 #4 +n_n1866 4 5 1 0 #5 +n_n1865 4 5 3 0 #6 +[493] 2 1 2 0 #7 +n_n544 3 1 0 0 #8 +n_n416 4 4 0 0 #9 +n_n394 5 4 5 0 #10 +n_n391 5 3 4 0 #11 +n_n300 4 5 5 0 #12 +[260] 3 2 4 0 #13 +[223] 3 1 4 0 #14 +[79] 2 2 4 0 #15 +[410] 1 3 1 0 #16 +[516] 1 3 2 0 #17 +[530] 1 1 1 0 #18 +[245] 1 2 0 0 #19 +[340] 1 4 4 0 #20 +[432] 3 1 2 0 #21 +[533] 2 3 3 0 #22 +[80] 2 2 5 0 #23 +[535] 1 2 1 0 #24 +n_n316 4 2 4 0 #25 +[541] 1 2 5 0 #26 +n_n1563 2 2 1 0 #27 +n_n1585 2 3 4 0 #28 +[38] 2 3 2 0 #29 +n_n706 4 2 3 0 #30 +n_n608 2 1 1 0 #31 +[261] 4 1 0 0 #32 +[463] 5 1 3 0 #33 +n_n1578 1 2 3 0 #34 +[124] 2 3 1 0 #35 +[132] 3 3 2 0 #36 +[227] 1 1 3 0 #37 +[267] 2 2 2 0 #38 +n_n329 2 2 3 0 #39 +n_n849 4 5 0 0 #40 +[478] 2 3 0 0 #41 +[578] 5 5 0 0 #42 +[253] 5 3 2 0 #43 +[4] 5 4 3 0 #44 +[56] 4 4 3 0 #45 +[226] 4 2 5 0 #46 +[282] 5 4 2 0 #47 +[377] 5 5 4 0 #48 +[71] 5 3 3 0 #49 +[246] 3 2 1 0 #50 +[301] 3 1 1 0 #51 +[311] 4 4 4 0 #52 +[344] 4 4 1 0 #53 +[310] 4 2 2 0 #54 +[315] 4 3 0 0 #55 +[78] 3 5 5 0 #56 +[656] 5 3 0 0 #57 +[29] 2 4 1 0 #58 +[273] 3 1 3 0 #59 +[668] 1 2 4 0 #60 +[674] 5 3 1 0 #61 +[74] 1 2 2 0 #62 +n_n1704 4 1 3 0 #63 +[327] 4 5 2 0 #64 +[305] 1 4 3 0 #65 +n_n1702 4 1 5 0 #66 +[351] 5 2 3 0 #67 +[437] 3 3 3 0 #68 +[349] 5 1 5 0 #69 +[65] 1 1 0 0 #70 +[221] 2 1 5 0 #71 +[343] 3 4 5 0 #72 +[406] 5 2 5 0 #73 +[521] 5 4 0 0 #74 +[161] 3 1 5 0 #75 +[189] 2 4 2 0 #76 +[906] 2 4 3 0 #77 +[977] 4 3 5 0 #78 +[1340] 4 4 5 0 #79 +[1426] 5 2 1 0 #80 +[1435] 5 4 1 0 #81 +[1542] 4 3 3 0 #82 +[1615] 3 4 3 0 #83 +[1619] 4 1 2 0 #84 +[6958] 1 4 2 0 #85 +[7025] 5 2 4 0 #86 +[7082] 1 1 5 0 #87 +[7160] 3 2 2 0 #88 +[7319] 3 4 0 0 #89 +[7321] 4 5 4 0 #90 +[7388] 3 3 0 0 #91 +[7390] 3 5 2 0 #92 +[7787] 1 3 3 0 #93 +[7791] 2 3 5 0 #94 +[7811] 2 1 3 0 #95 +[7822] 4 2 0 0 #96 +[7829] 2 1 4 0 #97 +[7885] 3 4 4 0 #98 +[7899] 1 3 5 0 #99 +[7901] 1 1 4 0 #100 +[7997] 1 3 4 0 #101 +[8027] 2 1 0 0 #102 +[8042] 1 4 1 0 #103 +[50] 3 5 3 0 #104 +[307] 3 2 5 0 #105 +[275] 3 2 3 0 #106 +[372] 3 4 1 0 #107 +[503] 3 5 0 0 #108 +[585] 2 4 4 0 #109 +[63] 2 5 3 0 #110 +[431] 5 2 2 0 #111 +[447] 3 3 1 0 #112 +[615] 2 4 5 0 #113 +n_n1716 1 3 0 0 #114 +[254] 4 3 2 0 #115 +[381] 5 4 4 0 #116 +[430] 4 3 1 0 #117 +[276] 4 4 2 0 #118 +[760] 3 4 2 0 #119 +[768] 4 1 1 0 #120 +[792] 2 5 2 0 #121 +[721] 5 2 0 0 #122 +[877] 3 2 0 0 #123 +[884] 4 2 1 0 #124 +[1021] 3 3 5 0 #125 +[1077] 3 3 4 0 #126 +[1700] 1 4 0 0 #127 +[7108] 2 4 0 0 #128 +[7211] 5 1 1 0 #129 +[7516] 2 5 0 0 #130 +[7531] 2 5 4 0 #131 +[7820] 1 4 5 0 #132 +[7917] 2 5 5 0 #133 +[7028] 2 5 1 0 #134 +[7774] 1 5 5 0 #135 +[7778] 1 5 2 0 #136 +[177] 1 1 2 0 #137 +out:o_1_ 4 0 0 0 #138 +out:o_2_ 4 6 1 0 #139 +out:o_0_ 2 0 4 0 #140 +i_30_ 2 6 7 0 #141 +i_20_ 2 0 3 0 #142 +i_9_ 5 6 5 0 #143 +i_10_ 3 6 6 0 #144 +i_7_ 2 0 5 0 #145 +i_8_ 4 6 4 0 #146 +i_5_ 5 6 6 0 #147 +i_6_ 3 0 3 0 #148 +i_27_ 3 0 1 0 #149 +i_14_ 2 0 1 0 #150 +i_3_ 6 4 5 0 #151 +i_28_ 3 0 7 0 #152 +i_13_ 2 0 2 0 #153 +i_4_ 6 2 7 0 #154 +i_25_ 4 6 0 0 #155 +i_12_ 1 0 4 0 #156 +i_1_ 6 2 2 0 #157 +i_26_ 3 6 2 0 #158 +i_11_ 4 0 1 0 #159 +i_2_ 4 6 7 0 #160 +i_23_ 2 0 7 0 #161 +i_18_ 5 6 4 0 #162 +i_24_ 2 0 6 0 #163 +i_17_ 3 0 0 0 #164 +i_0_ 4 0 5 0 #165 +i_21_ 2 6 1 0 #166 +i_16_ 0 3 0 0 #167 +i_22_ 3 6 0 0 #168 +i_32_ 3 6 7 0 #169 +i_31_ 2 6 5 0 #170 +i_34_ 1 0 6 0 #171 +i_33_ 4 0 7 0 #172 +i_19_ 6 4 6 0 #173 +i_36_ 1 0 1 0 #174 +i_35_ 1 0 7 0 #175 +i_38_ 4 6 3 0 #176 +i_29_ 3 6 1 0 #177 +i_37_ 3 0 6 0 #178 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 e41ab909d3a..98cc3d128ec 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 total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - fix_clusters_test_arch.xml apex2.blif common 14.77 vpr 75.11 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 132 38 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 76916 38 3 1916 1919 0 1054 173 7 7 49 clb auto 34.4 MiB 4.62 5572 1135 0 0 1135 75.1 MiB 0.08 0.01 5.10521 -15.0504 -5.10521 nan 0.19 0.00530639 0.00465724 0.0561264 0.0529208 -1 -1 -1 -1 164 7542 34 1.34735e+06 7.11401e+06 957298. 19536.7 7.09 2.13567 1.82713 18546 296938 -1 6979 21 5560 22630 961929 323712 5.65021 nan -16.5347 -5.65021 0 0 1.19720e+06 24432.6 0.05 0.66 0.37 -1 -1 0.05 0.343651 0.311264 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +fix_clusters_test_arch.xml apex2.blif common 6.23 vpr 73.47 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 138 38 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 75236 38 3 1916 1919 0 1057 179 7 7 49 clb auto 34.1 MiB 2.35 5571 5572 1187 0 0 1187 73.5 MiB 0.04 0.00 4.76188 4.76188 -14.2451 -4.76188 nan 0.08 0.00208545 0.00186173 0.0310117 0.0298705 -1 -1 -1 -1 158 7466 37 1.34735e+06 7.43737e+06 924312. 18863.5 2.34 0.677508 0.587661 18354 286522 -1 7089 17 5844 24589 1071101 337183 5.3663 nan -15.678 -5.3663 0 0 1.15416e+06 23554.3 0.02 0.27 0.14 -1 -1 0.02 0.139789 0.12986 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_fix_pins_random/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_fix_pins_random/config/golden_results.txt index c4013f9bc8c..9b948711612 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_fix_pins_random/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_fix_pins_random/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 total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - k6_N10_mem32K_40nm.xml stereovision3.v common 2.09 vpr 66.02 MiB -1 -1 0.81 27020 5 0.18 -1 -1 36968 -1 -1 12 10 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 67608 10 2 181 183 1 35 24 6 6 36 clb auto 26.9 MiB 0.06 152 364 33 322 9 66.0 MiB 0.01 0.00 2.14643 -90.9948 -2.14643 2.14643 0.04 0.000424487 0.000372936 0.00685813 0.00616631 -1 -1 -1 -1 12 186 21 646728 646728 19965.4 554.594 0.11 0.0652242 0.0564867 1696 3924 -1 174 15 217 480 10553 3153 2.17275 2.17275 -93.6282 -2.17275 0 0 25971.8 721.439 0.00 0.02 0.01 -1 -1 0.00 0.0180304 0.016231 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +k6_N10_mem32K_40nm.xml stereovision3.v common 1.32 vpr 64.27 MiB -1 -1 0.41 23048 5 0.11 -1 -1 32964 -1 -1 12 10 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65816 10 2 181 183 1 36 24 6 6 36 clb auto 24.9 MiB 0.02 196 160 296 27 253 16 64.3 MiB 0.01 0.00 2.24217 2.14643 -91.5793 -2.14643 2.14643 0.01 0.000335492 0.000314689 0.00350594 0.00327742 -1 -1 -1 -1 14 192 17 646728 646728 22986.6 638.518 0.06 0.0356328 0.0309596 1728 4488 -1 182 16 236 481 10669 3290 2.16575 2.16575 -94.0923 -2.16575 0 0 30529.5 848.041 0.00 0.01 0.00 -1 -1 0.00 0.0100937 0.00903234 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_flat_placement/read_write/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_flat_placement/read_write/config/golden_results.txt index ce66e9945a6..23f9598f828 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_flat_placement/read_write/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_flat_placement/read_write/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 total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - k6_frac_N10_40nm.xml alu4.pre-vpr.blif common 1.95 vpr 67.80 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 79 14 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 69432 14 8 926 934 0 494 101 11 11 121 -1 mcnc_small 28.1 MiB 0.87 4705 3156 292 2673 191 67.8 MiB 0.15 0.01 4.69669 -33.5098 -4.69669 nan 0.00 0.00334751 0.00291356 0.0814872 0.072816 -1 -1 -1 -1 -1 6609 17 4.36541e+06 4.25763e+06 511363. 4226.14 0.32 0.279395 0.254136 -1 -1 -1 -1 -1 -1 -1 -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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +k6_frac_N10_40nm.xml alu4.pre-vpr.blif common 1.11 vpr 65.72 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 78 14 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 67296 14 8 926 934 0 487 100 11 11 121 -1 mcnc_small 26.7 MiB 0.56 4953 4661 2884 275 2439 170 65.7 MiB 0.06 0.00 4.90946 4.65107 -32.6907 -4.65107 nan 0.00 0.00127156 0.0011063 0.0300633 0.0277592 -1 -1 -1 -1 -1 6424 17 4.36541e+06 4.20373e+06 511363. 4226.14 0.13 0.110566 0.102078 -1 -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_strong/strong_flat_router/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_flat_router/config/golden_results.txt index 0be72798bb2..7eb8d053014 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_flat_router/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_flat_router/config/golden_results.txt @@ -1,6 +1,6 @@ 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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time -k6_frac_N10_frac_chain_mem32K_40nm.xml spree.v common 6.51 vpr 78.23 MiB -1 -1 1.74 32316 16 0.38 -1 -1 34724 -1 -1 60 45 3 1 success c8266d389-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-58-generic x86_64 2025-05-01T21:51:43 betzgrp-wintermute /home/yanhang1/parallel-router/vtr-verilog-to-routing/vtr_flow/tasks 80104 45 32 1192 1151 1 782 141 14 14 196 memory auto 39.9 MiB 1.74 9794 6883 28689 8164 16986 3539 78.2 MiB 0.35 0.00 11.8719 10.9558 -7219.74 -10.9558 10.9558 0.00 0.00180615 0.00158429 0.162884 0.143795 -1 -1 -1 -1 -1 10585 12 9.20055e+06 5.27364e+06 1.47691e+06 7535.23 1.05 0.208714 0.183536 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -k6_frac_N10_frac_chain_mem32K_40nm.xml spree.v common_--router_algorithm_parallel_--num_workers_4 7.03 vpr 77.86 MiB -1 -1 1.73 32316 16 0.37 -1 -1 34728 -1 -1 60 45 3 1 success c8266d389-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-58-generic x86_64 2025-05-01T21:51:43 betzgrp-wintermute /home/yanhang1/parallel-router/vtr-verilog-to-routing/vtr_flow/tasks 79728 45 32 1192 1151 1 782 141 14 14 196 memory auto 39.6 MiB 1.89 9794 6883 28689 8164 16986 3539 77.9 MiB 0.44 0.01 11.8719 10.9558 -7219.74 -10.9558 10.9558 0.00 0.00273275 0.00231808 0.222874 0.195896 -1 -1 -1 -1 -1 10620 13 9.20055e+06 5.27364e+06 1.47691e+06 7535.23 1.27 0.289534 0.251628 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -k6_frac_N10_frac_chain_mem32K_40nm.xml spree.v common_--enable_parallel_connection_router_on_--astar_fac_0.0_--post_target_prune_fac_0.0_--post_target_prune_offset_0.0 10.17 vpr 78.52 MiB -1 -1 1.76 32332 16 0.37 -1 -1 34728 -1 -1 60 45 3 1 success c8266d389-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-58-generic x86_64 2025-05-01T21:51:43 betzgrp-wintermute /home/yanhang1/parallel-router/vtr-verilog-to-routing/vtr_flow/tasks 80400 45 32 1192 1151 1 782 141 14 14 196 memory auto 40.3 MiB 1.70 9794 6883 28689 8164 16986 3539 78.5 MiB 0.35 0.00 11.8719 10.9558 -7219.74 -10.9558 10.9558 0.00 0.00182918 0.00160106 0.163945 0.144335 -1 -1 -1 -1 -1 10536 11 9.20055e+06 5.27364e+06 1.47691e+06 7535.23 4.73 0.214342 0.188032 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -k6_frac_N10_frac_chain_mem32K_40nm.xml spree.v common_--enable_parallel_connection_router_on_--multi_queue_num_threads_2_--multi_queue_num_queues_4_--astar_fac_0.0_--post_target_prune_fac_0.0_--post_target_prune_offset_0.0 13.04 vpr 78.43 MiB -1 -1 1.72 31948 16 0.38 -1 -1 34428 -1 -1 60 45 3 1 success c8266d389-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-58-generic x86_64 2025-05-01T21:51:43 betzgrp-wintermute /home/yanhang1/parallel-router/vtr-verilog-to-routing/vtr_flow/tasks 80312 45 32 1192 1151 1 782 141 14 14 196 memory auto 40.3 MiB 1.72 9794 6883 28689 8164 16986 3539 78.4 MiB 0.35 0.00 11.8719 10.9558 -7219.74 -10.9558 10.9558 0.00 0.00182981 0.00160205 0.163671 0.144301 -1 -1 -1 -1 -1 10536 11 9.20055e+06 5.27364e+06 1.47691e+06 7535.23 7.56 0.218898 0.192942 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -k6_frac_N10_frac_chain_mem32K_40nm.xml spree.v common_--enable_parallel_connection_router_on_--multi_queue_num_threads_2_--multi_queue_num_queues_8_--multi_queue_direct_draining_on_--astar_fac_0.0_--post_target_prune_fac_0.0_--post_target_prune_offset_0.0 9.13 vpr 78.43 MiB -1 -1 1.78 32312 16 0.37 -1 -1 34724 -1 -1 60 45 3 1 success c8266d389-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-58-generic x86_64 2025-05-01T21:51:43 betzgrp-wintermute /home/yanhang1/parallel-router/vtr-verilog-to-routing/vtr_flow/tasks 80316 45 32 1192 1151 1 782 141 14 14 196 memory auto 40.3 MiB 1.69 9794 6883 28689 8164 16986 3539 78.4 MiB 0.35 0.00 11.8719 10.9558 -7219.74 -10.9558 10.9558 0.00 0.00182715 0.00160038 0.16255 0.143378 -1 -1 -1 -1 -1 10536 11 9.20055e+06 5.27364e+06 1.47691e+06 7535.23 3.64 0.211401 0.186214 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6_frac_N10_frac_chain_mem32K_40nm.xml spree.v common 6.01 vpr 77.68 MiB -1 -1 1.68 32288 16 0.36 -1 -1 34604 -1 -1 61 45 3 1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 79540 45 32 1192 1151 1 792 142 14 14 196 memory auto 40.6 MiB 1.58 10043 6801 30482 8149 18842 3491 77.7 MiB 0.34 0.00 13.3138 11.1501 -7129.64 -11.1501 11.1501 0.00 0.00171355 0.00152094 0.162718 0.14447 -1 -1 -1 -1 -1 10299 11 9.20055e+06 5.32753e+06 1.47691e+06 7535.23 0.88 0.202524 0.179111 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6_frac_N10_frac_chain_mem32K_40nm.xml spree.v common_--router_algorithm_parallel_--num_workers_4 6.27 vpr 77.15 MiB -1 -1 1.71 32288 16 0.37 -1 -1 34608 -1 -1 61 45 3 1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 79000 45 32 1192 1151 1 792 142 14 14 196 memory auto 39.9 MiB 1.64 10043 6801 30482 8149 18842 3491 77.1 MiB 0.39 0.00 13.3138 11.1501 -7129.64 -11.1501 11.1501 0.00 0.00214484 0.00195565 0.196008 0.174756 -1 -1 -1 -1 -1 10115 13 9.20055e+06 5.32753e+06 1.47691e+06 7535.23 0.95 0.248675 0.219198 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6_frac_N10_frac_chain_mem32K_40nm.xml spree.v common_--enable_parallel_connection_router_on_--astar_fac_0.0_--post_target_prune_fac_0.0_--post_target_prune_offset_0.0 9.25 vpr 77.65 MiB -1 -1 1.66 31904 16 0.35 -1 -1 34608 -1 -1 61 45 3 1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 79516 45 32 1192 1151 1 792 142 14 14 196 memory auto 40.6 MiB 1.57 10043 6801 30482 8149 18842 3491 77.7 MiB 0.34 0.00 13.3138 11.1501 -7129.64 -11.1501 11.1501 0.00 0.00177126 0.00157234 0.163228 0.145232 -1 -1 -1 -1 -1 10238 12 9.20055e+06 5.32753e+06 1.47691e+06 7535.23 4.18 0.209091 0.185247 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6_frac_N10_frac_chain_mem32K_40nm.xml spree.v common_--enable_parallel_connection_router_on_--multi_queue_num_threads_2_--multi_queue_num_queues_4_--astar_fac_0.0_--post_target_prune_fac_0.0_--post_target_prune_offset_0.0 9.88 vpr 77.00 MiB -1 -1 1.78 31520 16 0.37 -1 -1 34608 -1 -1 61 45 3 1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 78844 45 32 1192 1151 1 792 142 14 14 196 memory auto 40.0 MiB 1.62 10043 6801 30482 8149 18842 3491 77.0 MiB 0.35 0.00 13.3138 11.1501 -7129.64 -11.1501 11.1501 0.00 0.00173508 0.00153623 0.165626 0.146946 -1 -1 -1 -1 -1 10238 12 9.20055e+06 5.32753e+06 1.47691e+06 7535.23 4.50 0.217008 0.191955 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6_frac_N10_frac_chain_mem32K_40nm.xml spree.v common_--enable_parallel_connection_router_on_--multi_queue_num_threads_2_--multi_queue_num_queues_8_--multi_queue_direct_draining_on_--astar_fac_0.0_--post_target_prune_fac_0.0_--post_target_prune_offset_0.0 8.49 vpr 77.91 MiB -1 -1 1.72 31908 16 0.37 -1 -1 34604 -1 -1 61 45 3 1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 79784 45 32 1192 1151 1 792 142 14 14 196 memory auto 40.6 MiB 1.62 10043 6801 30482 8149 18842 3491 77.9 MiB 0.35 0.00 13.3138 11.1501 -7129.64 -11.1501 11.1501 0.00 0.00171847 0.00152015 0.16361 0.145098 -1 -1 -1 -1 -1 10238 12 9.20055e+06 5.32753e+06 1.47691e+06 7535.23 3.23 0.210793 0.186366 -1 -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_strong/strong_flyover_wires/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_flyover_wires/config/golden_results.txt index 120190057e8..4e9493beb61 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_flyover_wires/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_flyover_wires/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 ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - shorted_flyover_wires.xml raygentop.v common 28.09 vpr 86.75 MiB -1 -1 4.22 45380 3 0.89 -1 -1 40652 -1 -1 129 236 1 6 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 88832 236 305 3199 3011 1 1520 677 19 19 361 io clb auto 45.9 MiB 3.72 13488 259154 85177 151229 22748 86.8 MiB 1.98 0.02 4.96832 -2863.05 -4.96832 4.96832 0.58 0.00616009 0.0056108 0.73686 0.651724 -1 -1 -1 -1 70 25183 26 1.65001e+07 9.87633e+06 1.20853e+06 3347.73 11.82 3.63311 3.252 37321 249029 -1 22818 16 6009 15172 1561129 440571 5.14889 5.14889 -3166.68 -5.14889 0 0 1.52253e+06 4217.55 0.11 0.96 0.44 -1 -1 0.11 0.466679 0.43649 - buffered_flyover_wires.xml raygentop.v common 23.51 vpr 86.14 MiB -1 -1 4.32 45316 3 0.90 -1 -1 40936 -1 -1 129 236 1 6 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 88212 236 305 3199 3011 1 1520 677 19 19 361 io clb auto 45.3 MiB 3.23 13888 238357 80681 139370 18306 86.1 MiB 2.42 0.04 5.12299 -3013.43 -5.12299 5.12299 0.55 0.0104225 0.00890059 0.853806 0.753587 -1 -1 -1 -1 68 27200 39 1.65001e+07 9.87633e+06 1.22105e+06 3382.40 7.94 3.27933 2.93318 36601 236909 -1 22538 20 6241 16122 1654804 449740 5.13382 5.13382 -3162.81 -5.13382 0 0 1.52022e+06 4211.15 0.06 0.81 0.27 -1 -1 0.06 0.458331 0.421893 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +shorted_flyover_wires.xml raygentop.v common 11.46 vpr 85.09 MiB -1 -1 2.03 42452 3 0.51 -1 -1 37000 -1 -1 127 236 1 6 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 87132 236 305 3199 3011 1 1523 675 19 19 361 io clb auto 45.9 MiB 1.81 27296 13779 258108 83434 152259 22415 85.1 MiB 0.97 0.01 7.04327 4.6633 -2876.07 -4.6633 4.6633 0.21 0.00369266 0.0033896 0.35934 0.327445 -1 -1 -1 -1 66 28610 42 1.65001e+07 9.76854e+06 1.15238e+06 3192.19 3.53 1.25456 1.14436 36241 234685 -1 23562 17 7064 18761 2090675 558075 5.13544 5.13544 -3151.56 -5.13544 0 0 1.43513e+06 3975.42 0.04 0.44 0.14 -1 -1 0.04 0.201995 0.190283 +buffered_flyover_wires.xml raygentop.v common 11.12 vpr 85.59 MiB -1 -1 2.02 42076 3 0.51 -1 -1 37000 -1 -1 127 236 1 6 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 87648 236 305 3199 3011 1 1523 675 19 19 361 io clb auto 46.3 MiB 1.81 27785 13427 264026 91487 153189 19350 85.6 MiB 1.03 0.01 6.32496 5.30188 -3110.04 -5.30188 5.30188 0.22 0.00395257 0.00354299 0.383991 0.348239 -1 -1 -1 -1 68 25731 48 1.65001e+07 9.76854e+06 1.22105e+06 3382.40 3.17 1.46185 1.33293 36601 236909 -1 21906 18 6197 16350 1514118 406281 5.17215 5.17215 -3213.24 -5.17215 0 0 1.52022e+06 4211.15 0.04 0.38 0.15 -1 -1 0.04 0.206095 0.194201 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_fpu_hard_block_arch/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_fpu_hard_block_arch/config/golden_results.txt index dabc7597d44..ae490f43ed2 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_fpu_hard_block_arch/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_fpu_hard_block_arch/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 total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time 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 - hard_fpu_arch_timing.xml mm3.v common 6.82 vpr 64.38 MiB -1 -1 0.19 22024 1 0.04 -1 -1 33832 -1 -1 0 193 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 65924 193 32 545 422 1 386 228 22 22 484 block_FPU auto 25.0 MiB 5.38 4984 53124 22938 29850 336 64.4 MiB 0.31 0.00 2.985 -851.626 -2.985 2.985 0.00 0.00244064 0.00235262 0.159831 0.149979 -1 -1 -1 -1 6456 16.7688 1716 4.45714 553 553 191807 53335 882498 103149 1.07647e+06 2224.11 4 26490 217099 -1 2.985 2.985 -877.692 -2.985 -13.5705 -0.0851 0.36 -1 -1 64.4 MiB 0.06 0.186546 0.175569 64.4 MiB -1 0.10 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time 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 +hard_fpu_arch_timing.xml mm3.v common 1.28 vpr 62.66 MiB -1 -1 0.11 18300 1 0.03 -1 -1 30628 -1 -1 0 193 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 64160 193 32 545 422 1 385 229 30 30 900 block_FPU auto 23.1 MiB 0.16 8272 4968 58329 25699 32293 337 62.7 MiB 0.17 0.00 2.985 2.985 -855.954 -2.985 2.985 0.00 0.00102583 0.000966153 0.089769 0.084748 -1 -1 -1 -1 6670 17.3698 1756 4.57292 533 533 185005 50756 1.6779e+06 137533 2.03108e+06 2256.75 5 48532 406344 -1 2.985 2.985 -882.014 -2.985 -13.6953 -0.0851 0.28 -1 -1 62.7 MiB 0.04 0.107853 0.101999 62.7 MiB -1 0.08 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_fracturable_luts/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_fracturable_luts/config/golden_results.txt index e0477400548..f345fde64cd 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_fracturable_luts/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_fracturable_luts/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 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 - k6_N8_I80_fleI10_fleO2_ff2_nmodes_2.xml ch_intrinsics.v common 4.15 vpr 68.14 MiB -1 -1 0.41 22436 3 0.11 -1 -1 37108 -1 -1 67 99 1 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 69772 99 130 344 474 1 216 297 13 13 169 clb auto 28.7 MiB 1.30 640 27027 4243 10587 12197 68.1 MiB 0.05 0.00 34 1346 6 0 0 460544. 2725.11 1.01 +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 initial_placed_wirelength_est 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 +k6_N8_I80_fleI10_fleO2_ff2_nmodes_2.xml ch_intrinsics.v common 2.01 vpr 66.15 MiB -1 -1 0.22 18728 3 0.06 -1 -1 33276 -1 -1 67 99 1 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 67736 99 130 344 474 1 217 297 13 13 169 clb auto 26.3 MiB 0.76 1670 634 27027 2767 7163 17097 66.1 MiB 0.02 0.00 34 1203 16 0 0 460544. 2725.11 0.23 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_full_stats/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_full_stats/config/golden_results.txt index cf73f2ff4e0..247acfa46dc 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_full_stats/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_full_stats/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 total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - k6_N10_mem32K_40nm.xml stereovision3.v common 1.78 vpr 66.14 MiB -1 -1 0.81 27148 5 0.18 -1 -1 37096 -1 -1 12 10 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 67724 10 2 181 183 1 35 24 6 6 36 clb auto 27.0 MiB 0.04 152 432 67 335 30 66.1 MiB 0.01 0.00 2.14835 -93.0339 -2.14835 2.14835 0.00 0.000401166 0.00034964 0.00709766 0.00632609 -1 -1 -1 -1 -1 145 18 646728 646728 60312.4 1675.34 0.03 0.027091 0.0241271 -1 -1 -1 -1 -1 -1 -1 -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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +k6_N10_mem32K_40nm.xml stereovision3.v common 1.06 vpr 63.98 MiB -1 -1 0.41 23428 5 0.10 -1 -1 32964 -1 -1 12 10 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65516 10 2 181 183 1 36 24 6 6 36 clb auto 24.6 MiB 0.02 196 151 534 120 387 27 64.0 MiB 0.01 0.00 2.24505 2.14835 -91.7778 -2.14835 2.14835 0.00 0.000222636 0.000202558 0.0047703 0.00439302 -1 -1 -1 -1 -1 141 16 646728 646728 60312.4 1675.34 0.01 0.01476 0.0132928 -1 -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_strong/strong_func_formal_flow/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_func_formal_flow/config/golden_results.txt index f56e6001d52..79a3b00fa18 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_func_formal_flow/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_func_formal_flow/config/golden_results.txt @@ -1,21 +1,21 @@ - arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - k6_frac_N10_40nm.xml const_true.blif common 0.43 vpr 60.44 MiB -1 -1 -1 -1 0 0.02 -1 -1 33044 -1 -1 1 0 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 61892 -1 1 1 2 0 1 2 3 3 9 -1 auto 22.1 MiB 0.00 0 3 0 0 3 60.4 MiB 0.00 0.00 nan 0 0 nan 0.00 1.4987e-05 8.361e-06 8.9733e-05 6.0433e-05 -1 -1 -1 -1 -1 0 1 53894 53894 38783.3 4309.26 0.00 0.00144709 0.00137547 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - k6_frac_N10_40nm.xml const_false.blif common 0.48 vpr 60.32 MiB -1 -1 -1 -1 0 0.02 -1 -1 33032 -1 -1 1 0 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 61768 -1 1 1 2 0 1 2 3 3 9 -1 auto 22.0 MiB 0.00 0 3 0 0 3 60.3 MiB 0.00 0.00 nan 0 0 nan 0.00 1.3826e-05 7.652e-06 8.7137e-05 5.7527e-05 -1 -1 -1 -1 -1 0 1 53894 53894 38783.3 4309.26 0.00 0.00164227 0.00157106 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - k6_frac_N10_40nm.xml always_true.blif common 0.51 vpr 60.30 MiB -1 -1 -1 -1 0 0.02 -1 -1 33252 -1 -1 1 0 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 61752 6 1 1 8 0 1 8 3 3 9 -1 auto 22.1 MiB 0.00 0 21 0 10 11 60.3 MiB 0.00 0.00 nan 0 0 nan 0.00 1.2976e-05 6.744e-06 7.713e-05 4.9652e-05 -1 -1 -1 -1 -1 0 1 53894 53894 38783.3 4309.26 0.00 0.00173371 0.00166423 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - k6_frac_N10_40nm.xml always_false.blif common 0.39 vpr 60.55 MiB -1 -1 -1 -1 0 0.02 -1 -1 33080 -1 -1 1 0 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 62004 6 1 1 8 0 1 8 3 3 9 -1 auto 22.1 MiB 0.00 0 21 0 10 11 60.6 MiB 0.00 0.00 nan 0 0 nan 0.00 1.2909e-05 6.758e-06 8.8443e-05 5.844e-05 -1 -1 -1 -1 -1 0 1 53894 53894 38783.3 4309.26 0.00 0.00166613 0.00149072 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - k6_frac_N10_40nm.xml and.blif common 0.39 vpr 60.46 MiB -1 -1 -1 -1 1 0.02 -1 -1 33424 -1 -1 1 2 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 61908 2 1 3 4 0 3 4 3 3 9 -1 auto 22.1 MiB 0.00 9 9 3 3 3 60.5 MiB 0.00 0.00 0.67231 -0.67231 -0.67231 nan 0.00 1.603e-05 1.0932e-05 0.000113667 8.4174e-05 -1 -1 -1 -1 -1 4 1 53894 53894 38783.3 4309.26 0.00 0.00156248 0.00148561 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - k6_frac_N10_40nm.xml multiconnected_lut.blif common 0.53 vpr 60.38 MiB -1 -1 -1 -1 1 0.06 -1 -1 35020 -1 -1 1 5 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 61832 5 1 6 7 0 6 7 3 3 9 -1 auto 22.0 MiB 0.00 18 18 13 5 0 60.4 MiB 0.00 0.00 0.67231 -0.67231 -0.67231 nan 0.00 2.1156e-05 1.5721e-05 0.000164706 0.000132685 -1 -1 -1 -1 -1 7 12 53894 53894 38783.3 4309.26 0.00 0.0021653 0.00196366 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - k6_frac_N10_40nm.xml multiconnected_lut2.blif common 0.54 vpr 60.58 MiB -1 -1 -1 -1 1 0.06 -1 -1 35532 -1 -1 1 5 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 62036 5 1 6 7 0 6 7 3 3 9 -1 auto 22.3 MiB 0.00 18 18 13 5 0 60.6 MiB 0.00 0.00 0.67231 -0.67231 -0.67231 nan 0.00 2.769e-05 2.1131e-05 0.000172602 0.000136847 -1 -1 -1 -1 -1 7 12 53894 53894 38783.3 4309.26 0.00 0.00216675 0.00196156 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - k6_frac_N10_40nm.xml and_latch.blif common 0.35 vpr 60.45 MiB -1 -1 -1 -1 1 0.02 -1 -1 33200 -1 -1 1 3 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 61900 3 1 5 6 1 4 5 3 3 9 -1 auto 22.1 MiB 0.00 9 12 7 1 4 60.4 MiB 0.00 0.00 0.52647 -0.88231 -0.52647 0.52647 0.00 2.0212e-05 1.4682e-05 0.000132923 0.000102253 -1 -1 -1 -1 -1 4 1 53894 53894 38783.3 4309.26 0.00 0.00163341 0.00154977 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - k6_frac_N10_40nm.xml false_path_mux.blif common 0.52 vpr 60.54 MiB -1 -1 -1 -1 1 0.06 -1 -1 35376 -1 -1 1 3 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 61992 4 1 4 6 0 4 6 3 3 9 -1 auto 22.1 MiB 0.00 12 15 9 3 3 60.5 MiB 0.00 0.00 0.67231 -0.67231 -0.67231 nan 0.00 1.9387e-05 1.4052e-05 0.000137513 0.000106148 -1 -1 -1 -1 -1 6 12 53894 53894 38783.3 4309.26 0.00 0.00195643 0.00179437 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - k6_frac_N10_40nm.xml mult_2x2.blif common 0.50 vpr 60.48 MiB -1 -1 -1 -1 1 0.05 -1 -1 35232 -1 -1 1 4 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 61928 4 4 8 12 0 8 9 3 3 9 -1 auto 22.1 MiB 0.00 24 27 18 6 3 60.5 MiB 0.00 0.00 0.67231 -2.68924 -0.67231 nan 0.00 5.0286e-05 3.8471e-05 0.00028724 0.000243111 -1 -1 -1 -1 -1 10 10 53894 53894 38783.3 4309.26 0.00 0.00268807 0.00242566 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - k6_frac_N10_40nm.xml mult_3x3.blif common 0.52 vpr 60.40 MiB -1 -1 -1 -1 1 0.07 -1 -1 36088 -1 -1 1 6 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 61848 6 6 12 18 0 12 13 3 3 9 -1 auto 22.1 MiB 0.01 36 43 32 7 4 60.4 MiB 0.00 0.00 0.69831 -4.13786 -0.69831 nan 0.00 5.0007e-05 4.1034e-05 0.000382344 0.000335402 -1 -1 -1 -1 -1 17 12 53894 53894 38783.3 4309.26 0.00 0.00342842 0.00312147 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - k6_frac_N10_40nm.xml mult_3x4.blif common 0.46 vpr 60.50 MiB -1 -1 -1 -1 2 0.06 -1 -1 35480 -1 -1 3 7 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 61952 7 8 22 30 0 15 18 4 4 16 clb auto 22.0 MiB 0.01 51 64 26 37 1 60.5 MiB 0.00 0.00 1.24888 -7.62396 -1.24888 nan 0.00 9.577e-05 8.3665e-05 0.00076909 0.000710256 -1 -1 -1 -1 -1 37 6 215576 161682 99039.1 6189.95 0.00 0.00462233 0.00417537 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - k6_frac_N10_40nm.xml mult_4x4.blif common 0.59 vpr 60.60 MiB -1 -1 -1 -1 4 0.09 -1 -1 35628 -1 -1 2 8 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 62056 8 8 29 37 0 21 18 4 4 16 clb auto 22.1 MiB 0.02 74 64 20 44 0 60.6 MiB 0.00 0.00 2.04839 -11.7951 -2.04839 nan 0.00 0.000130354 0.000112521 0.00109012 0.00100934 -1 -1 -1 -1 -1 53 12 215576 107788 99039.1 6189.95 0.01 0.00751475 0.0068714 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - k6_frac_N10_40nm.xml mult_5x5.blif common 0.62 vpr 61.08 MiB -1 -1 -1 -1 4 0.10 -1 -1 36048 -1 -1 4 10 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 62548 10 10 47 57 0 39 24 4 4 16 clb auto 22.1 MiB 0.02 149 92 35 57 0 61.1 MiB 0.00 0.00 2.73035 -18.1288 -2.73035 nan 0.00 0.000192825 0.000170363 0.0016493 0.0015433 -1 -1 -1 -1 -1 123 10 215576 215576 99039.1 6189.95 0.01 0.00945092 0.00871858 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - k6_frac_N10_40nm.xml mult_5x6.blif common 0.78 vpr 61.08 MiB -1 -1 -1 -1 5 0.12 -1 -1 36408 -1 -1 5 11 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 62544 11 11 61 72 0 51 27 5 5 25 clb auto 22.1 MiB 0.04 192 547 116 431 0 61.1 MiB 0.01 0.00 3.17925 -21.2667 -3.17925 nan 0.00 0.000440575 0.000406236 0.00673609 0.00616031 -1 -1 -1 -1 -1 163 16 485046 269470 186194. 7447.77 0.02 0.0214973 0.0195896 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - k6_frac_N10_40nm.xml rca_1bit.blif common 0.44 vpr 60.18 MiB -1 -1 -1 -1 1 0.05 -1 -1 34452 -1 -1 1 3 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 61628 3 2 5 7 0 5 6 3 3 9 -1 auto 22.0 MiB 0.00 15 15 9 5 1 60.2 MiB 0.00 0.00 0.67231 -1.34462 -0.67231 nan 0.00 1.5359e-05 1.1242e-05 0.000119111 9.5167e-05 -1 -1 -1 -1 -1 6 12 53894 53894 38783.3 4309.26 0.00 0.00191506 0.00178438 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - k6_frac_N10_40nm.xml rca_2bit.blif common 0.51 vpr 60.47 MiB -1 -1 -1 -1 1 0.06 -1 -1 35224 -1 -1 1 5 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 61920 5 3 8 11 0 8 9 3 3 9 -1 auto 22.0 MiB 0.00 24 27 21 6 0 60.5 MiB 0.00 0.00 0.67231 -2.01693 -0.67231 nan 0.00 5.5301e-05 4.4627e-05 0.000313259 0.000267198 -1 -1 -1 -1 -1 10 16 53894 53894 38783.3 4309.26 0.00 0.00296269 0.00261801 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - k6_frac_N10_40nm.xml rca_3bit.blif common 0.50 vpr 60.56 MiB -1 -1 -1 -1 2 0.05 -1 -1 35444 -1 -1 1 7 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 62016 7 4 12 16 0 11 12 3 3 9 -1 auto 22.1 MiB 0.01 33 38 24 11 3 60.6 MiB 0.00 0.00 1.08437 -4.00246 -1.08437 nan 0.00 2.6083e-05 2.0859e-05 0.000215587 0.000188913 -1 -1 -1 -1 -1 17 4 53894 53894 38783.3 4309.26 0.00 0.00234895 0.0022029 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - k6_frac_N10_40nm.xml rca_4bit.blif common 0.54 vpr 60.64 MiB -1 -1 -1 -1 2 0.06 -1 -1 35364 -1 -1 1 9 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 62096 9 5 15 20 0 14 15 3 3 9 -1 auto 22.1 MiB 0.01 42 51 29 17 5 60.6 MiB 0.00 0.00 1.00731 -4.36655 -1.00731 nan 0.00 0.000111332 9.9634e-05 0.000559539 0.000502391 -1 -1 -1 -1 -1 17 14 53894 53894 38783.3 4309.26 0.00 0.00351338 0.00318651 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - k6_frac_N10_40nm.xml rca_5bit.blif common 0.52 vpr 60.46 MiB -1 -1 -1 -1 3 0.07 -1 -1 35520 -1 -1 1 11 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 61912 11 6 19 25 0 17 18 3 3 9 -1 auto 22.0 MiB 0.01 51 64 33 24 7 60.5 MiB 0.00 0.00 1.34231 -6.71386 -1.34231 nan 0.00 0.000697205 8.3358e-05 0.00115444 0.000499005 -1 -1 -1 -1 -1 25 11 53894 53894 38783.3 4309.26 0.00 0.00500091 0.00398839 -1 -1 -1 -1 -1 -1 -1 -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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +k6_frac_N10_40nm.xml const_true.blif common 0.35 vpr 58.06 MiB -1 -1 -1 -1 0 0.02 -1 -1 29676 -1 -1 1 0 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 59452 -1 1 1 2 0 1 2 3 3 9 -1 auto 19.6 MiB 0.00 0 0 3 0 0 3 58.1 MiB 0.00 0.00 nan nan 0 0 nan 0.00 7.359e-06 3.476e-06 5.5645e-05 3.585e-05 -1 -1 -1 -1 -1 0 1 53894 53894 38783.3 4309.26 0.00 0.000873938 0.000817223 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6_frac_N10_40nm.xml const_false.blif common 0.31 vpr 58.67 MiB -1 -1 -1 -1 0 0.02 -1 -1 29676 -1 -1 1 0 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 60076 -1 1 1 2 0 1 2 3 3 9 -1 auto 20.2 MiB 0.00 0 0 3 0 0 3 58.7 MiB 0.00 0.00 nan nan 0 0 nan 0.00 7.3e-06 3.512e-06 5.499e-05 3.6206e-05 -1 -1 -1 -1 -1 0 1 53894 53894 38783.3 4309.26 0.00 0.000892963 0.000836486 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6_frac_N10_40nm.xml always_true.blif common 0.35 vpr 58.60 MiB -1 -1 -1 -1 0 0.02 -1 -1 29952 -1 -1 1 0 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 60008 6 1 1 8 0 1 8 3 3 9 -1 auto 20.2 MiB 0.00 0 0 21 0 10 11 58.6 MiB 0.00 0.00 nan nan 0 0 nan 0.00 7.343e-06 3.449e-06 5.5257e-05 3.6332e-05 -1 -1 -1 -1 -1 0 1 53894 53894 38783.3 4309.26 0.00 0.00089067 0.000837628 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6_frac_N10_40nm.xml always_false.blif common 0.34 vpr 58.66 MiB -1 -1 -1 -1 0 0.02 -1 -1 29952 -1 -1 1 0 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 60072 6 1 1 8 0 1 8 3 3 9 -1 auto 19.9 MiB 0.00 0 0 21 0 10 11 58.7 MiB 0.00 0.00 nan nan 0 0 nan 0.00 7.587e-06 3.716e-06 5.4406e-05 3.4996e-05 -1 -1 -1 -1 -1 0 1 53894 53894 38783.3 4309.26 0.00 0.000917158 0.000862935 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6_frac_N10_40nm.xml and.blif common 0.36 vpr 59.04 MiB -1 -1 -1 -1 1 0.02 -1 -1 29952 -1 -1 1 2 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 60460 2 1 3 4 0 3 4 3 3 9 -1 auto 20.2 MiB 0.00 9 9 9 3 3 3 59.0 MiB 0.00 0.00 0.749366 0.67231 -0.67231 -0.67231 nan 0.00 8.998e-06 5.729e-06 7.4084e-05 5.5177e-05 -1 -1 -1 -1 -1 4 1 53894 53894 38783.3 4309.26 0.00 0.000991073 0.000933863 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6_frac_N10_40nm.xml multiconnected_lut.blif common 0.38 vpr 58.67 MiB -1 -1 -1 -1 1 0.03 -1 -1 31488 -1 -1 1 5 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 60080 5 1 6 7 0 6 7 3 3 9 -1 auto 20.2 MiB 0.00 18 18 18 13 5 0 58.7 MiB 0.00 0.00 0.749366 0.67231 -0.67231 -0.67231 nan 0.00 3.9064e-05 8.628e-06 0.000128172 7.9888e-05 -1 -1 -1 -1 -1 7 12 53894 53894 38783.3 4309.26 0.00 0.00115707 0.0010134 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6_frac_N10_40nm.xml multiconnected_lut2.blif common 0.38 vpr 58.67 MiB -1 -1 -1 -1 1 0.03 -1 -1 31844 -1 -1 1 5 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 60080 5 1 6 7 0 6 7 3 3 9 -1 auto 20.2 MiB 0.00 18 18 18 13 5 0 58.7 MiB 0.00 0.00 0.749366 0.67231 -0.67231 -0.67231 nan 0.00 1.2372e-05 8.797e-06 0.000102625 8.1155e-05 -1 -1 -1 -1 -1 7 12 53894 53894 38783.3 4309.26 0.00 0.00116441 0.00104858 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6_frac_N10_40nm.xml and_latch.blif common 0.29 vpr 58.64 MiB -1 -1 -1 -1 1 0.02 -1 -1 30396 -1 -1 1 3 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 60048 3 1 5 6 1 4 5 3 3 9 -1 auto 19.8 MiB 0.00 9 9 12 7 1 4 58.6 MiB 0.00 0.00 0.603526 0.52647 -0.88231 -0.52647 0.52647 0.00 1.0705e-05 7.341e-06 8.8486e-05 6.7399e-05 -1 -1 -1 -1 -1 4 1 53894 53894 38783.3 4309.26 0.00 0.000959409 0.00089725 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6_frac_N10_40nm.xml false_path_mux.blif common 0.39 vpr 58.67 MiB -1 -1 -1 -1 1 0.03 -1 -1 31812 -1 -1 1 3 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 60076 4 1 4 6 0 4 6 3 3 9 -1 auto 20.5 MiB 0.00 12 12 15 9 3 3 58.7 MiB 0.00 0.00 0.749366 0.67231 -0.67231 -0.67231 nan 0.00 9.788e-06 6.583e-06 8.1737e-05 6.1503e-05 -1 -1 -1 -1 -1 6 12 53894 53894 38783.3 4309.26 0.00 0.0010608 0.000952163 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6_frac_N10_40nm.xml mult_2x2.blif common 0.39 vpr 58.68 MiB -1 -1 -1 -1 1 0.03 -1 -1 31488 -1 -1 1 4 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 60092 4 4 8 12 0 8 9 3 3 9 -1 auto 19.9 MiB 0.00 24 24 27 18 6 3 58.7 MiB 0.00 0.00 0.749366 0.67231 -2.68924 -0.67231 nan 0.00 1.8939e-05 1.3649e-05 0.000162092 0.000138463 -1 -1 -1 -1 -1 12 10 53894 53894 38783.3 4309.26 0.00 0.00140862 0.00128245 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6_frac_N10_40nm.xml mult_3x3.blif common 0.37 vpr 58.71 MiB -1 -1 -1 -1 1 0.04 -1 -1 31968 -1 -1 1 6 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 60120 6 6 12 18 0 12 13 3 3 9 -1 auto 19.9 MiB 0.00 36 36 43 32 7 4 58.7 MiB 0.00 0.00 0.775365 0.69831 -4.13786 -0.69831 nan 0.00 2.7335e-05 2.2775e-05 0.000258357 0.000231618 -1 -1 -1 -1 -1 15 12 53894 53894 38783.3 4309.26 0.00 0.00192479 0.00174204 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6_frac_N10_40nm.xml mult_3x4.blif common 0.42 vpr 58.85 MiB -1 -1 -1 -1 2 0.04 -1 -1 32096 -1 -1 3 7 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 60264 7 8 22 30 0 15 18 4 4 16 clb auto 20.2 MiB 0.01 62 51 64 26 37 1 58.9 MiB 0.00 0.00 1.24888 1.24888 -7.62396 -1.24888 nan 0.00 4.707e-05 4.1118e-05 0.000466731 0.00043626 -1 -1 -1 -1 -1 37 6 215576 161682 99039.1 6189.95 0.00 0.00249603 0.0023213 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6_frac_N10_40nm.xml mult_4x4.blif common 0.42 vpr 58.89 MiB -1 -1 -1 -1 4 0.05 -1 -1 32476 -1 -1 2 8 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 60300 8 8 29 37 0 21 18 4 4 16 clb auto 19.9 MiB 0.01 82 74 64 20 44 0 58.9 MiB 0.00 0.00 2.04839 2.04839 -11.7951 -2.04839 nan 0.00 6.5626e-05 5.6815e-05 0.000641099 0.000602927 -1 -1 -1 -1 -1 53 12 215576 107788 99039.1 6189.95 0.00 0.00383531 0.00351223 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6_frac_N10_40nm.xml mult_5x5.blif common 0.48 vpr 59.06 MiB -1 -1 -1 -1 4 0.05 -1 -1 32832 -1 -1 4 10 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 60480 10 10 47 57 0 39 24 4 4 16 clb auto 19.9 MiB 0.01 161 149 92 35 57 0 59.1 MiB 0.00 0.00 2.80144 2.73035 -18.1288 -2.73035 nan 0.00 9.8348e-05 8.8676e-05 0.000979759 0.000931858 -1 -1 -1 -1 -1 120 10 215576 215576 99039.1 6189.95 0.01 0.00519014 0.00479486 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6_frac_N10_40nm.xml mult_5x6.blif common 0.53 vpr 59.55 MiB -1 -1 -1 -1 5 0.08 -1 -1 32920 -1 -1 5 11 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 60984 11 11 61 72 0 49 27 5 5 25 clb auto 20.2 MiB 0.02 227 192 427 90 337 0 59.6 MiB 0.00 0.00 3.28962 3.19291 -21.0185 -3.19291 nan 0.00 0.000128815 0.000117588 0.00236378 0.00220408 -1 -1 -1 -1 -1 193 14 485046 269470 186194. 7447.77 0.01 0.00880785 0.00804809 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6_frac_N10_40nm.xml rca_1bit.blif common 0.40 vpr 58.67 MiB -1 -1 -1 -1 1 0.03 -1 -1 31076 -1 -1 1 3 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 60076 3 2 5 7 0 5 6 3 3 9 -1 auto 19.9 MiB 0.00 15 15 15 9 5 1 58.7 MiB 0.00 0.00 0.749366 0.67231 -1.34462 -0.67231 nan 0.00 1.2467e-05 8.835e-06 0.000106543 8.3665e-05 -1 -1 -1 -1 -1 6 12 53894 53894 38783.3 4309.26 0.00 0.00119604 0.00107178 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6_frac_N10_40nm.xml rca_2bit.blif common 0.37 vpr 58.68 MiB -1 -1 -1 -1 1 0.03 -1 -1 32244 -1 -1 1 5 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 60092 5 3 8 11 0 8 9 3 3 9 -1 auto 20.2 MiB 0.00 24 24 27 21 6 0 58.7 MiB 0.00 0.00 0.749366 0.67231 -2.01693 -0.67231 nan 0.00 1.8254e-05 1.2993e-05 0.000148648 0.000125027 -1 -1 -1 -1 -1 10 16 53894 53894 38783.3 4309.26 0.00 0.0014931 0.0013283 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6_frac_N10_40nm.xml rca_3bit.blif common 0.38 vpr 58.69 MiB -1 -1 -1 -1 2 0.03 -1 -1 32240 -1 -1 1 7 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 60100 7 4 12 16 0 11 12 3 3 9 -1 auto 20.2 MiB 0.00 33 33 38 24 11 3 58.7 MiB 0.00 0.00 1.08437 1.08437 -4.00246 -1.08437 nan 0.00 2.2984e-05 1.8516e-05 0.000207845 0.000175806 -1 -1 -1 -1 -1 17 4 53894 53894 38783.3 4309.26 0.00 0.00145538 0.00134835 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6_frac_N10_40nm.xml rca_4bit.blif common 0.41 vpr 58.46 MiB -1 -1 -1 -1 2 0.04 -1 -1 32252 -1 -1 1 9 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 59868 9 5 15 20 0 14 15 3 3 9 -1 auto 20.1 MiB 0.00 42 42 51 29 17 5 58.5 MiB 0.00 0.00 1.08437 1.00731 -4.36655 -1.00731 nan 0.00 2.742e-05 2.2732e-05 0.000248101 0.000222336 -1 -1 -1 -1 -1 17 14 53894 53894 38783.3 4309.26 0.00 0.0019693 0.00177377 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6_frac_N10_40nm.xml rca_5bit.blif common 0.38 vpr 58.76 MiB -1 -1 -1 -1 3 0.04 -1 -1 32252 -1 -1 1 11 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 60168 11 6 19 25 0 17 18 3 3 9 -1 auto 19.9 MiB 0.00 51 51 64 36 21 7 58.8 MiB 0.00 0.00 1.41937 1.34231 -6.71386 -1.34231 nan 0.00 3.3633e-05 2.7198e-05 0.000306471 0.000277811 -1 -1 -1 -1 -1 21 11 53894 53894 38783.3 4309.26 0.00 0.00206016 0.00187465 -1 -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_strong/strong_func_formal_vpr/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_func_formal_vpr/config/golden_results.txt index b020b50a0e5..1ecd9f11e08 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_func_formal_vpr/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_func_formal_vpr/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 ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - k6_frac_N10_40nm.xml const_true.blif common 0.27 vpr 60.45 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1 0 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 61896 -1 1 1 2 0 1 2 3 3 9 -1 auto 22.1 MiB 0.00 0 3 0 0 3 60.4 MiB 0.00 0.00 nan 0 0 nan 0.00 1.1967e-05 6.442e-06 7.5021e-05 4.7762e-05 -1 -1 -1 -1 -1 0 1 53894 53894 20487.3 2276.37 0.00 0.0014839 0.00141592 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - k6_frac_N10_40nm.xml const_false.blif common 0.27 vpr 60.57 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1 0 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 62024 -1 1 1 2 0 1 2 3 3 9 -1 auto 22.3 MiB 0.00 0 3 0 0 3 60.6 MiB 0.00 0.00 nan 0 0 nan 0.00 1.2368e-05 6.553e-06 8.0604e-05 5.2726e-05 -1 -1 -1 -1 -1 0 1 53894 53894 20487.3 2276.37 0.00 0.00150763 0.00143643 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - k6_frac_N10_40nm.xml always_true.blif common 0.26 vpr 60.59 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1 6 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 62040 6 1 7 8 0 7 8 3 3 9 -1 auto 22.1 MiB 0.00 21 21 14 7 0 60.6 MiB 0.00 0.00 0.69831 -0.69831 -0.69831 nan 0.00 2.4901e-05 1.736e-05 0.000158286 0.000127589 -1 -1 -1 -1 -1 10 1 53894 53894 20487.3 2276.37 0.00 0.00189837 0.00180984 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - k6_frac_N10_40nm.xml always_false.blif common 0.27 vpr 60.46 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1 6 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 61912 6 1 7 8 0 7 8 3 3 9 -1 auto 22.1 MiB 0.00 21 21 14 7 0 60.5 MiB 0.00 0.00 0.69831 -0.69831 -0.69831 nan 0.00 2.4603e-05 1.7125e-05 0.000156465 0.000123185 -1 -1 -1 -1 -1 10 1 53894 53894 20487.3 2276.37 0.00 0.00157342 0.00148859 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - k6_frac_N10_40nm.xml multiconnected_lut.blif common 0.34 vpr 60.58 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1 5 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 62036 5 1 6 7 0 6 7 3 3 9 -1 auto 22.3 MiB 0.00 18 18 13 5 0 60.6 MiB 0.00 0.00 0.69831 -0.69831 -0.69831 nan 0.00 2.3071e-05 1.7468e-05 0.00015565 0.000122418 -1 -1 -1 -1 -1 7 1 53894 53894 20487.3 2276.37 0.00 0.00131998 0.0012364 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - k6_frac_N10_40nm.xml multiconnected_lut2.blif common 0.34 vpr 60.46 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1 5 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 61908 5 1 6 7 0 6 7 3 3 9 -1 auto 22.0 MiB 0.00 18 18 13 5 0 60.5 MiB 0.00 0.00 0.69831 -0.69831 -0.69831 nan 0.00 2.4504e-05 1.843e-05 0.0003637 0.000327179 -1 -1 -1 -1 -1 7 1 53894 53894 20487.3 2276.37 0.00 0.00295184 0.00278863 -1 -1 -1 -1 -1 -1 -1 -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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +k6_frac_N10_40nm.xml const_true.blif common 0.23 vpr 58.67 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1 0 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 60076 -1 1 1 2 0 1 2 3 3 9 -1 auto 20.2 MiB 0.00 0 0 3 0 0 3 58.7 MiB 0.00 0.00 nan nan 0 0 nan 0.00 7.342e-06 3.456e-06 5.6768e-05 3.7362e-05 -1 -1 -1 -1 -1 0 1 53894 53894 20487.3 2276.37 0.00 0.000896307 0.000835936 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6_frac_N10_40nm.xml const_false.blif common 0.23 vpr 58.67 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1 0 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 60076 -1 1 1 2 0 1 2 3 3 9 -1 auto 19.9 MiB 0.00 0 0 3 0 0 3 58.7 MiB 0.00 0.00 nan nan 0 0 nan 0.00 7.496e-06 3.551e-06 5.473e-05 3.5509e-05 -1 -1 -1 -1 -1 0 1 53894 53894 20487.3 2276.37 0.00 0.000856124 0.000804075 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6_frac_N10_40nm.xml always_true.blif common 0.22 vpr 58.29 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1 6 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 59692 6 1 7 8 0 7 8 3 3 9 -1 auto 19.9 MiB 0.00 21 21 21 14 7 0 58.3 MiB 0.00 0.00 0.775365 0.69831 -0.69831 -0.69831 nan 0.00 1.3219e-05 8.724e-06 9.8134e-05 7.7659e-05 -1 -1 -1 -1 -1 10 1 53894 53894 20487.3 2276.37 0.00 0.000949863 0.000887812 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6_frac_N10_40nm.xml always_false.blif common 0.22 vpr 58.67 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1 6 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 60080 6 1 7 8 0 7 8 3 3 9 -1 auto 20.2 MiB 0.00 21 21 21 14 7 0 58.7 MiB 0.00 0.00 0.775365 0.69831 -0.69831 -0.69831 nan 0.00 1.3984e-05 9.157e-06 9.9693e-05 7.937e-05 -1 -1 -1 -1 -1 10 1 53894 53894 20487.3 2276.37 0.00 0.00102012 0.000957668 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6_frac_N10_40nm.xml multiconnected_lut.blif common 0.25 vpr 58.67 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1 5 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 60080 5 1 6 7 0 6 7 3 3 9 -1 auto 19.9 MiB 0.00 18 18 18 13 5 0 58.7 MiB 0.00 0.00 0.775365 0.69831 -0.69831 -0.69831 nan 0.00 1.2769e-05 9.287e-06 9.9591e-05 7.789e-05 -1 -1 -1 -1 -1 7 1 53894 53894 20487.3 2276.37 0.00 0.000993215 0.000930904 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6_frac_N10_40nm.xml multiconnected_lut2.blif common 0.26 vpr 58.67 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1 5 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 60080 5 1 6 7 0 6 7 3 3 9 -1 auto 19.8 MiB 0.00 18 18 18 13 5 0 58.7 MiB 0.00 0.00 0.775365 0.69831 -0.69831 -0.69831 nan 0.00 1.2704e-05 9.014e-06 9.8711e-05 7.7635e-05 -1 -1 -1 -1 -1 7 1 53894 53894 20487.3 2276.37 0.00 0.00102457 0.00096424 -1 -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_strong/strong_global_nonuniform/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_global_nonuniform/config/golden_results.txt index 0122eef07c9..61460af32b8 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_global_nonuniform/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_global_nonuniform/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 ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - x_gaussian_y_uniform.xml stereovision3.v common 2.14 vpr 66.94 MiB -1 -1 0.82 26648 5 0.18 -1 -1 36964 -1 -1 7 10 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 68548 10 2 181 183 1 37 19 6 6 36 clb auto 27.8 MiB 0.08 154 69 23 41 5 66.9 MiB 0.01 0.00 1.78694 -71.1304 -1.78694 1.78694 0.00 0.000368162 0.000336195 0.00306832 0.0028942 -1 -1 -1 -1 8 112 5 646728 377258 -1 -1 0.14 0.0630721 0.0541641 1804 2280 -1 112 3 60 81 2140 1007 1.78694 1.78694 -71.1304 -1.78694 0 0 -1 -1 0.00 0.03 0.01 -1 -1 0.00 0.0123441 0.0115171 - x_uniform_y_gaussian.xml stereovision3.v common 2.28 vpr 66.56 MiB -1 -1 0.87 27028 5 0.18 -1 -1 36836 -1 -1 7 10 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 68156 10 2 181 183 1 37 19 6 6 36 clb auto 27.6 MiB 0.06 139 119 44 63 12 66.6 MiB 0.01 0.00 1.78694 -71.1304 -1.78694 1.78694 0.01 0.000434392 0.000379213 0.00478977 0.00443186 -1 -1 -1 -1 8 108 4 646728 377258 -1 -1 0.14 0.0614636 0.053576 1804 2280 -1 92 5 93 129 3144 1427 1.78694 1.78694 -71.1304 -1.78694 0 0 -1 -1 0.00 0.02 0.00 -1 -1 0.00 0.0131686 0.0124064 - x_gaussian_y_gaussian.xml stereovision3.v common 1.95 vpr 66.73 MiB -1 -1 0.78 27032 5 0.16 -1 -1 36964 -1 -1 7 10 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 68336 10 2 181 183 1 37 19 6 6 36 clb auto 27.7 MiB 0.07 141 69 21 42 6 66.7 MiB 0.01 0.00 1.78694 -71.1304 -1.78694 1.78694 0.01 0.000231421 0.000200473 0.00279286 0.00262007 -1 -1 -1 -1 6 107 4 646728 377258 -1 -1 0.13 0.0525266 0.046082 1804 2280 -1 105 4 77 102 2777 1152 1.78694 1.78694 -71.1304 -1.78694 0 0 -1 -1 0.00 0.02 0.01 -1 -1 0.00 0.0109087 0.0101911 - x_delta_y_uniform.xml stereovision3.v common 2.13 vpr 66.94 MiB -1 -1 0.67 26768 5 0.15 -1 -1 36648 -1 -1 7 10 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 68548 10 2 181 183 1 37 19 6 6 36 clb auto 27.8 MiB 0.07 154 369 96 253 20 66.9 MiB 0.02 0.00 1.78694 -71.1304 -1.78694 1.78694 0.01 0.000435432 0.00038302 0.00911423 0.00823072 -1 -1 -1 -1 24 117 4 646728 377258 -1 -1 0.31 0.174316 0.150618 1804 2280 -1 116 2 59 79 2150 954 1.78694 1.78694 -71.1304 -1.78694 0 0 -1 -1 0.00 0.03 0.00 -1 -1 0.00 0.0153537 0.0147732 - x_delta_y_delta.xml stereovision3.v common 2.28 vpr 66.92 MiB -1 -1 0.81 26892 5 0.18 -1 -1 36968 -1 -1 7 10 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 68524 10 2 181 183 1 37 19 6 6 36 clb auto 27.7 MiB 0.10 140 544 127 376 41 66.9 MiB 0.02 0.00 1.78694 -71.1304 -1.78694 1.78694 0.01 0.000465798 0.000412818 0.0124105 0.0110487 -1 -1 -1 -1 48 106 2 646728 377258 -1 -1 0.23 0.117282 0.102085 1804 2280 -1 106 2 57 77 1975 772 1.78694 1.78694 -71.1304 -1.78694 0 0 -1 -1 0.00 0.02 0.00 -1 -1 0.00 0.00952273 0.00912406 - x_uniform_y_delta.xml stereovision3.v common 2.20 vpr 66.74 MiB -1 -1 0.80 27028 5 0.22 -1 -1 36648 -1 -1 7 10 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 68344 10 2 181 183 1 37 19 6 6 36 clb auto 27.7 MiB 0.07 127 494 89 373 32 66.7 MiB 0.02 0.00 1.78694 -71.1304 -1.78694 1.78694 0.01 0.000426768 0.000373257 0.0117897 0.0105633 -1 -1 -1 -1 14 88 2 646728 377258 -1 -1 0.16 0.10372 0.0914305 1804 2280 -1 88 2 57 77 1819 773 1.78694 1.78694 -71.1304 -1.78694 0 0 -1 -1 0.00 0.01 0.00 -1 -1 0.00 0.00845179 0.00814396 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +x_gaussian_y_uniform.xml stereovision3.v common 1.36 vpr 64.43 MiB -1 -1 0.49 23052 5 0.11 -1 -1 32972 -1 -1 7 10 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65976 10 2 181 183 1 38 19 6 6 36 clb auto 25.4 MiB 0.03 174 128 319 80 215 24 64.4 MiB 0.01 0.00 1.78694 1.78694 -71.2229 -1.78694 1.78694 0.00 0.000210252 0.000191555 0.00433045 0.0040507 -1 -1 -1 -1 8 83 5 646728 377258 -1 -1 0.05 0.0286843 0.0251732 1804 2280 -1 86 4 94 125 2948 1117 1.78694 1.78694 -71.2229 -1.78694 0 0 -1 -1 0.00 0.01 0.00 -1 -1 0.00 0.00698257 0.00662571 +x_uniform_y_gaussian.xml stereovision3.v common 1.34 vpr 65.04 MiB -1 -1 0.41 23292 5 0.10 -1 -1 33008 -1 -1 7 10 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66604 10 2 181 183 1 38 19 6 6 36 clb auto 26.0 MiB 0.03 174 125 394 105 261 28 65.0 MiB 0.01 0.00 1.78694 1.78694 -71.2229 -1.78694 1.78694 0.00 0.000217937 0.000198402 0.00515017 0.00479852 -1 -1 -1 -1 6 93 11 646728 377258 -1 -1 0.07 0.0334088 0.0293253 1804 2280 -1 82 3 62 84 2005 787 1.78694 1.78694 -71.2229 -1.78694 0 0 -1 -1 0.00 0.01 0.00 -1 -1 0.00 0.00687978 0.00657072 +x_gaussian_y_gaussian.xml stereovision3.v common 1.31 vpr 65.10 MiB -1 -1 0.41 23440 5 0.11 -1 -1 32940 -1 -1 7 10 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66660 10 2 181 183 1 38 19 6 6 36 clb auto 25.7 MiB 0.03 174 133 319 65 242 12 65.1 MiB 0.01 0.00 1.78694 1.78694 -71.2229 -1.78694 1.78694 0.00 0.000225609 0.000205573 0.004477 0.00418391 -1 -1 -1 -1 6 107 5 646728 377258 -1 -1 0.06 0.0291106 0.0255214 1804 2280 -1 95 6 98 132 3372 1383 1.78694 1.78694 -71.2229 -1.78694 0 0 -1 -1 0.00 0.01 0.00 -1 -1 0.00 0.00753689 0.00707645 +x_delta_y_uniform.xml stereovision3.v common 1.31 vpr 64.97 MiB -1 -1 0.42 23052 5 0.11 -1 -1 32980 -1 -1 7 10 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66528 10 2 181 183 1 38 19 6 6 36 clb auto 25.9 MiB 0.03 174 147 69 22 43 4 65.0 MiB 0.01 0.00 1.78694 1.78694 -71.2229 -1.78694 1.78694 0.00 0.000228718 0.00020709 0.00234451 0.00224898 -1 -1 -1 -1 14 107 3 646728 377258 -1 -1 0.04 0.0265392 0.0232934 1804 2280 -1 107 3 66 90 2381 972 1.78694 1.78694 -71.2229 -1.78694 0 0 -1 -1 0.00 0.01 0.00 -1 -1 0.00 0.00673078 0.00642275 +x_delta_y_delta.xml stereovision3.v common 1.32 vpr 65.40 MiB -1 -1 0.41 23432 5 0.11 -1 -1 33148 -1 -1 7 10 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66972 10 2 181 183 1 38 19 6 6 36 clb auto 26.1 MiB 0.03 174 131 269 71 179 19 65.4 MiB 0.01 0.00 1.78694 1.78694 -71.2229 -1.78694 1.78694 0.00 0.000219412 0.000199508 0.00413631 0.00388102 -1 -1 -1 -1 24 87 3 646728 377258 -1 -1 0.04 0.0278594 0.0245156 1804 2280 -1 86 2 58 78 1869 774 1.78694 1.78694 -71.2229 -1.78694 0 0 -1 -1 0.00 0.01 0.00 -1 -1 0.00 0.0064994 0.00624883 +x_uniform_y_delta.xml stereovision3.v common 1.32 vpr 64.94 MiB -1 -1 0.42 23052 5 0.10 -1 -1 32976 -1 -1 7 10 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66500 10 2 181 183 1 38 19 6 6 36 clb auto 25.9 MiB 0.03 174 128 369 99 241 29 64.9 MiB 0.01 0.00 1.78694 1.78694 -71.2229 -1.78694 1.78694 0.00 0.000220849 0.000200914 0.00495943 0.00462535 -1 -1 -1 -1 24 82 2 646728 377258 -1 -1 0.04 0.0283483 0.0249661 1804 2280 -1 82 2 59 79 1850 830 1.78694 1.78694 -71.2229 -1.78694 0 0 -1 -1 0.00 0.01 0.00 -1 -1 0.00 0.00721289 0.00692991 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_global_routing/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_global_routing/config/golden_results.txt index 93fc1046440..83ca6e84d6c 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_global_routing/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_global_routing/config/golden_results.txt @@ -1,4 +1,4 @@ - arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - timing/k6_N10_mem32K_40nm.xml stereovision3.v common 1.95 vpr 65.89 MiB -1 -1 0.73 26760 5 0.17 -1 -1 36900 -1 -1 12 10 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 67476 10 2 181 183 1 35 24 6 6 36 clb auto 26.8 MiB 0.04 153 500 90 382 28 65.9 MiB 0.02 0.00 1.83894 -73.7881 -1.83894 1.83894 0.00 0.000660248 0.000574242 0.010203 0.00905969 -1 -1 -1 -1 6 103 13 646728 646728 -1 -1 0.12 0.059948 0.0525698 1456 2040 -1 101 16 136 266 9131 3659 1.83894 1.83894 -73.7881 -1.83894 0 0 -1 -1 0.00 0.03 0.00 -1 -1 0.00 0.0191372 0.0164753 - nonuniform_chan_width/k6_N10_mem32K_40nm_nonuniform.xml stereovision3.v common 1.99 vpr 66.10 MiB -1 -1 0.79 27276 5 0.17 -1 -1 36840 -1 -1 12 10 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 67688 10 2 181 183 1 35 24 6 6 36 clb auto 27.0 MiB 0.03 148 466 75 365 26 66.1 MiB 0.01 0.00 1.83894 -73.7881 -1.83894 1.83894 0.00 0.000394392 0.000346251 0.00742774 0.00666175 -1 -1 -1 -1 8 100 16 646728 646728 -1 -1 0.14 0.0718777 0.0632492 1456 2040 -1 101 19 134 278 9113 3613 1.83894 1.83894 -73.7881 -1.83894 0 0 -1 -1 0.00 0.02 0.00 -1 -1 0.00 0.0163481 0.014725 - nonuniform_chan_width/k6_N10_mem32K_40nm_pulse.xml stereovision3.v common 2.10 vpr 66.14 MiB -1 -1 0.85 26896 5 0.16 -1 -1 36840 -1 -1 12 10 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 67728 10 2 181 183 1 35 24 6 6 36 clb auto 27.1 MiB 0.05 142 500 108 364 28 66.1 MiB 0.02 0.00 1.83894 -73.7881 -1.83894 1.83894 0.00 0.000538248 0.000486042 0.00902515 0.00805903 -1 -1 -1 -1 4 86 10 646728 646728 -1 -1 0.05 0.0281105 0.0249862 1456 2040 -1 87 9 108 188 5936 2196 1.83894 1.83894 -73.7881 -1.83894 0 0 -1 -1 0.00 0.03 0.00 -1 -1 0.00 0.0153203 0.0141626 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +timing/k6_N10_mem32K_40nm.xml stereovision3.v common 1.32 vpr 64.18 MiB -1 -1 0.40 23288 5 0.11 -1 -1 32972 -1 -1 12 10 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65724 10 2 181 183 1 36 24 6 6 36 clb auto 25.2 MiB 0.02 196 169 92 28 59 5 64.2 MiB 0.01 0.00 1.83894 1.83894 -73.7881 -1.83894 1.83894 0.00 0.000222832 0.000202358 0.00189553 0.00180424 -1 -1 -1 -1 6 131 18 646728 646728 -1 -1 0.07 0.0299729 0.0258466 1456 2040 -1 122 14 118 244 8464 3501 1.83894 1.83894 -73.7881 -1.83894 0 0 -1 -1 0.00 0.02 0.00 -1 -1 0.00 0.00939131 0.00846423 +nonuniform_chan_width/k6_N10_mem32K_40nm_nonuniform.xml stereovision3.v common 1.30 vpr 64.65 MiB -1 -1 0.40 23432 5 0.10 -1 -1 33060 -1 -1 12 10 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66204 10 2 181 183 1 36 24 6 6 36 clb auto 25.4 MiB 0.02 196 163 296 52 224 20 64.7 MiB 0.01 0.00 1.83894 1.83894 -73.7881 -1.83894 1.83894 0.00 0.000228208 0.000207579 0.00320945 0.00299815 -1 -1 -1 -1 8 116 21 646728 646728 -1 -1 0.07 0.0318341 0.0274652 1456 2040 -1 116 18 143 312 10670 4334 1.83894 1.83894 -73.7881 -1.83894 0 0 -1 -1 0.00 0.02 0.00 -1 -1 0.00 0.0103289 0.00920865 +nonuniform_chan_width/k6_N10_mem32K_40nm_pulse.xml stereovision3.v common 1.40 vpr 64.28 MiB -1 -1 0.48 23288 5 0.11 -1 -1 32952 -1 -1 12 10 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65820 10 2 181 183 1 36 24 6 6 36 clb auto 25.2 MiB 0.02 196 150 398 89 285 24 64.3 MiB 0.01 0.00 1.83894 1.83894 -73.7881 -1.83894 1.83894 0.00 0.000226121 0.000205896 0.00396848 0.00369334 -1 -1 -1 -1 6 101 8 646728 646728 -1 -1 0.05 0.0290504 0.0252608 1456 2040 -1 102 10 126 245 7156 2526 1.83894 1.83894 -73.7881 -1.83894 0 0 -1 -1 0.00 0.01 0.00 -1 -1 0.00 0.00790433 0.00720692 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_graphics_commands/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_graphics_commands/config/golden_results.txt index afb5b419a6b..f07c0f7fced 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_graphics_commands/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_graphics_commands/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 total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - k6_N10_mem32K_40nm.xml stereovision3.v common 5.23 vpr 66.07 MiB -1 -1 0.81 27256 5 0.19 -1 -1 36672 -1 -1 12 10 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 67656 10 2 181 183 1 35 24 6 6 36 clb auto 27.0 MiB 0.04 152 432 67 335 30 66.1 MiB 1.88 0.00 2.14835 -93.0339 -2.14835 2.14835 0.00 0.000389361 0.000337837 0.00712682 0.00635643 -1 -1 -1 -1 -1 138 15 646728 646728 138825. 3856.24 0.83 0.023313 0.0208517 -1 -1 -1 -1 -1 -1 -1 -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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +k6_N10_mem32K_40nm.xml stereovision3.v common 3.46 vpr 64.65 MiB -1 -1 0.41 23048 5 0.11 -1 -1 32960 -1 -1 12 10 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66200 10 2 181 183 1 36 24 6 6 36 clb auto 25.3 MiB 0.02 196 160 398 88 284 26 64.6 MiB 1.20 0.00 2.24505 2.14835 -91.9072 -2.14835 2.14835 0.00 0.00022322 0.000202277 0.00402302 0.00372354 -1 -1 -1 -1 -1 136 17 646728 646728 138825. 3856.24 0.60 0.0145321 0.0130932 -1 -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_strong/strong_manual_annealing/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_manual_annealing/config/golden_results.txt index 0cf367e9bdb..6488588daa2 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_manual_annealing/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_manual_annealing/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 total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - k6_frac_N10_40nm.xml stereovision3.v common 1.89 vpr 61.52 MiB -1 -1 0.73 27008 5 0.16 -1 -1 36840 -1 -1 7 10 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 63000 10 2 181 183 1 37 19 5 5 25 clb auto 22.0 MiB 0.06 123 1025 767 190 68 61.5 MiB 0.03 0.00 2.0306 -84.8829 -2.0306 2.0306 0.02 0.000393487 0.000346106 0.0203419 0.0179997 -1 -1 -1 -1 24 106 9 485046 377258 28445.8 1137.83 0.08 0.0705347 0.0617863 1707 5297 -1 110 10 80 114 1470 618 1.99984 1.99984 -90.3874 -1.99984 0 0 37126.9 1485.07 0.00 0.02 0.01 -1 -1 0.00 0.0158626 0.0146013 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +k6_frac_N10_40nm.xml stereovision3.v common 1.30 vpr 59.75 MiB -1 -1 0.41 23292 5 0.11 -1 -1 32980 -1 -1 7 10 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 61184 10 2 181 183 1 38 19 5 5 25 clb auto 20.2 MiB 0.03 159 125 1025 754 215 56 59.8 MiB 0.02 0.00 2.0306 2.0306 -85.6043 -2.0306 2.0306 0.01 0.00022991 0.000209474 0.0111608 0.0101844 -1 -1 -1 -1 22 124 12 485046 377258 26278.6 1051.14 0.05 0.0381372 0.0332965 1659 4669 -1 117 9 73 106 1326 594 1.98035 1.98035 -88.0122 -1.98035 0 0 33449.3 1337.97 0.00 0.01 0.00 -1 -1 0.00 0.00879543 0.00815896 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_mcnc/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_mcnc/config/golden_results.txt index 891302c2b5a..b41137fb06f 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_mcnc/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_mcnc/config/golden_results.txt @@ -1,4 +1,4 @@ - arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - k4_N4_90nm.xml diffeq.blif common 17.21 vpr 71.17 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 438 64 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 72880 64 39 1935 1974 1 1077 541 23 23 529 clb auto 31.3 MiB 0.39 10472 141533 36950 100839 3744 71.2 MiB 1.37 0.02 7.46482 -1369.01 -7.46482 7.46482 0.56 0.00521343 0.00460525 0.3928 0.329697 -1 -1 -1 -1 24 13068 28 983127 976439 797780. 1508.09 11.35 2.1497 1.85535 39018 137339 -1 11478 18 6600 23331 1479297 381870 7.27304 7.27304 -1454.66 -7.27304 0 0 1.04508e+06 1975.57 0.04 0.84 0.19 -1 -1 0.04 0.261179 0.233132 - k4_N4_90nm.xml ex5p.blif common 19.31 vpr 67.02 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 366 8 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 68632 8 63 1072 1135 0 894 437 22 22 484 clb auto 27.6 MiB 0.35 12004 99857 28319 69545 1993 67.0 MiB 0.94 0.02 6.86459 -313.968 -6.86459 nan 0.53 0.00337095 0.00291084 0.218826 0.187023 -1 -1 -1 -1 32 16530 34 891726 815929 949946. 1962.70 13.54 0.813128 0.698644 43920 162796 -1 14048 22 8455 31174 3329435 847924 6.8764 nan -316.234 -6.8764 0 0 1.22393e+06 2528.78 0.07 1.22 0.29 -1 -1 0.07 0.185657 0.165735 - k4_N4_90nm.xml s298.blif common 16.74 vpr 73.31 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 580 4 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 75068 4 6 1942 1948 1 1169 590 27 27 729 clb auto 33.1 MiB 0.44 13813 156389 45768 109723 898 73.3 MiB 1.71 0.02 12.2682 -96.384 -12.2682 12.2682 0.97 0.00611806 0.00498358 0.468986 0.387941 -1 -1 -1 -1 26 17490 32 1.39333e+06 1.29301e+06 1.22387e+06 1678.84 9.00 1.38473 1.15574 57250 204657 -1 16420 17 8603 42614 3232268 684840 12.0598 12.0598 -95.4975 -12.0598 0 0 1.55812e+06 2137.34 0.09 1.18 0.31 -1 -1 0.09 0.19019 0.169418 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +k4_N4_90nm.xml diffeq.blif common 4.77 vpr 71.09 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 439 64 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 72796 64 39 1935 1974 1 1075 542 23 23 529 clb auto 30.6 MiB 0.17 24088 10407 135291 36283 95683 3325 71.1 MiB 0.54 0.01 23.0912 7.70338 -1562.28 -7.70338 7.70338 0.20 0.00204037 0.00175241 0.138253 0.119973 -1 -1 -1 -1 24 13067 26 983127 978669 797780. 1508.09 2.35 0.423016 0.368466 39018 137339 -1 11571 16 6466 23559 1530116 397333 7.70338 7.70338 -1636.85 -7.70338 0 0 1.04508e+06 1975.57 0.02 0.30 0.08 -1 -1 0.02 0.0915204 0.0830254 +k4_N4_90nm.xml ex5p.blif common 6.43 vpr 66.02 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 362 8 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 67608 8 63 1072 1135 0 892 433 22 22 484 clb auto 26.5 MiB 0.13 20089 11891 97016 28068 66779 2169 66.0 MiB 0.40 0.01 11.9965 7.14697 -323.69 -7.14697 nan 0.18 0.00132575 0.00117704 0.0896217 0.0802147 -1 -1 -1 -1 32 16897 50 891726 807012 949946. 1962.70 4.19 0.332063 0.290275 43920 162796 -1 13798 21 8357 30046 2938323 715872 6.93884 nan -322.607 -6.93884 0 0 1.22393e+06 2528.78 0.04 0.44 0.09 -1 -1 0.04 0.0723896 0.0654424 +k4_N4_90nm.xml s298.blif common 8.59 vpr 72.09 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 579 4 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 73820 4 6 1942 1948 1 1135 589 27 27 729 clb auto 32.0 MiB 0.19 26761 13173 158541 45950 111660 931 72.1 MiB 0.65 0.01 27.8284 12.5893 -95.8017 -12.5893 12.5893 0.28 0.00228242 0.00194389 0.165963 0.143503 -1 -1 -1 -1 24 18368 39 1.39333e+06 1.29078e+06 1.12265e+06 1539.99 5.38 0.550834 0.474162 54650 192211 -1 15957 20 8308 43971 3554658 708435 12.1943 12.1943 -92.9601 -12.1943 0 0 1.47093e+06 2017.74 0.02 0.58 0.11 -1 -1 0.02 0.116729 0.105328 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_minimax_budgets/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_minimax_budgets/config/golden_results.txt index 639ae9a9ce5..0e878ef14f9 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_minimax_budgets/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_minimax_budgets/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 total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time 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 - k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision3.v common 2.46 vpr 69.17 MiB -1 -1 0.83 26540 4 0.20 -1 -1 36184 -1 -1 15 11 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 70832 11 2 303 283 2 81 28 7 7 49 clb auto 29.7 MiB 0.25 337 112 35 48 29 69.2 MiB 0.02 0.00 4.0728 0 0 3.92737 0.00 0.00065953 0.000573934 0.00619824 0.00583905 -1 -1 -1 -1 399 5.32000 131 1.74667 151 217 4511 1215 1.07788e+06 808410 219490. 4479.39 3 5100 32136 -1 4.15796 4.01977 0 0 -197.842 -1.707 0.05 -1 -1 69.2 MiB 0.12 0.1152 0.11141 69.2 MiB -1 0.01 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time 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 +k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision3.v common 1.32 vpr 67.17 MiB -1 -1 0.41 23076 4 0.10 -1 -1 32984 -1 -1 15 11 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 68784 11 2 303 283 2 82 28 7 7 49 clb auto 27.4 MiB 0.11 424 278 994 204 585 205 67.2 MiB 0.02 0.00 4.1851 4.05951 0 0 3.91314 0.00 0.000345438 0.000313951 0.0112699 0.0104324 -1 -1 -1 -1 318 4.18421 118 1.55263 161 242 4599 1282 1.07788e+06 808410 219490. 4479.39 5 5100 32136 -1 4.18749 3.93845 0 0 -197.86 -1.707 0.02 -1 -1 67.2 MiB 0.07 0.0774666 0.0747377 67.2 MiB -1 0.00 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_no_timing/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_no_timing/config/golden_results.txt index 4db4b05c471..a7808c8d24d 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_no_timing/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_no_timing/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 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 - k6_frac_N10_frac_chain_depop50_mem32K_40nm.xml ch_intrinsics.v common 3.05 vpr 68.36 MiB -1 -1 0.39 22432 3 0.12 -1 -1 36928 -1 -1 65 99 1 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 70000 99 130 344 474 1 215 295 12 12 144 clb auto 29.2 MiB 0.19 685 24820 3391 8404 13025 68.4 MiB 0.05 0.00 32 1772 8 5.66058e+06 4.05111e+06 305575. 2122.05 1.00 +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 initial_placed_wirelength_est 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 +k6_frac_N10_frac_chain_depop50_mem32K_40nm.xml ch_intrinsics.v common 1.32 vpr 66.69 MiB -1 -1 0.22 18840 3 0.06 -1 -1 33104 -1 -1 65 99 1 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 68288 99 130 344 474 1 215 295 12 12 144 clb auto 27.3 MiB 0.07 1546 614 23839 3086 6279 14474 66.7 MiB 0.02 0.00 38 1473 8 5.66058e+06 4.05111e+06 345440. 2398.89 0.20 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_noc/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_noc/config/golden_results.txt index 59b02c3fd0e..3a223b5cf9f 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_noc/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_noc/config/golden_results.txt @@ -1,2 +1,2 @@ - arch circuit noc_flow script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error 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 NoC_agg_bandwidth NoC_latency NoC_n_met_latency_constraints NoC_latency_overrun NoC_congested_bw NoC_congestion_ratio NoC_n_congested_links SAT_agg_bandwidth SAT_latency SAT_n_met_latency_constraints SAT_latency_overrun SAT_congested_bw SAT_congestion_ratio SAT_n_congested_links - stratixiv_arch.timing_small_with_a_embedded_mesh_noc_toplogy.xml complex_2_noc_1D_chain.blif complex_2_noc_1D_chain.flows common 104.06 vpr 1.07 GiB -1 2 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 1126272 2 32 2204 1661 1 1102 107 36 20 720 -1 EP4SGX110 955.6 MiB 4.04 6649 10733 2374 7396 963 1099.9 MiB 0.85 0.01 7.22684 -4978.81 -7.22684 7.22684 14.03 0.00387297 0.00336653 0.329346 0.282395 154 8599 14 0 0 6.94291e+06 9642.93 42.85 2.6403 2.32523 176404 1494154 -1 8630 10 2443 4554 1083511 308854 7.50808 7.50808 -5329.84 -7.50808 0 0 8.91809e+06 12386.2 1.07 0.65 2.72 -1 -1 1.07 0.27806 0.251316 400000 3e-09 1 4.1359e-25 0 0 0 -1 -1 -1 -1 -1 -1 -1 +arch circuit noc_flow script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error 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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est 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 NoC_agg_bandwidth NoC_latency NoC_n_met_latency_constraints NoC_latency_overrun NoC_congested_bw NoC_congestion_ratio NoC_n_congested_links SAT_agg_bandwidth SAT_latency SAT_n_met_latency_constraints SAT_latency_overrun SAT_congested_bw SAT_congestion_ratio SAT_n_congested_links +stratixiv_arch.timing_small_with_a_embedded_mesh_noc_toplogy.xml complex_2_noc_1D_chain.blif complex_2_noc_1D_chain.flows common 40.63 vpr 1.07 GiB -1 2 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 1124608 2 32 2204 1661 1 1104 108 36 20 720 -1 EP4SGX110 954.6 MiB 2.03 15097 6710 12958 2982 8805 1171 1098.2 MiB 0.42 0.01 8.01944 7.31997 -4968.85 -7.31997 7.31997 5.35 0.00271249 0.00239307 0.162656 0.143711 154 8889 12 0 0 6.94291e+06 9642.93 8.24 0.999967 0.885649 176404 1494154 -1 8829 14 2492 4758 998347 275320 7.64666 7.64666 -5202.88 -7.64666 0 0 8.91809e+06 12386.2 0.44 0.31 1.33 -1 -1 0.44 0.140458 0.130997 400000 3e-09 1 4.1359e-25 0 0 0 -1 -1 -1 -1 -1 -1 -1 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_pack/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_pack/config/golden_results.txt index b67a185d189..08e549a0cfe 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_pack/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_pack/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 total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - k6_N10_mem32K_40nm.xml stereovision3.v common 1.76 vpr 66.03 MiB -1 -1 0.86 26892 5 0.18 -1 -1 37096 -1 -1 12 10 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 67612 10 2 181 183 1 35 24 6 6 36 clb auto 27.0 MiB 0.05 -1 -1 -1 -1 -1 -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.00186164 0.0017947 -1 -1 -1 -1 -1 -1 -1 -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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +k6_N10_mem32K_40nm.xml stereovision3.v common 1.10 vpr 64.27 MiB -1 -1 0.42 23432 5 0.11 -1 -1 33216 -1 -1 12 10 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65816 10 2 181 183 1 36 24 6 6 36 clb auto 25.2 MiB 0.02 -1 -1 -1 -1 -1 -1 -1 -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.00102325 0.000991048 -1 -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_strong/strong_pack_and_place/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_pack_and_place/config/golden_results.txt index 153be88f8d6..ced45279053 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_pack_and_place/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_pack_and_place/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 total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - k6_N10_mem32K_40nm.xml stereovision3.v common 1.90 vpr 66.02 MiB -1 -1 0.83 26896 5 0.19 -1 -1 36968 -1 -1 12 10 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 67604 10 2 181 183 1 35 24 6 6 36 clb auto 26.9 MiB 0.05 152 432 67 335 30 66.0 MiB 0.01 0.00 2.14643 -92.8849 -2.14643 2.14643 0.04 0.000402396 0.000353615 0.00726063 0.00647248 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0.00909673 0.00824277 -1 -1 -1 -1 -1 -1 -1 -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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +k6_N10_mem32K_40nm.xml stereovision3.v common 1.08 vpr 64.28 MiB -1 -1 0.41 23048 5 0.11 -1 -1 32960 -1 -1 12 10 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65820 10 2 181 183 1 36 24 6 6 36 clb auto 24.9 MiB 0.02 196 151 500 122 353 25 64.3 MiB 0.01 0.00 2.24217 2.14643 -91.6412 -2.14643 2.14643 0.01 0.000220907 0.000200935 0.00457561 0.00422076 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0.00559149 0.00520404 -1 -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_strong/strong_pack_disable/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_pack_disable/config/golden_results.txt index 6e6ab2e273c..0495632427e 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_pack_disable/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_pack_disable/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 ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - k6_frac_N10_40nm.xml mult_5x6.blif common 0.60 vpr 60.79 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 4 11 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 62244 11 11 59 70 0 48 26 4 4 16 clb auto 22.1 MiB 0.03 179 862 260 602 0 60.8 MiB 0.02 0.00 2.46139 -19.889 -2.46139 nan 0.01 0.000312912 0.000279273 0.00803541 0.00727675 -1 -1 -1 -1 28 244 41 215576 215576 17602.3 1100.14 0.11 0.0569851 0.0502764 984 2821 -1 165 13 220 476 6314 3099 2.61613 nan -21.1174 -2.61613 0 0 21084.5 1317.78 0.00 0.01 0.00 -1 -1 0.00 0.0102047 0.00933765 - k6_frac_N10_40nm_disable_packing.xml mult_5x6.blif common 0.06 vpr 23.38 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 exited with return code 1 v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 23944 11 11 59 70 0 -1 -1 -1 -1 -1 -1 -1 22.3 MiB 0.00 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +k6_frac_N10_40nm.xml mult_5x6.blif common 0.38 vpr 59.25 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 4 11 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 60668 11 11 59 70 0 48 26 4 4 16 clb auto 20.2 MiB 0.02 205 178 672 211 461 0 59.2 MiB 0.01 0.00 2.48509 2.46139 -19.889 -2.46139 nan 0.01 0.000116739 0.000106346 0.00301039 0.00279891 -1 -1 -1 -1 30 215 23 215576 215576 18771.3 1173.21 0.04 0.0201992 0.0174425 1016 3020 -1 186 15 222 505 8959 4790 2.75695 nan -23.0631 -2.75695 0 0 22855.5 1428.47 0.00 0.01 0.00 -1 -1 0.00 0.00609754 0.00553999 +k6_frac_N10_40nm_disable_packing.xml mult_5x6.blif common 0.05 vpr 20.75 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 exited with return code 1 v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 21248 11 11 59 70 0 -1 -1 -1 -1 -1 -1 -1 19.2 MiB 0.00 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -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_strong/strong_pack_modes/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_pack_modes/config/golden_results.txt index 12efb65ec8c..a5132decd03 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_pack_modes/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_pack_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 total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - k4_N8_tileable_reset_softadder_register_scan_chain_nonLR_caravel_io_skywater130nm.xml reg_4x32.blif common 2.54 vpr 77.00 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 32 33 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 78852 33 32 161 193 1 65 97 34 34 1156 -1 32x32 21.4 MiB 0.02 -1 -1 -1 -1 -1 -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.00178122 0.0017245 -1 -1 -1 -1 -1 -1 -1 -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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +k4_N8_tileable_reset_softadder_register_scan_chain_nonLR_caravel_io_skywater130nm.xml reg_4x32.blif common 1.00 vpr 74.61 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 32 33 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 76400 33 32 161 193 1 65 97 34 34 1156 -1 32x32 18.9 MiB 0.01 -1 -1 -1 -1 -1 -1 -1 -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.000953076 0.000926056 -1 -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_strong/strong_place/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_place/config/golden_results.txt index 87ace76c192..675c9ec8c27 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_place/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_place/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 total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - k6_N10_mem32K_40nm.xml multiclock.blif common 0.20 vpr 64.91 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 5 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 66472 5 3 11 14 2 9 10 4 4 16 clb auto -1 -1 21 30 9 19 2 64.9 MiB 0.00 0.00 0.646042 -3.51892 -0.646042 0.571 0.01 4.3045e-05 2.9263e-05 0.00159366 0.001524 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0.00159366 0.001524 -1 -1 -1 -1 -1 -1 -1 -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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +k6_N10_mem32K_40nm.xml multiclock.blif common 0.16 vpr 62.90 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 5 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 64408 5 3 11 14 2 9 10 4 4 16 clb auto -1 -1 24 21 30 9 19 2 62.9 MiB 0.00 0.00 0.739166 0.646042 -3.51892 -0.646042 0.571 0.00 2.3236e-05 1.6158e-05 0.000950924 0.000910209 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0.000950924 0.000910209 -1 -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_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 8361bf1bfe6..63ec0c82585 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 ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - stratixiv_arch.timing.xml styr.blif common_--place_delay_model_delta_--place_delta_delay_matrix_calculation_method_astar 38.75 vpr 978.28 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 1001760 10 10 168 178 1 68 30 11 8 88 io auto 955.3 MiB 0.46 364 858 131 680 47 978.3 MiB 0.06 0.00 6.37129 -69.6808 -6.37129 6.37129 1.81 0.000551403 0.000481676 0.0153225 0.013705 -1 -1 -1 -1 22 874 22 0 0 110609. 1256.92 1.54 0.247666 0.215864 11258 24748 -1 728 16 428 1746 95453 49745 6.73416 6.73416 -75.7525 -6.73416 0 0 134428. 1527.59 0.01 0.08 0.07 -1 -1 0.01 0.0332471 0.0304495 - stratixiv_arch.timing.xml styr.blif common_--place_delay_model_delta_override_--place_delta_delay_matrix_calculation_method_astar 37.57 vpr 978.39 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 1001868 10 10 168 178 1 68 30 11 8 88 io auto 955.5 MiB 0.66 371 950 121 778 51 978.4 MiB 0.07 0.00 6.34606 -69.4373 -6.34606 6.34606 2.32 0.000744808 0.000651566 0.0166971 0.0148799 -1 -1 -1 -1 32 654 12 0 0 153433. 1743.56 0.90 0.149648 0.129506 11830 34246 -1 601 15 249 896 54680 24076 6.61838 6.61838 -74.0379 -6.61838 0 0 205860. 2339.32 0.01 0.07 0.09 -1 -1 0.01 0.0346715 0.0320467 - stratixiv_arch.timing.xml styr.blif common_--place_delay_model_delta_--place_delta_delay_matrix_calculation_method_dijkstra 34.09 vpr 978.18 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 1001652 10 10 168 178 1 68 30 11 8 88 io auto 955.4 MiB 0.44 376 582 74 468 40 978.2 MiB 0.07 0.00 6.26487 -68.7007 -6.26487 6.26487 2.74 0.000593656 0.000520243 0.0126605 0.0115382 -1 -1 -1 -1 28 858 45 0 0 134428. 1527.59 1.21 0.206409 0.180557 11590 29630 -1 614 14 305 1283 69506 33247 6.72367 6.72367 -73.5822 -6.72367 0 0 173354. 1969.93 0.01 0.08 0.06 -1 -1 0.01 0.0327372 0.0302784 - stratixiv_arch.timing.xml styr.blif common_--place_delay_model_delta_override_--place_delta_delay_matrix_calculation_method_dijkstra 41.01 vpr 978.76 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 1002252 10 10 168 178 1 68 30 11 8 88 io auto 955.6 MiB 0.60 352 582 88 454 40 978.8 MiB 0.05 0.00 6.37106 -69.2764 -6.37106 6.37106 3.17 0.000446168 0.000388088 0.0115458 0.0104844 -1 -1 -1 -1 22 778 22 0 0 110609. 1256.92 1.84 0.253098 0.220545 11258 24748 -1 690 15 386 1546 88347 46120 6.75259 6.75259 -75.6874 -6.75259 0 0 134428. 1527.59 0.01 0.08 0.06 -1 -1 0.01 0.0310233 0.0286671 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +stratixiv_arch.timing.xml styr.blif common_--place_delay_model_delta_--place_delta_delay_matrix_calculation_method_astar 22.92 vpr 980.03 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 1003552 10 10 168 178 1 65 30 11 8 88 io auto 953.5 MiB 0.34 461 363 812 65 683 64 980.0 MiB 0.06 0.00 6.74915 6.53925 -69.3815 -6.53925 6.53925 1.02 0.000306729 0.00027993 0.00872325 0.00811554 -1 -1 -1 -1 18 1016 35 0 0 88979.3 1011.13 0.42 0.0610226 0.0537175 11100 22242 -1 903 21 541 2228 132955 67625 6.88394 6.88394 -78.1788 -6.88394 0 0 114778. 1304.29 0.00 0.06 0.03 -1 -1 0.00 0.0200797 0.0183694 +stratixiv_arch.timing.xml styr.blif common_--place_delay_model_delta_override_--place_delta_delay_matrix_calculation_method_astar 22.00 vpr 979.29 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 1002788 10 10 168 178 1 65 30 11 8 88 io auto 952.8 MiB 0.32 461 360 766 54 639 73 979.3 MiB 0.06 0.00 6.74915 6.50519 -69.5865 -6.50519 6.50519 0.99 0.000304647 0.000272539 0.00848216 0.00790543 -1 -1 -1 -1 22 737 19 0 0 110609. 1256.92 0.26 0.0516738 0.0459714 11258 24748 -1 741 17 354 1302 73546 39254 6.97435 6.97435 -75.9089 -6.97435 0 0 134428. 1527.59 0.00 0.05 0.03 -1 -1 0.00 0.017292 0.0159531 +stratixiv_arch.timing.xml styr.blif common_--place_delay_model_delta_--place_delta_delay_matrix_calculation_method_dijkstra 22.43 vpr 979.48 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 1002984 10 10 168 178 1 65 30 11 8 88 io auto 953.0 MiB 0.32 461 374 858 76 722 60 979.5 MiB 0.05 0.00 6.74915 6.37842 -69.0199 -6.37842 6.37842 1.38 0.000304178 0.000276269 0.00897291 0.0083292 -1 -1 -1 -1 18 1028 44 0 0 88979.3 1011.13 0.39 0.0630047 0.0554817 11100 22242 -1 860 17 503 1822 111191 56265 7.04132 7.04132 -78.8721 -7.04132 0 0 114778. 1304.29 0.00 0.06 0.03 -1 -1 0.00 0.0175163 0.0161202 +stratixiv_arch.timing.xml styr.blif common_--place_delay_model_delta_override_--place_delta_delay_matrix_calculation_method_dijkstra 22.53 vpr 979.44 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 1002948 10 10 168 178 1 65 30 11 8 88 io auto 953.6 MiB 0.32 461 351 812 66 693 53 979.4 MiB 0.06 0.00 6.74915 6.37842 -69.076 -6.37842 6.37842 1.41 0.0006279 0.000600407 0.0105144 0.00982327 -1 -1 -1 -1 18 886 33 0 0 88979.3 1011.13 0.35 0.0596658 0.0528181 11100 22242 -1 779 16 420 1590 93739 47077 6.94344 6.94344 -77.4262 -6.94344 0 0 114778. 1304.29 0.00 0.05 0.03 -1 -1 0.00 0.0171118 0.0158021 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 10a6cf257aa..3ed02e126a6 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_place_delay_model/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_place_delay_model/config/golden_results.txt @@ -1,3 +1,3 @@ - arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - stratixiv_arch.timing.xml styr.blif common_--place_delay_model_delta 36.65 vpr 978.54 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 1002024 10 10 168 178 1 68 30 11 8 88 io auto 955.6 MiB 0.61 385 628 76 517 35 978.5 MiB 0.06 0.00 6.37842 -68.9926 -6.37842 6.37842 2.33 0.000579422 0.00050489 0.0121495 0.01103 -1 -1 -1 -1 28 740 24 0 0 134428. 1527.59 1.00 0.197686 0.174013 11590 29630 -1 638 15 260 898 57405 28552 6.7547 6.7547 -73.7765 -6.7547 0 0 173354. 1969.93 0.01 0.07 0.08 -1 -1 0.01 0.0316604 0.0292377 - stratixiv_arch.timing.xml styr.blif common_--place_delay_model_delta_override 28.63 vpr 978.48 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 1001964 10 10 168 178 1 68 30 11 8 88 io auto 955.5 MiB 0.43 356 628 86 501 41 978.5 MiB 0.06 0.00 6.32784 -69.1369 -6.32784 6.32784 1.45 0.000300815 0.000260189 0.00775385 0.00704586 -1 -1 -1 -1 26 696 13 0 0 125464. 1425.72 0.78 0.12183 0.106239 11500 28430 -1 625 14 346 1342 78096 38981 6.62332 6.62332 -73.8789 -6.62332 0 0 163463. 1857.53 0.01 0.07 0.04 -1 -1 0.01 0.0278034 0.0259211 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +stratixiv_arch.timing.xml styr.blif common_--place_delay_model_delta 22.41 vpr 980.03 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 1003552 10 10 168 178 1 65 30 11 8 88 io auto 953.5 MiB 0.32 530 354 766 109 603 54 980.0 MiB 0.05 0.00 6.8164 6.25965 -69.3407 -6.25965 6.25965 0.97 0.000305911 0.00027714 0.00819653 0.00761311 -1 -1 -1 -1 20 842 24 0 0 100248. 1139.18 0.28 0.0523692 0.0463301 11180 23751 -1 740 16 428 1793 101987 51614 6.72979 6.72979 -75.9114 -6.72979 0 0 125464. 1425.72 0.00 0.05 0.03 -1 -1 0.00 0.0176516 0.0163051 +stratixiv_arch.timing.xml styr.blif common_--place_delay_model_delta_override 22.21 vpr 980.03 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 1003548 10 10 168 178 1 65 30 11 8 88 io auto 953.5 MiB 0.33 530 359 766 97 619 50 980.0 MiB 0.05 0.00 6.8164 6.26487 -69.3105 -6.26487 6.26487 0.99 0.000310412 0.000282703 0.00828685 0.00771023 -1 -1 -1 -1 22 829 20 0 0 110609. 1256.92 0.27 0.0520543 0.046207 11258 24748 -1 771 17 378 1439 87505 45574 6.83905 6.83905 -76.8941 -6.83905 0 0 134428. 1527.59 0.00 0.05 0.03 -1 -1 0.00 0.0186146 0.0171176 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_place_effort_scaling/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_place_effort_scaling/config/golden_results.txt index bee9bf5e15f..6f6380c9b82 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_place_effort_scaling/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_place_effort_scaling/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 ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - EArch.xml ex5p.blif common_--place_effort_scaling_circuit 3.66 vpr 76.81 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 64 8 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 78656 8 63 1072 1135 0 619 135 12 12 144 clb auto 36.7 MiB 2.32 6246 12245 2336 8854 1055 76.8 MiB 0.39 0.01 4.93521 -218.151 -4.93521 nan 0.22 0.00367856 0.00299064 0.169598 0.144286 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0.174334 0.148491 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - EArch.xml ex5p.blif common_--place_effort_scaling_device_circuit 3.50 vpr 76.56 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 64 8 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 78400 8 63 1072 1135 0 619 135 12 12 144 clb auto 36.4 MiB 2.21 6248 12409 2316 9051 1042 76.6 MiB 0.36 0.01 5.00015 -217.921 -5.00015 nan 0.26 0.00350625 0.00296092 0.150187 0.130251 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0.154752 0.13448 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - EArch.xml ex5p.blif common_--place_effort_scaling_circuit_--target_utilization_0.1 4.86 vpr 76.73 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 64 8 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 78576 8 63 1072 1135 0 619 135 27 27 729 -1 auto 36.5 MiB 1.80 6557 16051 3559 11939 553 76.7 MiB 0.46 0.01 5.39652 -231.823 -5.39652 nan 1.19 0.00333577 0.00278218 0.186781 0.161087 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0.19137 0.165152 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - EArch.xml ex5p.blif common_--place_effort_scaling_device_circuit_--target_utilization_0.1 7.27 vpr 76.75 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 64 8 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 78592 8 63 1072 1135 0 619 135 27 27 729 -1 auto 36.7 MiB 2.48 6642 53385 10847 39555 2983 76.8 MiB 0.94 0.01 5.30857 -236.309 -5.30857 nan 1.66 0.00199214 0.00171649 0.207463 0.177518 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0.212761 0.182102 -1 -1 -1 -1 -1 -1 -1 -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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +EArch.xml ex5p.blif common_--place_effort_scaling_circuit 1.72 vpr 75.54 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 62 8 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 77356 8 63 1072 1135 0 611 133 11 11 121 clb auto 35.8 MiB 1.13 7518 6082 8947 1533 6815 599 75.5 MiB 0.13 0.00 5.94011 5.07653 -213.869 -5.07653 nan 0.08 0.00137467 0.00121391 0.0556444 0.0510707 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0.0578783 0.0530616 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +EArch.xml ex5p.blif common_--place_effort_scaling_device_circuit 1.74 vpr 75.11 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 62 8 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 76912 8 63 1072 1135 0 611 133 11 11 121 clb auto 35.4 MiB 1.14 7518 6142 9355 1631 7067 657 75.1 MiB 0.14 0.00 5.94011 4.97625 -208.188 -4.97625 nan 0.08 0.00136238 0.00119962 0.0598913 0.054887 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0.0620728 0.0568398 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +EArch.xml ex5p.blif common_--place_effort_scaling_circuit_--target_utilization_0.1 3.05 vpr 74.80 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 62 8 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 76600 8 63 1072 1135 0 611 133 27 27 729 -1 auto 34.7 MiB 1.17 17047 6704 22507 6724 13850 1933 74.8 MiB 0.27 0.00 9.03576 5.62812 -248.555 -5.62812 nan 0.62 0.0013434 0.00117795 0.109585 0.098544 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0.11189 0.100604 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +EArch.xml ex5p.blif common_--place_effort_scaling_device_circuit_--target_utilization_0.1 3.16 vpr 75.50 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 62 8 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 77312 8 63 1072 1135 0 611 133 27 27 729 -1 auto 35.8 MiB 1.12 17047 6681 64488 18508 41026 4954 75.5 MiB 0.50 0.01 9.03576 5.51074 -242.103 -5.51074 nan 0.60 0.00133767 0.00117811 0.100107 0.0904562 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0.102225 0.0923579 -1 -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_strong/strong_place_quench_slack/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_place_quench_slack/config/golden_results.txt index 344063856f9..395177b0d33 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_place_quench_slack/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_place_quench_slack/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 total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - k6_N10_mem32K_40nm.xml stereovision3.v common 2.31 vpr 66.14 MiB -1 -1 0.81 26892 5 0.20 -1 -1 36924 -1 -1 12 10 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 67732 10 2 181 183 1 35 24 6 6 36 clb auto 27.0 MiB 0.05 152 432 67 335 30 66.1 MiB 0.02 0.00 2.14643 -92.8849 -2.14643 2.14643 0.04 0.000410176 0.000357432 0.00947888 0.00721552 -1 -1 -1 -1 12 196 16 646728 646728 19965.4 554.594 0.10 0.0626682 0.052856 1696 3924 -1 174 13 186 392 8874 2604 2.14935 2.14935 -96.0816 -2.14935 0 0 25971.8 721.439 0.00 0.02 0.01 -1 -1 0.00 0.0168161 0.0151469 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +k6_N10_mem32K_40nm.xml stereovision3.v common 1.34 vpr 63.99 MiB -1 -1 0.41 23048 5 0.11 -1 -1 32976 -1 -1 12 10 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65528 10 2 181 183 1 36 24 6 6 36 clb auto 24.5 MiB 0.02 196 151 500 122 353 25 64.0 MiB 0.01 0.00 2.24217 2.14643 -91.6412 -2.14643 2.14643 0.01 0.000235085 0.000214701 0.00476972 0.00440908 -1 -1 -1 -1 12 169 17 646728 646728 19965.4 554.594 0.06 0.03334 0.0288534 1696 3924 -1 165 16 218 500 9678 3037 2.12594 2.12594 -92.801 -2.12594 0 0 25971.8 721.439 0.00 0.01 0.00 -1 -1 0.00 0.0100241 0.00897853 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_post_routing_sync/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_post_routing_sync/config/golden_results.txt index a4fadd34b2c..5843e7559a3 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_post_routing_sync/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_post_routing_sync/config/golden_results.txt @@ -1,21 +1,21 @@ - arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml const_true.blif common 0.35 vpr 62.50 MiB -1 -1 -1 -1 0 0.02 -1 -1 33168 -1 -1 1 0 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 64000 -1 1 1 2 0 1 2 3 3 9 -1 auto 24.3 MiB 0.00 0 3 0 0 3 62.5 MiB 0.00 0.00 nan 0 0 nan 0.00 1.2148e-05 6.319e-06 7.9011e-05 5.1305e-05 -1 -1 -1 -1 -1 0 1 3900 3900 7855.82 872.868 0.00 0.00149016 0.00141935 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml const_false.blif common 0.45 vpr 62.59 MiB -1 -1 -1 -1 0 0.03 -1 -1 33140 -1 -1 1 0 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 64092 -1 1 1 2 0 1 2 3 3 9 -1 auto 24.3 MiB 0.00 0 3 0 0 3 62.6 MiB 0.00 0.00 nan 0 0 nan 0.00 1.2883e-05 7.145e-06 8.5494e-05 5.1608e-05 -1 -1 -1 -1 -1 0 1 3900 3900 7855.82 872.868 0.00 0.00156787 0.00149125 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml always_true.blif common 0.37 vpr 62.62 MiB -1 -1 -1 -1 0 0.02 -1 -1 33248 -1 -1 1 0 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 64128 6 1 1 8 0 1 8 3 3 9 -1 auto 24.3 MiB 0.00 0 21 0 11 10 62.6 MiB 0.00 0.00 nan 0 0 nan 0.00 1.4288e-05 8.001e-06 8.7045e-05 5.7557e-05 -1 -1 -1 -1 -1 0 1 3900 3900 7855.82 872.868 0.00 0.0015153 0.00144219 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml always_false.blif common 0.39 vpr 62.59 MiB -1 -1 -1 -1 0 0.02 -1 -1 33208 -1 -1 1 0 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 64096 6 1 1 8 0 1 8 3 3 9 -1 auto 24.2 MiB 0.00 0 21 0 11 10 62.6 MiB 0.00 0.00 nan 0 0 nan 0.00 1.2682e-05 6.827e-06 7.4747e-05 4.546e-05 -1 -1 -1 -1 -1 0 1 3900 3900 7855.82 872.868 0.00 0.00148015 0.0014067 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml and.blif common 0.37 vpr 62.59 MiB -1 -1 -1 -1 1 0.02 -1 -1 32904 -1 -1 1 2 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 64092 2 1 3 4 0 3 4 3 3 9 -1 auto 24.2 MiB 0.00 9 9 5 0 4 62.6 MiB 0.00 0.00 0.443777 -0.443777 -0.443777 nan 0.00 1.5556e-05 1.071e-05 9.7598e-05 7.1292e-05 -1 -1 -1 -1 -1 6 9 3900 3900 7855.82 872.868 0.00 0.00159844 0.00147185 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml multiconnected_lut.blif common 0.47 vpr 62.71 MiB -1 -1 -1 -1 2 0.05 -1 -1 34804 -1 -1 1 5 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 64216 5 1 7 8 0 7 7 3 3 9 -1 auto 24.3 MiB 0.00 20 18 12 0 6 62.7 MiB 0.00 0.00 0.70303 -0.70303 -0.70303 nan 0.00 2.4161e-05 1.7898e-05 0.000147057 0.000117193 -1 -1 -1 -1 -1 8 6 3900 3900 7855.82 872.868 0.00 0.00183362 0.0017084 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml multiconnected_lut2.blif common 0.53 vpr 62.71 MiB -1 -1 -1 -1 2 0.06 -1 -1 35320 -1 -1 1 5 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 64216 5 1 7 8 0 7 7 3 3 9 -1 auto 24.3 MiB 0.00 20 18 13 0 5 62.7 MiB 0.00 0.00 0.70303 -0.70303 -0.70303 nan 0.00 2.4929e-05 1.9146e-05 0.000149053 0.000119002 -1 -1 -1 -1 -1 11 12 3900 3900 7855.82 872.868 0.00 0.00207292 0.001883 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml and_latch.blif common 0.42 vpr 62.59 MiB -1 -1 -1 -1 1 0.03 -1 -1 33204 -1 -1 1 3 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 64092 3 1 5 6 1 4 5 3 3 9 -1 auto 24.2 MiB 0.00 9 12 9 0 3 62.6 MiB 0.00 0.00 0.274843 -0.536407 -0.274843 0.274843 0.00 2.0225e-05 1.4435e-05 0.000138329 0.000106209 -1 -1 -1 -1 -1 5 8 3900 3900 7855.82 872.868 0.00 0.00194055 0.00179435 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml false_path_mux.blif common 0.55 vpr 62.71 MiB -1 -1 -1 -1 1 0.05 -1 -1 35156 -1 -1 1 3 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 64220 4 1 4 6 0 4 6 3 3 9 -1 auto 24.2 MiB 0.00 12 15 11 0 4 62.7 MiB 0.00 0.00 0.443777 -0.443777 -0.443777 nan 0.00 1.8428e-05 1.2806e-05 0.000110516 8.1976e-05 -1 -1 -1 -1 -1 7 16 3900 3900 7855.82 872.868 0.00 0.00192067 0.00172939 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml mult_2x2.blif common 0.46 vpr 62.61 MiB -1 -1 -1 -1 1 0.04 -1 -1 34976 -1 -1 1 4 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 64116 4 4 8 12 0 8 9 3 3 9 -1 auto 24.2 MiB 0.00 25 27 23 0 4 62.6 MiB 0.00 0.00 0.443777 -1.77511 -0.443777 nan 0.00 3.5532e-05 2.8723e-05 0.000236043 0.000198004 -1 -1 -1 -1 -1 27 13 3900 3900 7855.82 872.868 0.01 0.00398568 0.00368261 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml mult_3x3.blif common 0.61 vpr 62.75 MiB -1 -1 -1 -1 3 0.07 -1 -1 36472 -1 -1 3 6 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 64252 6 6 28 34 0 28 15 5 5 25 clb auto 24.3 MiB 0.01 107 51 16 35 0 62.7 MiB 0.00 0.00 1.19848 -5.43061 -1.19848 nan 0.00 0.000100657 8.7627e-05 0.000667635 0.000607608 -1 -1 -1 -1 -1 194 14 23400 11700 33739.5 1349.58 0.01 0.00536054 0.00480663 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml mult_3x4.blif common 0.75 vpr 62.83 MiB -1 -1 -1 -1 4 0.08 -1 -1 35812 -1 -1 5 7 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 64336 7 8 39 47 0 39 20 5 5 25 clb auto 24.3 MiB 0.01 166 236 59 163 14 62.8 MiB 0.01 0.00 1.46514 -7.47508 -1.46514 nan 0.00 0.000142827 0.000124431 0.00201267 0.00182384 -1 -1 -1 -1 -1 357 19 23400 19500 33739.5 1349.58 0.07 0.00974199 0.0081496 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml mult_4x4.blif common 0.67 vpr 62.86 MiB -1 -1 -1 -1 8 0.09 -1 -1 36008 -1 -1 7 8 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 64372 8 8 51 59 0 51 23 6 6 36 clb auto 24.3 MiB 0.02 202 311 50 255 6 62.9 MiB 0.02 0.00 2.65433 -12.8801 -2.65433 nan 0.00 0.000156562 0.000133883 0.00249164 0.00221647 -1 -1 -1 -1 -1 478 20 165600 27300 61410.5 1705.85 0.05 0.0170085 0.00970498 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml mult_5x5.blif common 0.77 vpr 63.19 MiB -1 -1 -1 -1 7 0.11 -1 -1 36176 -1 -1 11 10 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 64708 10 10 95 105 0 95 31 6 6 36 clb auto 24.3 MiB 0.02 440 559 101 432 26 63.2 MiB 0.01 0.00 2.57669 -18.1473 -2.57669 nan 0.00 0.000278847 0.000243412 0.00448766 0.00402238 -1 -1 -1 -1 -1 952 23 165600 42900 61410.5 1705.85 0.09 0.0224337 0.0198151 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml mult_5x6.blif common 0.93 vpr 63.20 MiB -1 -1 -1 -1 8 0.11 -1 -1 36276 -1 -1 11 11 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 64716 11 11 94 105 0 94 33 6 6 36 clb auto 24.3 MiB 0.02 429 397 56 319 22 63.2 MiB 0.01 0.00 2.82654 -21.1346 -2.82654 nan 0.00 0.000270538 0.000239054 0.003281 0.00285871 -1 -1 -1 -1 -1 949 23 165600 42900 61410.5 1705.85 0.17 0.0231325 0.0204271 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml rca_1bit.blif common 0.47 vpr 62.71 MiB -1 -1 -1 -1 1 0.06 -1 -1 34320 -1 -1 1 3 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 64220 3 2 5 7 0 5 6 3 3 9 -1 auto 24.3 MiB 0.00 15 15 11 0 4 62.7 MiB 0.00 0.00 0.443777 -0.887553 -0.443777 nan 0.00 2.4709e-05 1.8183e-05 0.000141351 0.000109437 -1 -1 -1 -1 -1 12 16 3900 3900 7855.82 872.868 0.00 0.00207041 0.0018628 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml rca_2bit.blif common 0.46 vpr 62.58 MiB -1 -1 -1 -1 2 0.06 -1 -1 35476 -1 -1 1 5 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 64084 5 3 9 12 0 9 9 3 3 9 -1 auto 24.2 MiB 0.00 26 27 24 0 3 62.6 MiB 0.00 0.00 0.70303 -1.84984 -0.70303 nan 0.00 3.6085e-05 2.9105e-05 0.000215176 0.00018047 -1 -1 -1 -1 -1 19 17 3900 3900 7855.82 872.868 0.00 0.0027146 0.00242632 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml rca_3bit.blif common 0.58 vpr 62.59 MiB -1 -1 -1 -1 3 0.05 -1 -1 35528 -1 -1 1 7 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 64092 7 4 13 17 0 13 12 3 3 9 -1 auto 24.2 MiB 0.01 37 38 34 0 4 62.6 MiB 0.00 0.00 0.962283 -3.07137 -0.962283 nan 0.00 5.1242e-05 4.3365e-05 0.000310909 0.00026784 -1 -1 -1 -1 -1 42 19 3900 3900 7855.82 872.868 0.01 0.00339296 0.00299342 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml rca_4bit.blif common 0.56 vpr 62.59 MiB -1 -1 -1 -1 4 0.06 -1 -1 35528 -1 -1 1 9 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 64092 9 5 17 22 0 17 15 3 3 9 -1 auto 24.2 MiB 0.01 48 51 43 0 8 62.6 MiB 0.00 0.00 1.22154 -4.55216 -1.22154 nan 0.00 5.8362e-05 4.9699e-05 0.000357643 0.000314843 -1 -1 -1 -1 -1 65 18 3900 3900 7855.82 872.868 0.01 0.00442103 0.00396409 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml rca_5bit.blif common 0.68 vpr 62.61 MiB -1 -1 -1 -1 4 0.06 -1 -1 35388 -1 -1 2 11 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 64108 11 6 24 30 0 24 19 4 4 16 clb auto 24.2 MiB 0.02 81 219 59 138 22 62.6 MiB 0.00 0.00 1.3375 -6.59285 -1.3375 nan 0.00 7.7083e-05 6.6497e-05 0.00098279 0.000856632 -1 -1 -1 -1 -1 132 15 7800 7800 17482.0 1092.63 0.01 0.00598903 0.00545622 -1 -1 -1 -1 -1 -1 -1 -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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml const_true.blif common 0.36 vpr 60.43 MiB -1 -1 -1 -1 0 0.02 -1 -1 29676 -1 -1 1 0 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 61880 -1 1 1 2 0 1 2 3 3 9 -1 auto 22.2 MiB 0.00 0 0 3 0 0 3 60.4 MiB 0.00 0.00 nan nan 0 0 nan 0.00 7.296e-06 3.575e-06 5.3474e-05 3.4748e-05 -1 -1 -1 -1 -1 0 1 3900 3900 7855.82 872.868 0.00 0.000904004 0.000849526 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml const_false.blif common 0.36 vpr 60.80 MiB -1 -1 -1 -1 0 0.02 -1 -1 29684 -1 -1 1 0 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 62264 -1 1 1 2 0 1 2 3 3 9 -1 auto 22.2 MiB 0.00 0 0 3 0 0 3 60.8 MiB 0.00 0.00 nan nan 0 0 nan 0.00 7.496e-06 3.69e-06 5.8082e-05 3.8158e-05 -1 -1 -1 -1 -1 0 1 3900 3900 7855.82 872.868 0.00 0.000901154 0.000845801 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml always_true.blif common 0.36 vpr 60.80 MiB -1 -1 -1 -1 0 0.02 -1 -1 29952 -1 -1 1 0 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 62260 6 1 1 8 0 1 8 3 3 9 -1 auto 22.2 MiB 0.00 0 0 21 0 11 10 60.8 MiB 0.00 0.00 nan nan 0 0 nan 0.00 7.111e-06 3.382e-06 5.4556e-05 3.4728e-05 -1 -1 -1 -1 -1 0 1 3900 3900 7855.82 872.868 0.00 0.000917657 0.000862813 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml always_false.blif common 0.36 vpr 60.80 MiB -1 -1 -1 -1 0 0.02 -1 -1 29952 -1 -1 1 0 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 62264 6 1 1 8 0 1 8 3 3 9 -1 auto 22.5 MiB 0.00 0 0 21 0 11 10 60.8 MiB 0.00 0.00 nan nan 0 0 nan 0.00 7.24e-06 3.304e-06 5.5468e-05 3.579e-05 -1 -1 -1 -1 -1 0 1 3900 3900 7855.82 872.868 0.00 0.00091067 0.000853465 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml and.blif common 0.36 vpr 60.80 MiB -1 -1 -1 -1 1 0.02 -1 -1 29952 -1 -1 1 2 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 62260 2 1 3 4 0 3 4 3 3 9 -1 auto 22.5 MiB 0.00 9 9 9 5 0 4 60.8 MiB 0.00 0.00 0.443777 0.443777 -0.443777 -0.443777 nan 0.00 9.017e-06 5.776e-06 7.2583e-05 5.3358e-05 -1 -1 -1 -1 -1 6 9 3900 3900 7855.82 872.868 0.00 0.001055 0.000959415 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml multiconnected_lut.blif common 0.40 vpr 60.70 MiB -1 -1 -1 -1 2 0.03 -1 -1 31872 -1 -1 1 5 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 62156 5 1 7 8 0 7 7 3 3 9 -1 auto 22.1 MiB 0.00 20 20 18 12 0 6 60.7 MiB 0.00 0.00 0.70303 0.70303 -0.70303 -0.70303 nan 0.00 1.2825e-05 9.334e-06 9.8624e-05 7.8623e-05 -1 -1 -1 -1 -1 8 6 3900 3900 7855.82 872.868 0.00 0.00105353 0.000965238 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml multiconnected_lut2.blif common 0.40 vpr 60.80 MiB -1 -1 -1 -1 2 0.03 -1 -1 31272 -1 -1 1 5 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 62260 5 1 7 8 0 7 7 3 3 9 -1 auto 22.5 MiB 0.00 20 20 18 13 0 5 60.8 MiB 0.00 0.00 0.70303 0.70303 -0.70303 -0.70303 nan 0.00 1.3014e-05 9.636e-06 9.8067e-05 7.8745e-05 -1 -1 -1 -1 -1 11 12 3900 3900 7855.82 872.868 0.00 0.00117211 0.00105469 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml and_latch.blif common 0.32 vpr 60.80 MiB -1 -1 -1 -1 1 0.02 -1 -1 29988 -1 -1 1 3 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 62260 3 1 5 6 1 4 5 3 3 9 -1 auto 22.5 MiB 0.00 9 9 12 9 0 3 60.8 MiB 0.00 0.00 0.274843 0.274843 -0.536407 -0.274843 0.274843 0.00 1.0936e-05 7.525e-06 8.3706e-05 6.3702e-05 -1 -1 -1 -1 -1 5 8 3900 3900 7855.82 872.868 0.00 0.0011052 0.00100775 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml false_path_mux.blif common 0.41 vpr 60.80 MiB -1 -1 -1 -1 1 0.03 -1 -1 31816 -1 -1 1 3 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 62264 4 1 4 6 0 4 6 3 3 9 -1 auto 22.2 MiB 0.00 12 12 15 11 0 4 60.8 MiB 0.00 0.00 0.443777 0.443777 -0.443777 -0.443777 nan 0.00 1.0318e-05 6.84e-06 7.4714e-05 5.4959e-05 -1 -1 -1 -1 -1 7 16 3900 3900 7855.82 872.868 0.00 0.00114292 0.00101594 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml mult_2x2.blif common 0.40 vpr 60.80 MiB -1 -1 -1 -1 1 0.03 -1 -1 31872 -1 -1 1 4 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 62264 4 4 8 12 0 8 9 3 3 9 -1 auto 22.5 MiB 0.00 25 25 27 23 0 4 60.8 MiB 0.00 0.00 0.443777 0.443777 -1.77511 -0.443777 nan 0.00 1.7936e-05 1.41e-05 0.000134733 0.000114066 -1 -1 -1 -1 -1 30 13 3900 3900 7855.82 872.868 0.00 0.00140331 0.00125307 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml mult_3x3.blif common 0.42 vpr 60.60 MiB -1 -1 -1 -1 3 0.04 -1 -1 32344 -1 -1 3 6 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 62056 6 6 28 34 0 28 15 5 5 25 clb auto 21.8 MiB 0.00 113 107 51 16 35 0 60.6 MiB 0.00 0.00 1.19848 1.19848 -5.43061 -1.19848 nan 0.00 4.9605e-05 4.359e-05 0.000391617 0.00036093 -1 -1 -1 -1 -1 190 16 23400 11700 33739.5 1349.58 0.01 0.00302204 0.00268104 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml mult_3x4.blif common 0.43 vpr 60.45 MiB -1 -1 -1 -1 4 0.04 -1 -1 32088 -1 -1 5 7 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 61904 7 8 39 47 0 39 20 5 5 25 clb auto 22.1 MiB 0.01 182 166 236 59 163 14 60.5 MiB 0.00 0.00 1.48602 1.46514 -7.47508 -1.46514 nan 0.00 6.7634e-05 5.9467e-05 0.000923947 0.000839342 -1 -1 -1 -1 -1 326 19 23400 19500 33739.5 1349.58 0.02 0.0046745 0.00410086 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml mult_4x4.blif common 0.47 vpr 60.96 MiB -1 -1 -1 -1 8 0.05 -1 -1 32092 -1 -1 6 8 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 62428 8 8 51 59 0 51 22 5 5 25 clb auto 22.5 MiB 0.01 241 211 352 90 254 8 61.0 MiB 0.00 0.00 2.56944 2.55689 -12.2592 -2.55689 nan 0.00 8.5471e-05 7.753e-05 0.00148029 0.00135617 -1 -1 -1 -1 -1 432 21 23400 23400 33739.5 1349.58 0.02 0.00641372 0.00564603 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml mult_5x5.blif common 0.54 vpr 61.32 MiB -1 -1 -1 -1 7 0.06 -1 -1 32828 -1 -1 11 10 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 62792 10 10 95 105 0 95 31 6 6 36 clb auto 22.2 MiB 0.01 521 440 511 77 404 30 61.3 MiB 0.01 0.00 2.69967 2.57044 -18.1695 -2.57044 nan 0.00 0.000150117 0.00013686 0.0022957 0.00211495 -1 -1 -1 -1 -1 938 24 165600 42900 61410.5 1705.85 0.05 0.010575 0.00932341 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml mult_5x6.blif common 0.56 vpr 61.28 MiB -1 -1 -1 -1 8 0.07 -1 -1 32924 -1 -1 11 11 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 62752 11 11 94 105 0 94 33 6 6 36 clb auto 22.2 MiB 0.01 523 447 709 77 581 51 61.3 MiB 0.01 0.00 2.83651 2.78731 -20.9698 -2.78731 nan 0.00 0.000145948 0.000133465 0.00280111 0.00257676 -1 -1 -1 -1 -1 978 22 165600 42900 61410.5 1705.85 0.05 0.0108181 0.0095662 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml rca_1bit.blif common 0.40 vpr 60.80 MiB -1 -1 -1 -1 1 0.03 -1 -1 31076 -1 -1 1 3 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 62264 3 2 5 7 0 5 6 3 3 9 -1 auto 22.5 MiB 0.00 15 15 15 11 0 4 60.8 MiB 0.00 0.00 0.443777 0.443777 -0.887553 -0.443777 nan 0.00 1.2426e-05 8.986e-06 0.000101661 8.0396e-05 -1 -1 -1 -1 -1 12 16 3900 3900 7855.82 872.868 0.00 0.00124405 0.00110619 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml rca_2bit.blif common 0.40 vpr 60.58 MiB -1 -1 -1 -1 2 0.03 -1 -1 31864 -1 -1 1 5 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 62036 5 3 9 12 0 9 9 3 3 9 -1 auto 22.1 MiB 0.00 26 26 27 24 0 3 60.6 MiB 0.00 0.00 0.70303 0.70303 -1.84984 -0.70303 nan 0.00 1.6846e-05 1.3184e-05 0.000128485 0.000107138 -1 -1 -1 -1 -1 19 17 3900 3900 7855.82 872.868 0.00 0.00145588 0.00128914 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml rca_3bit.blif common 0.38 vpr 61.18 MiB -1 -1 -1 -1 3 0.03 -1 -1 31860 -1 -1 1 7 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 62644 7 4 13 17 0 13 12 3 3 9 -1 auto 22.6 MiB 0.00 37 37 38 34 0 4 61.2 MiB 0.00 0.00 0.962283 0.962283 -3.07137 -0.962283 nan 0.00 2.2173e-05 1.8007e-05 0.000170305 0.000147797 -1 -1 -1 -1 -1 39 18 3900 3900 7855.82 872.868 0.00 0.00176748 0.00156548 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml rca_4bit.blif common 0.41 vpr 60.81 MiB -1 -1 -1 -1 4 0.04 -1 -1 31864 -1 -1 1 9 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 62268 9 5 17 22 0 17 15 3 3 9 -1 auto 22.2 MiB 0.00 48 48 51 43 0 8 60.8 MiB 0.00 0.00 1.22154 1.22154 -4.55216 -1.22154 nan 0.00 2.7739e-05 2.3216e-05 0.000212345 0.000188425 -1 -1 -1 -1 -1 65 18 3900 3900 7855.82 872.868 0.00 0.0020451 0.00180274 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml rca_5bit.blif common 0.40 vpr 60.60 MiB -1 -1 -1 -1 4 0.04 -1 -1 31480 -1 -1 2 11 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 62052 11 6 24 30 0 24 19 4 4 16 clb auto 21.9 MiB 0.00 96 81 219 61 139 19 60.6 MiB 0.00 0.00 1.37337 1.3375 -6.59285 -1.3375 nan 0.00 3.6283e-05 3.0702e-05 0.000516197 0.000448261 -1 -1 -1 -1 -1 131 14 7800 7800 17482.0 1092.63 0.01 0.00253984 0.00224901 -1 -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_strong/strong_power/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_power/config/golden_results.txt index def1a137d22..5a0e83cd6e5 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 ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time total_power routing_power_perc clock_power_perc tile_power_perc - k6_frac_N10_mem32K_40nm.xml ch_intrinsics.v common 4.05 vpr 68.39 MiB -1 -1 0.40 21908 3 0.11 -1 -1 37048 -1 54888 68 99 1 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 70028 99 130 344 474 1 227 298 12 12 144 clb auto 29.0 MiB 0.23 673 63978 19550 30341 14087 68.4 MiB 0.26 0.00 1.86472 -118.834 -1.86472 1.86472 0.28 0.000886976 0.000801272 0.0813306 0.0745016 -1 -1 -1 -1 38 1393 12 5.66058e+06 4.21279e+06 319130. 2216.18 0.68 0.238994 0.21577 12522 62564 -1 1106 10 397 647 21454 6807 1.90702 1.90702 -131.595 -1.90702 -1.20917 -0.320482 406292. 2821.48 0.03 0.05 0.11 -1 -1 0.03 0.0347348 0.0326652 0.01152 0.2117 0.0667 0.7216 - k6_frac_N10_mem32K_40nm.xml diffeq1.v common 11.51 vpr 71.63 MiB -1 -1 0.57 27156 15 0.44 -1 -1 38000 -1 56764 39 162 0 5 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 73348 162 96 1009 950 1 701 302 16 16 256 mult_36 auto 32.3 MiB 0.47 5553 86322 27524 51152 7646 71.6 MiB 0.85 0.01 20.9417 -1607.93 -20.9417 20.9417 0.48 0.003704 0.00340296 0.38455 0.354826 -1 -1 -1 -1 50 10993 26 1.21132e+07 4.08187e+06 780512. 3048.87 3.85 1.2672 1.17071 25484 153448 -1 9617 17 3054 6060 825747 253645 22.1678 22.1678 -1734.75 -22.1678 0 0 1.00276e+06 3917.05 0.06 0.43 0.25 -1 -1 0.06 0.181388 0.170418 0.007894 0.3513 0.0164 0.6323 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time total_power routing_power_perc clock_power_perc tile_power_perc +k6_frac_N10_mem32K_40nm.xml ch_intrinsics.v common 2.12 vpr 66.85 MiB -1 -1 0.23 18444 3 0.06 -1 -1 32728 -1 52608 68 99 1 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 68452 99 130 344 474 1 228 298 12 12 144 clb auto 27.4 MiB 0.10 1675 704 66963 20370 32791 13802 66.8 MiB 0.11 0.00 2.18241 1.84343 -121.838 -1.84343 1.84343 0.09 0.000588264 0.00055103 0.0412906 0.0386681 -1 -1 -1 -1 40 1447 16 5.66058e+06 4.21279e+06 333335. 2314.82 0.33 0.15889 0.145741 12666 64609 -1 1220 8 417 630 29292 10027 2.02932 2.02932 -139.109 -2.02932 -0.436676 -0.298787 419432. 2912.72 0.01 0.02 0.04 -1 -1 0.01 0.0158392 0.0149265 0.01097 0.2173 0.06774 0.7149 +k6_frac_N10_mem32K_40nm.xml diffeq1.v common 6.02 vpr 70.39 MiB -1 -1 0.31 23676 15 0.29 -1 -1 33804 -1 54344 39 162 0 5 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 72084 162 96 1009 950 1 701 302 16 16 256 mult_36 auto 30.5 MiB 0.18 9745 5422 92394 29404 54877 8113 70.4 MiB 0.35 0.00 23.0626 21.1445 -1627.16 -21.1445 21.1445 0.18 0.00152927 0.00141434 0.152545 0.142035 -1 -1 -1 -1 52 12275 40 1.21132e+07 4.08187e+06 805949. 3148.24 2.13 0.550493 0.509323 25992 162577 -1 9489 19 3386 7023 823162 268347 21.9567 21.9567 -1721.84 -21.9567 0 0 1.06067e+06 4143.25 0.03 0.18 0.10 -1 -1 0.03 0.0804895 0.0759977 0.008009 0.3554 0.01727 0.6273 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_route_only/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_route_only/config/golden_results.txt index 82620e51799..9639f26e4f5 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_route_only/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_route_only/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 ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_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 - k6_N10_mem32K_40nm.xml stereovision3.v common 1.71 vpr 65.87 MiB -1 -1 0.78 26896 5 0.18 -1 -1 36624 -1 -1 12 10 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 67448 10 2 181 183 1 35 24 6 6 36 clb auto 26.9 MiB 0.05 152 432 67 335 30 65.9 MiB 0.01 0.00 2.14835 -93.0339 -2.14835 2.14835 0.00 0.00039706 0.000346093 0.00713489 0.00637234 -1 -1 -1 -1 138 4.31250 57 1.78125 181 343 11634 2077 646728 646728 138825. 3856.24 15 3164 19284 -1 2.14648 2.14648 -94.9192 -2.14648 0 0 0.03 -1 -1 65.9 MiB 0.02 0.0245431 0.0219785 65.9 MiB -1 0.00 - k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision3.v common 1.90 vpr 68.91 MiB -1 -1 0.73 26796 4 0.18 -1 -1 36100 -1 -1 15 11 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 70560 11 2 303 283 2 78 28 7 7 49 clb auto 29.2 MiB 0.18 285 784 175 539 70 68.9 MiB 0.03 0.00 2.03811 -163.686 -2.03811 1.90043 0.00 0.000657098 0.000563918 0.0210266 0.0187872 -1 -1 -1 -1 313 4.34722 112 1.55556 114 177 3842 1019 1.07788e+06 808410 219490. 4479.39 6 5100 32136 -1 2.07112 1.86791 -165.31 -2.07112 0 0 0.05 -1 -1 68.9 MiB 0.03 0.0456598 0.0418503 68.9 MiB -1 0.01 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time 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 +k6_N10_mem32K_40nm.xml stereovision3.v common 1.15 vpr 64.27 MiB -1 -1 0.46 23432 5 0.10 -1 -1 32588 -1 -1 12 10 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65816 10 2 181 183 1 36 24 6 6 36 clb auto 25.1 MiB 0.02 196 160 398 88 284 26 64.3 MiB 0.01 0.00 2.24505 2.14835 -91.9072 -2.14835 2.14835 0.00 0.000230059 0.000208481 0.00401393 0.00371679 -1 -1 -1 -1 136 4.12121 61 1.84848 149 320 10235 1961 646728 646728 138825. 3856.24 17 3164 19284 -1 2.10277 2.10277 -91.6521 -2.10277 0 0 0.01 -1 -1 64.3 MiB 0.01 0.0145441 0.0130986 64.3 MiB -1 0.00 +k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision3.v common 1.26 vpr 67.26 MiB -1 -1 0.40 23072 4 0.10 -1 -1 32604 -1 -1 15 11 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 68872 11 2 303 283 2 85 28 7 7 49 clb auto 27.9 MiB 0.11 462 289 1204 263 848 93 67.3 MiB 0.02 0.00 2.20327 2.04719 -154.888 -2.04719 1.90466 0.00 0.000392594 0.000350448 0.0146209 0.0131383 -1 -1 -1 -1 314 3.97468 124 1.56962 130 211 4049 1168 1.07788e+06 808410 219490. 4479.39 6 5100 32136 -1 2.02047 1.86775 -152.224 -2.02047 0 0 0.02 -1 -1 67.3 MiB 0.01 0.0286825 0.0263238 67.3 MiB -1 0.00 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_route_reconverge/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_route_reconverge/config/golden_results.txt index b3939ae8bad..5f4f5529d11 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_route_reconverge/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_route_reconverge/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 total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - k6_frac_N10_frac_chain_depop50_mem32K_40nm.xml mkSMAdapter4B.v common 40.08 vpr 84.36 MiB -1 -1 7.36 54308 5 2.17 -1 -1 42700 -1 -1 153 193 5 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 86380 193 205 2718 2652 1 1312 556 20 20 400 memory auto 43.4 MiB 2.10 10543 233626 82676 126206 24744 84.4 MiB 2.58 0.04 4.85425 -2733.64 -4.85425 4.85425 0.83 0.0094896 0.008538 0.955143 0.814553 -1 -1 -1 -1 76 20844 34 2.07112e+07 1.09858e+07 2.02110e+06 5052.76 19.63 4.86995 4.26704 52074 423490 -1 18742 17 4982 13549 1088379 246430 5.27071 5.27071 -2903.22 -5.27071 -6.49744 -0.292146 2.51807e+06 6295.18 0.11 0.70 0.57 -1 -1 0.11 0.429237 0.387696 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +k6_frac_N10_frac_chain_depop50_mem32K_40nm.xml mkSMAdapter4B.v common 14.68 vpr 84.02 MiB -1 -1 3.34 52052 5 1.33 -1 -1 38940 -1 -1 152 193 5 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 86040 193 205 2718 2652 1 1315 555 20 20 400 memory auto 43.9 MiB 0.95 22187 10660 223995 81694 118286 24015 84.0 MiB 1.00 0.01 7.82756 5.10197 -2914.56 -5.10197 5.10197 0.30 0.00326192 0.00293721 0.360015 0.322066 -1 -1 -1 -1 76 20582 44 2.07112e+07 1.09319e+07 2.02110e+06 5052.76 5.14 1.27624 1.14447 52074 423490 -1 19292 17 5251 14325 1187541 264668 5.21056 5.21056 -3121.27 -5.21056 -9.98113 -0.359474 2.51807e+06 6295.18 0.07 0.32 0.24 -1 -1 0.07 0.190256 0.17845 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_router_init_timing/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_router_init_timing/config/golden_results.txt index b2a77a6f0e1..ecbe1740334 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_router_init_timing/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_router_init_timing/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 ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_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 - k6_N10_mem32K_40nm.xml ex5p.blif common_--router_initial_timing_all_critical 1.71 vpr 71.59 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 89 8 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 73312 8 63 748 811 0 455 160 14 14 196 clb auto 32.0 MiB 0.45 4992 14048 2664 10357 1027 71.6 MiB 0.29 0.01 4.19211 -186.67 -4.19211 nan 0.00 0.00333844 0.00278407 0.128199 0.109732 -1 -1 -1 -1 6642 14.5978 1787 3.92747 3214 12750 489499 77791 9.20055e+06 4.79657e+06 867065. 4423.80 16 18088 133656 -1 4.47188 nan -188.808 -4.47188 0 0 0.21 -1 -1 71.6 MiB 0.30 0.276888 0.244984 71.6 MiB -1 0.05 - k6_N10_mem32K_40nm.xml ex5p.blif common_--router_initial_timing_lookahead 1.81 vpr 71.54 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 89 8 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 73256 8 63 748 811 0 455 160 14 14 196 clb auto 31.9 MiB 0.47 4992 14048 2664 10357 1027 71.5 MiB 0.31 0.01 4.19211 -186.67 -4.19211 nan 0.00 0.00291779 0.00252096 0.133598 0.1169 -1 -1 -1 -1 6701 14.7275 1794 3.94286 3137 12291 459530 73860 9.20055e+06 4.79657e+06 867065. 4423.80 18 18088 133656 -1 4.41143 nan -186.654 -4.41143 0 0 0.20 -1 -1 71.5 MiB 0.31 0.289515 0.258703 71.5 MiB -1 0.06 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time 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 +k6_N10_mem32K_40nm.xml ex5p.blif common_--router_initial_timing_all_critical 0.93 vpr 69.93 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 90 8 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 71608 8 63 748 811 0 451 161 14 14 196 clb auto 30.9 MiB 0.23 7035 5048 13708 2494 10216 998 69.9 MiB 0.12 0.00 6.16893 4.25044 -184.802 -4.25044 nan 0.00 0.0012128 0.0010607 0.0506511 0.0454061 -1 -1 -1 -1 6826 15.1353 1836 4.07095 3768 15421 585680 92261 9.20055e+06 4.85046e+06 867065. 4423.80 21 18088 133656 -1 4.17836 nan -185.935 -4.17836 0 0 0.08 -1 -1 69.9 MiB 0.17 0.129356 0.117175 69.9 MiB -1 0.02 +k6_N10_mem32K_40nm.xml ex5p.blif common_--router_initial_timing_lookahead 0.89 vpr 69.33 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 90 8 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 70996 8 63 748 811 0 451 161 14 14 196 clb auto 30.3 MiB 0.22 7035 5048 13708 2494 10216 998 69.3 MiB 0.12 0.00 6.16893 4.25044 -184.802 -4.25044 nan 0.00 0.00121456 0.00105201 0.0492265 0.0440361 -1 -1 -1 -1 6906 15.3126 1853 4.10865 3897 16323 609528 97595 9.20055e+06 4.85046e+06 867065. 4423.80 21 18088 133656 -1 4.17947 nan -185.454 -4.17947 0 0 0.08 -1 -1 69.3 MiB 0.16 0.125412 0.113776 69.3 MiB -1 0.02 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_router_lookahead/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_router_lookahead/config/golden_results.txt index f0bed076f05..4f76e3d108b 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_router_lookahead/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_router_lookahead/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 ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_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 - k6_N10_mem32K_40nm.xml ex5p.blif common_--router_lookahead_classic 1.89 vpr 71.62 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 89 8 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 73344 8 63 748 811 0 455 160 14 14 196 clb auto 32.0 MiB 0.50 4993 17086 3593 12286 1207 71.6 MiB 0.32 0.01 3.65588 -160.421 -3.65588 nan 0.04 0.00302942 0.00252731 0.141328 0.121812 -1 -1 -1 -1 7077 15.5538 1900 4.17582 3821 15130 1125339 197021 9.20055e+06 4.79657e+06 701736. 3580.29 19 16332 105598 -1 4.24547 nan -186.357 -4.24547 0 0 0.15 -1 -1 71.6 MiB 0.43 0.306494 0.271472 -1 -1 -1 - k6_N10_mem32K_40nm.xml ex5p.blif common_--router_lookahead_map 1.75 vpr 71.46 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 89 8 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 73176 8 63 748 811 0 455 160 14 14 196 clb auto 32.0 MiB 0.38 4933 15350 2970 11325 1055 71.5 MiB 0.31 0.01 4.27873 -192.837 -4.27873 nan 0.00 0.00317678 0.00277359 0.137596 0.118868 -1 -1 -1 -1 7099 15.6022 1898 4.17143 3600 14045 536072 90036 9.20055e+06 4.79657e+06 701736. 3580.29 22 16332 105598 -1 4.46795 nan -200.148 -4.46795 0 0 0.16 -1 -1 71.5 MiB 0.37 0.319312 0.282053 71.5 MiB -1 0.04 - k6_N10_mem32K_40nm.xml ex5p.blif common_--router_lookahead_extended_map 3.41 vpr 71.41 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 89 8 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 73128 8 63 748 811 0 455 160 14 14 196 clb auto 31.8 MiB 0.50 5048 17520 3917 12196 1407 71.4 MiB 0.28 0.01 3.77945 -168.167 -3.77945 nan 0.06 0.00517556 0.0043803 0.123856 0.107999 -1 -1 -1 -1 7182 15.7846 1920 4.21978 4190 17148 1255046 221662 9.20055e+06 4.79657e+06 701736. 3580.29 29 16332 105598 -1 4.52207 nan -194.42 -4.52207 0 0 0.14 -1 -1 71.4 MiB 0.56 0.3503 0.312891 -1 -1 -1 - k6_N10_mem32K_40nm.xml ex5p.blif common_--router_lookahead_extended_map_--reorder_rr_graph_nodes_algorithm_random_shuffle 3.58 vpr 71.47 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 89 8 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 73184 8 63 748 811 0 455 160 14 14 196 clb auto 31.7 MiB 0.45 5048 17520 3917 12196 1407 71.5 MiB 0.35 0.01 3.77945 -168.167 -3.77945 nan 0.08 0.00283082 0.00243406 0.152931 0.13159 -1 -1 -1 -1 7182 15.7846 1920 4.21978 4190 17148 1255046 221662 9.20055e+06 4.79657e+06 701736. 3580.29 29 16332 105598 -1 4.52207 nan -194.42 -4.52207 0 0 0.10 -1 -1 71.5 MiB 0.60 0.372321 0.328664 -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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time 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 +k6_N10_mem32K_40nm.xml ex5p.blif common_--router_lookahead_classic 0.98 vpr 69.54 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 90 8 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 71212 8 63 748 811 0 451 161 14 14 196 clb auto 30.5 MiB 0.23 7019 5149 19389 4557 13188 1644 69.5 MiB 0.16 0.00 5.27085 3.74489 -168.03 -3.74489 nan 0.02 0.00125283 0.0010941 0.0674999 0.0604792 -1 -1 -1 -1 7151 15.8559 1918 4.25277 4270 17535 1282134 224677 9.20055e+06 4.85046e+06 701736. 3580.29 23 16332 105598 -1 4.37015 nan -196.64 -4.37015 0 0 0.06 -1 -1 69.5 MiB 0.22 0.147101 0.13314 -1 -1 -1 +k6_N10_mem32K_40nm.xml ex5p.blif common_--router_lookahead_map 0.92 vpr 69.36 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 90 8 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 71024 8 63 748 811 0 451 161 14 14 196 clb auto 29.9 MiB 0.24 7019 5029 15019 2779 11014 1226 69.4 MiB 0.13 0.00 5.64572 4.2713 -188.25 -4.2713 nan 0.00 0.00120263 0.00103977 0.0546017 0.0489804 -1 -1 -1 -1 7035 15.5987 1894 4.19956 3783 16134 598321 102284 9.20055e+06 4.85046e+06 701736. 3580.29 20 16332 105598 -1 4.48059 nan -193.333 -4.48059 0 0 0.06 -1 -1 69.4 MiB 0.16 0.131335 0.119172 69.4 MiB -1 0.02 +k6_N10_mem32K_40nm.xml ex5p.blif common_--router_lookahead_extended_map 1.67 vpr 69.18 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 90 8 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 70840 8 63 748 811 0 451 161 14 14 196 clb auto 30.1 MiB 0.23 7019 5066 19826 4740 13454 1632 69.2 MiB 0.16 0.00 5.43885 3.72182 -172.204 -3.72182 nan 0.03 0.00120109 0.00105045 0.0672362 0.0599274 -1 -1 -1 -1 7315 16.2195 1982 4.39468 4173 17201 1263136 226328 9.20055e+06 4.85046e+06 701736. 3580.29 22 16332 105598 -1 4.28324 nan -195.438 -4.28324 0 0 0.06 -1 -1 69.2 MiB 0.22 0.144275 0.130119 -1 -1 -1 +k6_N10_mem32K_40nm.xml ex5p.blif common_--router_lookahead_extended_map_--reorder_rr_graph_nodes_algorithm_random_shuffle 1.74 vpr 69.54 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 90 8 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 71212 8 63 748 811 0 451 161 14 14 196 clb auto 30.5 MiB 0.24 7019 5066 19826 4740 13454 1632 69.5 MiB 0.17 0.00 5.43885 3.72182 -172.204 -3.72182 nan 0.03 0.00118757 0.00104417 0.0682317 0.0610542 -1 -1 -1 -1 7315 16.2195 1982 4.39468 4173 17201 1263136 226328 9.20055e+06 4.85046e+06 701736. 3580.29 22 16332 105598 -1 4.28324 nan -195.438 -4.28324 0 0 0.06 -1 -1 69.5 MiB 0.22 0.149143 0.134994 -1 -1 -1 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_router_update_lb_delays/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_router_update_lb_delays/config/golden_results.txt index 2e384423539..96895dbdd9f 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_router_update_lb_delays/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_router_update_lb_delays/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 ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_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 - k6_N10_mem32K_40nm.xml ex5p.blif common_--router_update_lower_bound_delays_off 1.81 vpr 71.29 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 89 8 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 72996 8 63 748 811 0 455 160 14 14 196 clb auto 31.8 MiB 0.46 5066 14916 2828 10927 1161 71.3 MiB 0.27 0.01 4.20607 -183.516 -4.20607 nan 0.00 0.00329282 0.00274638 0.115858 0.0987687 -1 -1 -1 -1 6988 15.3582 1874 4.11868 3892 16491 596262 97679 9.20055e+06 4.79657e+06 787177. 4016.21 23 17112 118924 -1 4.23403 nan -187.789 -4.23403 0 0 0.17 -1 -1 71.3 MiB 0.40 0.297064 0.262289 71.3 MiB -1 0.03 - k6_N10_mem32K_40nm.xml ex5p.blif common_--router_update_lower_bound_delays_on 1.90 vpr 71.22 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 89 8 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 72932 8 63 748 811 0 455 160 14 14 196 clb auto 31.8 MiB 0.47 5066 14916 2828 10927 1161 71.2 MiB 0.34 0.01 4.20607 -183.516 -4.20607 nan 0.00 0.00295504 0.00249967 0.137157 0.115922 -1 -1 -1 -1 6949 15.2725 1858 4.08352 3794 15906 573229 94207 9.20055e+06 4.79657e+06 787177. 4016.21 23 17112 118924 -1 4.30087 nan -188.544 -4.30087 0 0 0.16 -1 -1 71.2 MiB 0.41 0.334676 0.294068 71.2 MiB -1 0.04 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time 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 +k6_N10_mem32K_40nm.xml ex5p.blif common_--router_update_lower_bound_delays_off 0.93 vpr 69.55 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 90 8 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 71216 8 63 748 811 0 451 161 14 14 196 clb auto 30.5 MiB 0.23 7035 5098 13271 2309 10001 961 69.5 MiB 0.12 0.00 6.18121 4.10809 -187.168 -4.10809 nan 0.00 0.00119761 0.00104527 0.0488071 0.0438389 -1 -1 -1 -1 7155 15.8647 1916 4.24834 4312 18456 674497 110334 9.20055e+06 4.85046e+06 787177. 4016.21 21 17112 118924 -1 4.03206 nan -187.889 -4.03206 0 0 0.07 -1 -1 69.5 MiB 0.17 0.127664 0.116164 69.5 MiB -1 0.02 +k6_N10_mem32K_40nm.xml ex5p.blif common_--router_update_lower_bound_delays_on 0.92 vpr 69.92 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 90 8 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 71600 8 63 748 811 0 451 161 14 14 196 clb auto 30.5 MiB 0.23 7035 5098 13271 2309 10001 961 69.9 MiB 0.12 0.00 6.18121 4.10809 -187.168 -4.10809 nan 0.00 0.00119935 0.00104077 0.0477462 0.0428434 -1 -1 -1 -1 7141 15.8337 1913 4.24168 4366 18775 685171 111801 9.20055e+06 4.85046e+06 787177. 4016.21 21 17112 118924 -1 4.03206 nan -187.889 -4.03206 0 0 0.07 -1 -1 69.9 MiB 0.18 0.127342 0.115562 69.9 MiB -1 0.02 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_routing_constraints/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_routing_constraints/config/golden_results.txt index dda3cef9fb9..30111b74667 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_routing_constraints/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_routing_constraints/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 ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time num_global_nets num_routed_nets - timing/k6_frac_N10_frac_chain_mem32K_htree0_40nm.xml verilog/multiclock_output_and_latch.v common_--target_utilization_0.01_--two_stage_clock_routing_-read_vpr_constraints_tasks/regression_tests/vtr_reg_strong/strong_routing_constraints/multi_clock_routing_constraints.xml_--clock_modeling_dedicated_network 2.94 vpr 67.28 MiB -1 -1 0.14 21160 1 0.06 -1 -1 35568 -1 -1 2 6 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 68892 6 1 16 17 2 10 9 17 17 289 -1 auto 28.8 MiB 0.03 30 162 45 109 8 67.3 MiB 0.00 0.00 1.4327 -4.13089 -1.4327 0.805 0.60 4.7388e-05 3.614e-05 0.00109694 0.000865862 -1 -1 -1 -1 20 95 2 1.34605e+07 107788 411619. 1424.29 0.37 0.00363015 0.00323679 24098 82050 -1 103 2 14 14 8045 3790 2.67718 0.805 -5.78255 -2.67718 -1.39285 -0.696976 535376. 1852.51 0.04 0.16 0.10 -1 -1 0.04 0.00205247 0.00194107 1 9 - timing/k6_frac_N10_frac_chain_mem32K_htree0_40nm.xml verilog/and_latch.v common_--target_utilization_0.01_--two_stage_clock_routing_-read_vpr_constraints_tasks/regression_tests/vtr_reg_strong/strong_routing_constraints/multi_clock_routing_constraints.xml_--clock_modeling_dedicated_network 1.71 vpr 67.09 MiB -1 -1 0.11 20776 1 0.02 -1 -1 33508 -1 -1 1 3 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 68696 3 1 5 6 1 4 5 13 13 169 -1 auto 28.7 MiB 0.01 35 12 3 8 1 67.1 MiB 0.00 0.00 1.12186 -1.54831 -1.12186 1.12186 0.29 2.6273e-05 2.0281e-05 0.000147698 0.000116195 -1 -1 -1 -1 20 62 1 6.63067e+06 53894 227243. 1344.63 0.21 0.00195838 0.00183532 13251 44387 -1 55 1 4 4 2060 1116 1.77078 1.77078 -1.77078 -1.77078 -0.365681 -0.365681 294987. 1745.49 0.02 0.09 0.06 -1 -1 0.02 0.00158307 0.00153637 0 4 - timing/k6_frac_N10_frac_chain_mem32K_htree0_routedCLK_40nm.xml verilog/multiclock_output_and_latch.v common_--target_utilization_0.01_--two_stage_clock_routing_-read_vpr_constraints_tasks/regression_tests/vtr_reg_strong/strong_routing_constraints/multi_clock_routing_constraints.xml_--clock_modeling_dedicated_network 2.80 vpr 67.12 MiB -1 -1 0.13 21160 1 0.05 -1 -1 35572 -1 -1 2 6 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 68728 6 1 16 17 2 10 9 17 17 289 -1 auto 28.7 MiB 0.01 30 162 45 109 8 67.1 MiB 0.00 0.00 1.43377 -4.13192 -1.43377 0.805 0.60 4.8373e-05 3.7154e-05 0.00108209 0.000859607 -1 -1 -1 -1 20 96 2 1.34605e+07 107788 424167. 1467.71 0.36 0.00311589 0.00272737 24098 84646 -1 93 2 14 14 7618 3614 2.36211 0.805 -5.14799 -2.36211 -1.39063 -0.695869 547923. 1895.93 0.04 0.17 0.12 -1 -1 0.04 0.00220953 0.00209751 1 9 - timing/k6_frac_N10_frac_chain_mem32K_htree0_routedCLK_40nm.xml verilog/and_latch.v common_--target_utilization_0.01_--two_stage_clock_routing_-read_vpr_constraints_tasks/regression_tests/vtr_reg_strong/strong_routing_constraints/multi_clock_routing_constraints.xml_--clock_modeling_dedicated_network 1.66 vpr 67.09 MiB -1 -1 0.12 20904 1 0.02 -1 -1 33532 -1 -1 1 3 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 68696 3 1 5 6 1 4 5 13 13 169 -1 auto 28.7 MiB 0.01 35 12 3 8 1 67.1 MiB 0.00 0.00 1.12186 -1.54831 -1.12186 1.12186 0.23 2.2312e-05 1.624e-05 0.000140559 0.000108632 -1 -1 -1 -1 20 58 1 6.63067e+06 53894 235789. 1395.20 0.22 0.00172037 0.00159801 13251 46155 -1 59 1 4 4 2248 1144 1.92085 1.92085 -1.92085 -1.92085 -0.365681 -0.365681 303533. 1796.05 0.02 0.10 0.07 -1 -1 0.02 0.00161749 0.00156481 0 4 - timing/k6_frac_N10_frac_chain_mem32K_htree0short_40nm.xml verilog/multiclock_output_and_latch.v common_--target_utilization_0.01_--two_stage_clock_routing_-read_vpr_constraints_tasks/regression_tests/vtr_reg_strong/strong_routing_constraints/multi_clock_routing_constraints.xml_--clock_modeling_dedicated_network 2.79 vpr 67.18 MiB -1 -1 0.14 20780 1 0.06 -1 -1 35568 -1 -1 2 6 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 68788 6 1 16 17 2 10 9 17 17 289 -1 auto 28.9 MiB 0.02 30 162 45 109 8 67.2 MiB 0.00 0.00 1.4327 -4.13089 -1.4327 0.805 0.52 4.3023e-05 3.3348e-05 0.0010817 0.000870707 -1 -1 -1 -1 20 573 2 1.34605e+07 107788 408865. 1414.76 0.27 0.00353152 0.00316566 24098 82150 -1 581 2 13 13 6290 3262 3.57936 0.805 -7.58692 -3.57936 -3.19721 -1.59916 532630. 1843.01 0.04 0.17 0.11 -1 -1 0.04 0.00234323 0.00223031 1 9 - timing/k6_frac_N10_frac_chain_mem32K_htree0short_40nm.xml verilog/and_latch.v common_--target_utilization_0.01_--two_stage_clock_routing_-read_vpr_constraints_tasks/regression_tests/vtr_reg_strong/strong_routing_constraints/multi_clock_routing_constraints.xml_--clock_modeling_dedicated_network 1.63 vpr 67.17 MiB -1 -1 0.08 21164 1 0.02 -1 -1 33664 -1 -1 1 3 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 68780 3 1 5 6 1 4 5 13 13 169 -1 auto 28.7 MiB 0.01 35 12 3 8 1 67.2 MiB 0.00 0.00 1.12186 -1.54831 -1.12186 1.12186 0.27 1.6733e-05 1.1353e-05 0.00024751 0.000102039 -1 -1 -1 -1 20 193 1 6.63067e+06 53894 225153. 1332.26 0.23 0.00204227 0.00181801 13251 44463 -1 186 1 4 4 914 327 2.39001 2.39001 -2.39001 -2.39001 -0.984912 -0.984912 292904. 1733.16 0.02 0.07 0.05 -1 -1 0.02 0.00162703 0.00157897 0 4 +arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time num_global_nets num_routed_nets +timing/k6_frac_N10_frac_chain_mem32K_htree0_40nm.xml verilog/multiclock_output_and_latch.v common_--target_utilization_0.01_--two_stage_clock_routing_-read_vpr_constraints_tasks/regression_tests/vtr_reg_strong/strong_routing_constraints/multi_clock_routing_constraints.xml_--clock_modeling_dedicated_network 1.46 vpr 65.00 MiB -1 -1 0.08 17308 1 0.04 -1 -1 31584 -1 -1 2 6 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66564 6 1 16 17 2 10 9 17 17 289 -1 auto 26.4 MiB 0.01 128 30 162 45 109 8 65.0 MiB 0.00 0.00 2.32203 1.4327 -4.13089 -1.4327 0.805 0.21 2.6931e-05 1.6557e-05 0.000584509 0.000451852 -1 -1 -1 -1 20 95 2 1.34605e+07 107788 411619. 1424.29 0.15 0.00187029 0.00164769 24098 82050 -1 103 2 14 14 8045 3790 2.67718 0.805 -5.78255 -2.67718 -1.39285 -0.696976 535376. 1852.51 0.02 0.07 0.04 -1 -1 0.02 0.00128046 0.00121058 1 9 +timing/k6_frac_N10_frac_chain_mem32K_htree0_40nm.xml verilog/and_latch.v common_--target_utilization_0.01_--two_stage_clock_routing_-read_vpr_constraints_tasks/regression_tests/vtr_reg_strong/strong_routing_constraints/multi_clock_routing_constraints.xml_--clock_modeling_dedicated_network 0.95 vpr 64.76 MiB -1 -1 0.07 17312 1 0.02 -1 -1 29984 -1 -1 1 3 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66316 3 1 5 6 1 4 5 13 13 169 -1 auto 26.5 MiB 0.00 38 25 12 5 6 1 64.8 MiB 0.00 0.00 1.12186 0.96686 -1.43992 -0.96686 0.96686 0.11 1.176e-05 7.373e-06 9.5504e-05 7.1942e-05 -1 -1 -1 -1 20 46 1 6.63067e+06 53894 227243. 1344.63 0.08 0.00102566 0.000948714 13251 44387 -1 49 1 4 4 2037 1117 1.60624 1.60624 -1.60624 -1.60624 -0.386566 -0.386566 294987. 1745.49 0.01 0.04 0.02 -1 -1 0.01 0.000916629 0.000875809 0 4 +timing/k6_frac_N10_frac_chain_mem32K_htree0_routedCLK_40nm.xml verilog/multiclock_output_and_latch.v common_--target_utilization_0.01_--two_stage_clock_routing_-read_vpr_constraints_tasks/regression_tests/vtr_reg_strong/strong_routing_constraints/multi_clock_routing_constraints.xml_--clock_modeling_dedicated_network 1.43 vpr 65.00 MiB -1 -1 0.08 17312 1 0.03 -1 -1 31592 -1 -1 2 6 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66556 6 1 16 17 2 10 9 17 17 289 -1 auto 26.4 MiB 0.01 128 30 162 45 109 8 65.0 MiB 0.00 0.00 2.32504 1.43377 -4.13192 -1.43377 0.805 0.21 2.2762e-05 1.6724e-05 0.000573962 0.000444673 -1 -1 -1 -1 20 96 2 1.34605e+07 107788 424167. 1467.71 0.15 0.00187733 0.00165636 24098 84646 -1 93 2 14 14 7618 3614 2.36211 0.805 -5.14799 -2.36211 -1.39063 -0.695869 547923. 1895.93 0.02 0.07 0.04 -1 -1 0.02 0.0012306 0.00116318 1 9 +timing/k6_frac_N10_frac_chain_mem32K_htree0_routedCLK_40nm.xml verilog/and_latch.v common_--target_utilization_0.01_--two_stage_clock_routing_-read_vpr_constraints_tasks/regression_tests/vtr_reg_strong/strong_routing_constraints/multi_clock_routing_constraints.xml_--clock_modeling_dedicated_network 0.98 vpr 64.72 MiB -1 -1 0.06 17312 1 0.02 -1 -1 29240 -1 -1 1 3 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66272 3 1 5 6 1 4 5 13 13 169 -1 auto 25.9 MiB 0.00 38 25 12 5 6 1 64.7 MiB 0.00 0.00 1.12186 0.96686 -1.43992 -0.96686 0.96686 0.11 2.7322e-05 6.969e-06 0.000108399 6.8796e-05 -1 -1 -1 -1 20 50 1 6.63067e+06 53894 235789. 1395.20 0.08 0.00104947 0.000960311 13251 46155 -1 48 1 4 4 2008 1087 1.59583 1.59583 -1.59583 -1.59583 -0.386566 -0.386566 303533. 1796.05 0.01 0.04 0.02 -1 -1 0.01 0.000933815 0.000894029 0 4 +timing/k6_frac_N10_frac_chain_mem32K_htree0short_40nm.xml verilog/multiclock_output_and_latch.v common_--target_utilization_0.01_--two_stage_clock_routing_-read_vpr_constraints_tasks/regression_tests/vtr_reg_strong/strong_routing_constraints/multi_clock_routing_constraints.xml_--clock_modeling_dedicated_network 1.43 vpr 65.00 MiB -1 -1 0.08 17308 1 0.03 -1 -1 31608 -1 -1 2 6 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66560 6 1 16 17 2 10 9 17 17 289 -1 auto 26.8 MiB 0.01 128 30 162 45 109 8 65.0 MiB 0.00 0.00 2.32203 1.4327 -4.13089 -1.4327 0.805 0.21 2.2521e-05 1.65e-05 0.000581369 0.000454157 -1 -1 -1 -1 20 573 2 1.34605e+07 107788 408865. 1414.76 0.14 0.00184821 0.00163011 24098 82150 -1 581 2 13 13 6290 3262 3.57936 0.805 -7.58692 -3.57936 -3.19721 -1.59916 532630. 1843.01 0.02 0.07 0.04 -1 -1 0.02 0.00119849 0.00113118 1 9 +timing/k6_frac_N10_frac_chain_mem32K_htree0short_40nm.xml verilog/and_latch.v common_--target_utilization_0.01_--two_stage_clock_routing_-read_vpr_constraints_tasks/regression_tests/vtr_reg_strong/strong_routing_constraints/multi_clock_routing_constraints.xml_--clock_modeling_dedicated_network 1.00 vpr 65.00 MiB -1 -1 0.07 17308 1 0.02 -1 -1 29972 -1 -1 1 3 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66560 3 1 5 6 1 4 5 13 13 169 -1 auto 26.8 MiB 0.00 38 25 12 5 6 1 65.0 MiB 0.00 0.00 1.12186 0.96686 -1.43992 -0.96686 0.96686 0.12 1.2422e-05 7.808e-06 9.6046e-05 7.2011e-05 -1 -1 -1 -1 20 177 1 6.63067e+06 53894 225153. 1332.26 0.08 0.00102812 0.000944896 13251 44463 -1 180 1 4 4 885 322 2.22548 2.22548 -2.22548 -2.22548 -1.0058 -1.0058 292904. 1733.16 0.01 0.04 0.02 -1 -1 0.01 0.000967633 0.00090832 0 4 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 5c6245f2fa3..3a7061254a7 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 total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - slicem.xml carry_chain.blif common 0.74 vpr 59.82 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 61260 1 -1 48 34 1 35 6 5 5 25 BLK_IG-SLICEM auto 21.1 MiB 0.24 70 15 4 10 1 59.8 MiB 0.00 0.00 0.532448 -5.19346 -0.532448 0.532448 0.00 0.000194851 0.000170942 0.00110293 0.00100939 -1 -1 -1 -1 27 263 12 133321 74067 -1 -1 0.15 0.0230545 0.019405 1284 5874 -1 260 8 79 79 17257 10064 1.64234 1.64234 -16.7917 -1.64234 0 0 -1 -1 0.00 0.01 0.01 -1 -1 0.00 0.0047943 0.00439499 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +slicem.xml carry_chain.blif common 0.56 vpr 58.41 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 59816 1 -1 48 34 1 35 6 5 5 25 BLK_IG-SLICEM auto 19.2 MiB 0.14 70 70 15 4 10 1 58.4 MiB 0.00 0.00 0.552322 0.523836 -5.19346 -0.523836 0.523836 0.00 6.9663e-05 6.2493e-05 0.000564407 0.000524739 -1 -1 -1 -1 27 337 26 133321 74067 -1 -1 0.09 0.0140806 0.0116706 1284 5874 -1 249 10 84 84 16544 9291 1.47622 1.47622 -16.7882 -1.47622 0 0 -1 -1 0.00 0.02 0.00 -1 -1 0.00 0.0056494 0.00499524 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_routing_modes/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_routing_modes/config/golden_results.txt index bcdd78ccdb6..05b6fd95464 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_routing_modes/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_routing_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 total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - arch.xml ndff.blif common 0.33 vpr 58.84 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 4 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 60252 4 4 10 14 1 10 11 4 4 16 ff_tile io_tile auto 20.2 MiB 0.00 31 59 13 43 3 58.8 MiB 0.00 0.00 0.247067 -2.25231 -0.247067 0.247067 0.00 3.7056e-05 2.9732e-05 0.000307367 0.000251846 -1 -1 -1 -1 3 28 27 59253.6 44440.2 -1 -1 0.01 0.00402393 0.00331535 160 440 -1 25 3 17 25 782 371 0.259819 0.259819 -2.4911 -0.259819 0 0 -1 -1 0.00 0.00 0.00 -1 -1 0.00 0.00212051 0.00200433 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +arch.xml ndff.blif common 0.27 vpr 57.18 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 4 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 58548 4 4 10 14 1 10 11 4 4 16 ff_tile io_tile auto 18.3 MiB 0.00 36 31 59 13 43 3 57.2 MiB 0.00 0.00 0.247067 0.247067 -2.25231 -0.247067 0.247067 0.00 1.8658e-05 1.4445e-05 0.000175579 0.000141999 -1 -1 -1 -1 3 28 27 59253.6 44440.2 -1 -1 0.01 0.00231473 0.00196653 160 440 -1 25 3 17 25 782 371 0.259819 0.259819 -2.4911 -0.259819 0 0 -1 -1 0.00 0.00 0.00 -1 -1 0.00 0.00104772 0.000979247 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_scale_delay_budgets/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_scale_delay_budgets/config/golden_results.txt index 07d413f9696..95dfec9c5ad 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_scale_delay_budgets/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_scale_delay_budgets/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 total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time 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 - k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision3.v common 1.89 vpr 69.17 MiB -1 -1 0.74 26544 4 0.19 -1 -1 36136 -1 -1 15 11 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 70832 11 2 303 283 2 81 28 7 7 49 clb auto 29.7 MiB 0.19 337 112 35 48 29 69.2 MiB 0.02 0.00 4.0728 0 0 3.92737 0.00 0.000817884 0.000697618 0.00655739 0.00606976 -1 -1 -1 -1 398 5.30667 131 1.74667 104 164 3400 907 1.07788e+06 808410 219490. 4479.39 3 5100 32136 -1 4.15796 4.01977 0 0 -197.842 -1.707 0.05 -1 -1 69.2 MiB 0.01 0.0209255 0.0197757 69.2 MiB -1 0.01 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time 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 +k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision3.v common 1.24 vpr 66.91 MiB -1 -1 0.41 23076 4 0.10 -1 -1 32604 -1 -1 15 11 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 68520 11 2 303 283 2 82 28 7 7 49 clb auto 27.1 MiB 0.11 424 278 994 204 585 205 66.9 MiB 0.02 0.00 4.1851 4.05951 0 0 3.91314 0.00 0.000352617 0.000321562 0.011537 0.010684 -1 -1 -1 -1 320 4.21053 119 1.56579 117 192 3627 1005 1.07788e+06 808410 219490. 4479.39 5 5100 32136 -1 4.18749 3.93845 0 0 -197.86 -1.707 0.02 -1 -1 66.9 MiB 0.01 0.0238196 0.022287 66.9 MiB -1 0.00 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_sdc/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_sdc/config/golden_results.txt index 4625b2401ff..3d8cc9cc7a1 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_sdc/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_sdc/config/golden_results.txt @@ -1,7 +1,7 @@ - arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - k6_N10_mem32K_40nm.xml multiclock.blif common_-sdc_file_sdc/samples/A.sdc 0.45 vpr 65.16 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 5 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 66728 5 3 11 14 2 9 10 4 4 16 clb auto 26.9 MiB 0.01 21 30 5 21 4 65.2 MiB 0.00 0.00 0.814658 -2.77132 -0.814658 0.571 0.03 3.7635e-05 2.9892e-05 0.000225074 0.00018278 -1 -1 -1 -1 8 19 2 107788 107788 4794.78 299.674 0.02 0.00833787 0.0081741 564 862 -1 18 4 13 13 306 148 0.739641 0.571 -2.62128 -0.739641 0 0 5401.54 337.596 0.00 0.00 0.00 -1 -1 0.00 0.00218203 0.00181006 - k6_N10_mem32K_40nm.xml multiclock.blif common_-sdc_file_sdc/samples/B.sdc 0.44 vpr 65.25 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 5 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 66812 5 3 11 14 2 9 10 4 4 16 clb auto 26.9 MiB 0.01 22 30 6 14 10 65.2 MiB 0.00 0.00 0.571 0 0 0.571 0.01 3.1854e-05 2.4534e-05 0.000226572 0.000187065 -1 -1 -1 -1 8 30 5 107788 107788 4794.78 299.674 0.03 0.00709054 0.0068829 564 862 -1 22 5 17 17 362 153 0.571 0.571 0 0 0 0 5401.54 337.596 0.00 0.00 0.00 -1 -1 0.00 0.00198245 0.00170015 - k6_N10_mem32K_40nm.xml multiclock.blif common_-sdc_file_sdc/samples/C.sdc 0.39 vpr 65.27 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 5 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 66832 5 3 11 14 2 9 10 4 4 16 clb auto 26.9 MiB 0.01 21 30 5 22 3 65.3 MiB 0.00 0.00 0.646297 -2.19033 -0.646297 0.571 0.01 3.5201e-05 2.6601e-05 0.00022707 0.000179701 -1 -1 -1 -1 8 20 3 107788 107788 4794.78 299.674 0.01 0.00304545 0.00286146 564 862 -1 19 5 16 16 356 157 0.57241 0.571 -2.00713 -0.57241 0 0 5401.54 337.596 0.00 0.00 0.00 -1 -1 0.00 0.00175316 0.00162725 - k6_N10_mem32K_40nm.xml multiclock.blif common_-sdc_file_sdc/samples/D.sdc 0.41 vpr 65.38 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 5 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 66952 5 3 11 14 2 9 10 4 4 16 clb auto 27.0 MiB 0.01 21 30 7 16 7 65.4 MiB 0.00 0.00 1.6463 -5.31965 -1.6463 0.571 0.01 4.0901e-05 3.1228e-05 0.000248936 0.000196898 -1 -1 -1 -1 8 19 2 107788 107788 4794.78 299.674 0.01 0.00216389 0.0019624 564 862 -1 18 4 13 13 292 139 1.57153 0.571 -4.99677 -1.57153 0 0 5401.54 337.596 0.00 0.00 0.00 -1 -1 0.00 0.00684314 0.00669963 - k6_N10_mem32K_40nm.xml multiclock.blif common_-sdc_file_sdc/samples/E.sdc 0.43 vpr 65.31 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 5 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 66876 5 3 11 14 2 9 10 4 4 16 clb auto 27.0 MiB 0.01 22 30 8 15 7 65.3 MiB 0.00 0.00 1.44967 -2.9103 -1.44967 0.571 0.01 3.9504e-05 2.6238e-05 0.000255838 0.000203867 -1 -1 -1 -1 8 20 11 107788 107788 4794.78 299.674 0.01 0.00256208 0.00226692 564 862 -1 25 5 17 17 497 261 1.46961 0.571 -2.77989 -1.46961 0 0 5401.54 337.596 0.00 0.01 0.00 -1 -1 0.00 0.00410374 0.00385942 - k6_N10_mem32K_40nm.xml multiclock.blif common_-sdc_file_sdc/samples/F.sdc 0.30 vpr 65.07 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 5 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 66632 5 3 11 14 2 9 10 4 4 16 clb auto 26.7 MiB 0.00 21 30 5 23 2 65.1 MiB 0.00 0.00 0.146298 0 0 0.571 0.01 2.4424e-05 1.8925e-05 0.00016567 0.000135551 -1 -1 -1 -1 8 20 2 107788 107788 4794.78 299.674 0.00 0.00149783 0.00138533 564 862 -1 19 5 16 16 368 166 0.0724097 0.571 0 0 0 0 5401.54 337.596 0.00 0.00 0.00 -1 -1 0.00 0.00190216 0.00178073 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +k6_N10_mem32K_40nm.xml multiclock.blif common_-sdc_file_sdc/samples/A.sdc 0.32 vpr 63.50 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 5 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65020 5 3 11 14 2 9 10 4 4 16 clb auto 24.9 MiB 0.00 22 21 30 5 21 4 63.5 MiB 0.00 0.00 0.814658 0.814658 -2.77132 -0.814658 0.571 0.00 1.912e-05 1.4716e-05 0.000138868 0.000113336 -1 -1 -1 -1 8 19 2 107788 107788 4794.78 299.674 0.00 0.00122882 0.00112591 564 862 -1 18 4 13 13 306 148 0.739641 0.571 -2.62128 -0.739641 0 0 5401.54 337.596 0.00 0.00 0.00 -1 -1 0.00 0.00108963 0.00101167 +k6_N10_mem32K_40nm.xml multiclock.blif common_-sdc_file_sdc/samples/B.sdc 0.32 vpr 63.50 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 5 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65020 5 3 11 14 2 9 10 4 4 16 clb auto 25.2 MiB 0.00 22 22 30 6 14 10 63.5 MiB 0.00 0.00 0.571 0.571 0 0 0.571 0.00 1.8239e-05 1.4253e-05 0.000129443 0.000106202 -1 -1 -1 -1 8 30 5 107788 107788 4794.78 299.674 0.01 0.00121369 0.001109 564 862 -1 22 5 17 17 362 153 0.571 0.571 0 0 0 0 5401.54 337.596 0.00 0.00 0.00 -1 -1 0.00 0.00103908 0.000972534 +k6_N10_mem32K_40nm.xml multiclock.blif common_-sdc_file_sdc/samples/C.sdc 0.33 vpr 63.46 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 5 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 64980 5 3 11 14 2 9 10 4 4 16 clb auto 24.8 MiB 0.00 22 21 30 5 22 3 63.5 MiB 0.00 0.00 0.646297 0.646297 -2.19033 -0.646297 0.571 0.00 2.1582e-05 1.6466e-05 0.00015818 0.000130127 -1 -1 -1 -1 8 20 3 107788 107788 4794.78 299.674 0.00 0.00130867 0.00118702 564 862 -1 19 5 16 16 356 157 0.57241 0.571 -2.00713 -0.57241 0 0 5401.54 337.596 0.00 0.00 0.00 -1 -1 0.00 0.00114602 0.00105988 +k6_N10_mem32K_40nm.xml multiclock.blif common_-sdc_file_sdc/samples/D.sdc 0.32 vpr 63.50 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 5 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65024 5 3 11 14 2 9 10 4 4 16 clb auto 24.9 MiB 0.00 22 21 30 7 16 7 63.5 MiB 0.00 0.00 1.64604 1.6463 -5.31965 -1.6463 0.571 0.00 4.4605e-05 3.8769e-05 0.000176185 0.000144336 -1 -1 -1 -1 8 19 2 107788 107788 4794.78 299.674 0.00 0.0012431 0.00112184 564 862 -1 18 4 13 13 292 139 1.57153 0.571 -4.99677 -1.57153 0 0 5401.54 337.596 0.00 0.00 0.00 -1 -1 0.00 0.00115182 0.00106621 +k6_N10_mem32K_40nm.xml multiclock.blif common_-sdc_file_sdc/samples/E.sdc 0.33 vpr 63.50 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 5 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65024 5 3 11 14 2 9 10 4 4 16 clb auto 25.4 MiB 0.00 22 22 30 8 15 7 63.5 MiB 0.00 0.00 1.44967 1.44967 -2.9103 -1.44967 0.571 0.00 2.6664e-05 1.7569e-05 0.00016333 0.000129614 -1 -1 -1 -1 8 20 11 107788 107788 4794.78 299.674 0.01 0.00152422 0.00133207 564 862 -1 25 5 17 17 497 261 1.46961 0.571 -2.77989 -1.46961 0 0 5401.54 337.596 0.00 0.00 0.00 -1 -1 0.00 0.00118439 0.00108721 +k6_N10_mem32K_40nm.xml multiclock.blif common_-sdc_file_sdc/samples/F.sdc 0.32 vpr 63.60 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 5 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65128 5 3 11 14 2 9 10 4 4 16 clb auto 24.9 MiB 0.00 22 21 30 5 23 2 63.6 MiB 0.00 0.00 0.146298 0.146298 0 0 0.571 0.00 2.1111e-05 1.6553e-05 0.000146148 0.000120267 -1 -1 -1 -1 8 20 2 107788 107788 4794.78 299.674 0.00 0.0012502 0.00114398 564 862 -1 19 5 16 16 368 166 0.0724097 0.571 0 0 0 0 5401.54 337.596 0.00 0.00 0.00 -1 -1 0.00 0.00116517 0.00107026 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 3373ba9d87f..6e62fc65a75 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 ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time num_le num_luts num_add_blocks max_add_chain_length num_sub_blocks max_sub_chain_length - k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml mult_4x4.v common 1.57 vpr 66.20 MiB -1 -1 0.12 21572 1 0.03 -1 -1 33720 -1 -1 3 9 0 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 67792 9 8 75 70 1 34 20 5 5 25 clb auto 27.2 MiB 0.67 85 398 116 276 6 66.2 MiB 0.01 0.00 2.48207 -27.4234 -2.48207 2.48207 0.03 0.000168115 0.000148552 0.00382732 0.00348451 -1 -1 -1 -1 26 186 18 151211 75605.7 37105.9 1484.24 0.07 0.0274796 0.0239744 1908 5841 -1 144 14 104 128 3783 2136 2.42625 2.42625 -32.7566 -2.42625 0 0 45067.1 1802.68 0.00 0.01 0.01 -1 -1 0.00 0.00858616 0.00782966 13 18 -1 -1 -1 -1 - k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml mult_5x5.v common 2.85 vpr 66.12 MiB -1 -1 0.12 21064 1 0.03 -1 -1 33420 -1 -1 2 11 0 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 67704 11 10 108 97 1 49 23 4 4 16 clb auto 26.9 MiB 2.02 135 87 35 39 13 66.1 MiB 0.00 0.00 3.45122 -42.4992 -3.45122 3.45122 0.01 0.000185565 0.000169189 0.00161119 0.00153779 -1 -1 -1 -1 34 225 26 50403.8 50403.8 21558.4 1347.40 0.10 0.0502132 0.0405962 1020 3049 -1 158 14 151 165 4063 2532 3.88646 3.88646 -47.5118 -3.88646 0 0 26343.3 1646.46 0.00 0.01 0.00 -1 -1 0.00 0.00719488 0.00664889 15 27 -1 -1 -1 -1 - k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml mult_6x6.v common 6.48 vpr 66.58 MiB -1 -1 0.14 21316 1 0.03 -1 -1 33560 -1 -1 7 13 0 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 68180 13 12 149 129 1 68 32 6 6 36 clb auto 27.2 MiB 5.18 196 882 281 588 13 66.6 MiB 0.01 0.00 3.49758 -52.6333 -3.49758 3.49758 0.04 0.000188427 0.000167514 0.00680212 0.00627325 -1 -1 -1 -1 40 395 29 403230 176413 88484.8 2457.91 0.24 0.0901214 0.0785509 3734 16003 -1 328 14 283 356 13658 6213 3.44595 3.44595 -58.2463 -3.44595 0 0 110337. 3064.92 0.00 0.04 0.03 -1 -1 0.00 0.0323499 0.0245182 25 38 -1 -1 -1 -1 - k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml mult_7x7.v common 4.00 vpr 66.86 MiB -1 -1 0.14 21572 1 0.03 -1 -1 33512 -1 -1 7 15 0 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 68460 15 14 196 165 1 92 36 6 6 36 clb auto 27.2 MiB 2.65 304 744 159 567 18 66.9 MiB 0.02 0.00 3.62628 -64.4645 -3.62628 3.62628 0.05 0.000406252 0.000363743 0.00800716 0.00737412 -1 -1 -1 -1 52 651 42 403230 176413 110337. 3064.92 0.29 0.109536 0.0955888 4014 20275 -1 496 16 373 551 19804 8423 3.5903 3.5903 -70.6456 -3.5903 0 0 143382. 3982.83 0.00 0.03 0.03 -1 -1 0.00 0.0200523 0.0184119 37 51 -1 -1 -1 -1 - k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml mult_8x8.v common 8.34 vpr 67.21 MiB -1 -1 0.16 21320 1 0.03 -1 -1 33716 -1 -1 5 17 0 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 68824 17 16 251 206 1 119 38 5 5 25 clb auto 27.6 MiB 6.96 396 2495 611 1868 16 67.2 MiB 0.04 0.00 3.8369 -73.5721 -3.8369 3.8369 0.03 0.000487285 0.000432143 0.0227482 0.0204679 -1 -1 -1 -1 46 672 23 151211 126010 57775.2 2311.01 0.27 0.134818 0.118379 2220 9391 -1 565 21 712 1067 32893 15487 5.93712 5.93712 -106.904 -5.93712 0 0 73020.3 2920.81 0.00 0.04 0.01 -1 -1 0.00 0.0286301 0.0260985 44 66 -1 -1 -1 -1 - k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml mult_9x9.v common 7.49 vpr 67.34 MiB -1 -1 0.15 21572 1 0.03 -1 -1 33768 -1 -1 6 19 0 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 68960 19 18 308 249 1 133 43 5 5 25 clb auto 27.8 MiB 6.09 448 2143 525 1607 11 67.3 MiB 0.04 0.00 4.70186 -94.0493 -4.70186 4.70186 0.03 0.000586405 0.000522924 0.0211391 0.0191781 -1 -1 -1 -1 46 706 50 151211 151211 57775.2 2311.01 0.36 0.18155 0.16007 2220 9391 -1 599 18 697 1112 32896 15750 4.84188 4.84188 -104.71 -4.84188 0 0 73020.3 2920.81 0.00 0.04 0.01 -1 -1 0.00 0.0301574 0.0276463 53 83 -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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time num_le num_luts num_add_blocks max_add_chain_length num_sub_blocks max_sub_chain_length +k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml mult_4x4.v common 1.10 vpr 64.34 MiB -1 -1 0.07 17596 1 0.02 -1 -1 30128 -1 -1 3 9 0 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65888 9 8 75 70 1 34 20 5 5 25 clb auto 25.2 MiB 0.37 116 87 425 142 281 2 64.3 MiB 0.01 0.00 2.64007 2.48207 -26.067 -2.48207 2.48207 0.01 9.3228e-05 8.39e-05 0.0022793 0.00210862 -1 -1 -1 -1 26 268 23 151211 75605.7 37105.9 1484.24 0.04 0.015438 0.0132379 1908 5841 -1 135 7 69 74 2147 1228 2.87707 2.87707 -32.0609 -2.87707 0 0 45067.1 1802.68 0.00 0.01 0.00 -1 -1 0.00 0.00462719 0.00432137 13 18 -1 -1 -1 -1 +k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml mult_5x5.v common 2.34 vpr 64.48 MiB -1 -1 0.08 17592 1 0.02 -1 -1 30088 -1 -1 2 11 0 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66028 11 10 108 97 1 48 23 4 4 16 clb auto 25.6 MiB 1.57 142 127 279 85 156 38 64.5 MiB 0.00 0.00 3.45122 3.45122 -42.3331 -3.45122 3.45122 0.01 0.000120597 0.000109581 0.00222065 0.00210236 -1 -1 -1 -1 34 218 18 50403.8 50403.8 21558.4 1347.40 0.07 0.0281563 0.0239356 1020 3049 -1 142 9 139 176 4698 2930 3.29429 3.29429 -44.332 -3.29429 0 0 26343.3 1646.46 0.00 0.01 0.00 -1 -1 0.00 0.00541739 0.00503817 14 27 -1 -1 -1 -1 +k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml mult_6x6.v common 3.61 vpr 64.09 MiB -1 -1 0.08 17596 1 0.02 -1 -1 30140 -1 -1 7 13 0 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65632 13 12 149 129 1 68 32 6 6 36 clb auto 24.5 MiB 2.75 257 197 732 245 474 13 64.1 MiB 0.01 0.00 3.49758 3.49758 -52.6672 -3.49758 3.49758 0.02 0.000156374 0.000142533 0.00392726 0.00368989 -1 -1 -1 -1 48 388 31 403230 176413 104013. 2889.24 0.11 0.0414693 0.0356383 3910 18599 -1 284 17 330 478 14391 6422 3.69853 3.69853 -57.0037 -3.69853 0 0 131137. 3642.71 0.00 0.01 0.01 -1 -1 0.00 0.00915593 0.00833327 25 38 -1 -1 -1 -1 +k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml mult_7x7.v common 2.32 vpr 65.20 MiB -1 -1 0.08 17980 1 0.02 -1 -1 30160 -1 -1 6 15 0 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66768 15 14 196 165 1 93 35 5 5 25 clb auto 25.2 MiB 1.42 387 299 1118 289 798 31 65.2 MiB 0.01 0.00 3.70693 3.64998 -62.024 -3.64998 3.64998 0.01 0.000202129 0.0001848 0.00594995 0.00555165 -1 -1 -1 -1 38 642 42 151211 151211 48493.3 1939.73 0.14 0.0566763 0.0489294 2100 8065 -1 443 21 562 836 28073 13943 4.5307 4.5307 -77.3289 -4.5307 0 0 61632.8 2465.31 0.00 0.02 0.00 -1 -1 0.00 0.0127536 0.0115505 36 51 -1 -1 -1 -1 +k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml mult_8x8.v common 4.33 vpr 65.36 MiB -1 -1 0.09 17596 1 0.03 -1 -1 30128 -1 -1 5 17 0 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66932 17 16 251 206 1 120 38 5 5 25 clb auto 25.7 MiB 3.40 485 430 227 58 164 5 65.4 MiB 0.01 0.00 3.91442 3.88071 -76.4934 -3.88071 3.88071 0.01 0.000245396 0.000224553 0.00332248 0.00320063 -1 -1 -1 -1 46 639 28 151211 126010 57775.2 2311.01 0.15 0.061068 0.0527302 2220 9391 -1 566 15 540 892 27101 12502 4.50773 4.50773 -92.5696 -4.50773 0 0 73020.3 2920.81 0.00 0.02 0.01 -1 -1 0.00 0.0138066 0.0127692 45 66 -1 -1 -1 -1 +k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml mult_9x9.v common 4.46 vpr 65.57 MiB -1 -1 0.09 18360 1 0.03 -1 -1 30076 -1 -1 9 19 0 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 67144 19 18 308 249 1 134 46 6 6 36 clb auto 25.9 MiB 3.44 628 450 3408 877 2509 22 65.6 MiB 0.03 0.00 5.19392 4.85986 -99.9643 -4.85986 4.85986 0.02 0.000293829 0.000269579 0.0149755 0.0138941 -1 -1 -1 -1 56 839 22 403230 226817 117789. 3271.93 0.17 0.0794032 0.0696928 4086 21443 -1 597 17 428 696 24582 10181 4.89622 4.89622 -97.5059 -4.89622 0 0 149557. 4154.36 0.00 0.02 0.01 -1 -1 0.00 0.0165564 0.0152987 54 83 -1 -1 -1 -1 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_sub_tiles/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_sub_tiles/config/golden_results.txt index 900ba99d8f4..9e56ce66f42 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_sub_tiles/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_sub_tiles/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 total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - sub_tiles.xml sub_tiles.blif common 17.03 vpr 59.06 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 6 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 60480 6 7 19 26 0 19 26 3 3 9 -1 auto 20.6 MiB 0.00 51 216 43 63 110 59.1 MiB 0.00 0.00 3.682 -25.774 -3.682 nan 15.49 3.9173e-05 3.1698e-05 0.000338068 0.000271828 -1 -1 -1 -1 6 19 3 14813.4 192574 -1 -1 0.12 0.00193749 0.00171766 1370 14749 -1 19 3 36 39 5813 2852 3.87729 nan -27.141 -3.87729 0 0 -1 -1 0.00 0.00 0.06 -1 -1 0.00 0.00201882 0.00189534 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +sub_tiles.xml sub_tiles.blif common 4.41 vpr 57.16 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 6 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 58528 6 7 19 26 0 19 26 3 3 9 -1 auto 18.3 MiB 0.00 51 51 216 43 63 110 57.2 MiB 0.00 0.00 3.92819 3.682 -25.774 -3.682 nan 3.70 2.1988e-05 1.7826e-05 0.000208624 0.000166423 -1 -1 -1 -1 6 19 3 14813.4 192574 -1 -1 0.06 0.00147039 0.00133536 1370 14749 -1 19 3 36 39 5813 2852 3.87729 nan -27.141 -3.87729 0 0 -1 -1 0.00 0.00 0.02 -1 -1 0.00 0.00101656 0.000954631 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_sub_tiles_directs/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_sub_tiles_directs/config/golden_results.txt index 160cbfe1388..c6ae836957f 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_sub_tiles_directs/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_sub_tiles_directs/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 total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - heterogeneous_tile.xml sub_tile_directs.blif common 0.33 vpr 59.00 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 4 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 60416 2 2 4 5 0 4 5 3 3 9 -1 auto 20.7 MiB 0.00 8 12 0 0 12 59.0 MiB 0.00 0.00 1.899 -3.798 -1.899 nan 0.03 1.7245e-05 1.217e-05 9.686e-05 7.1239e-05 -1 -1 -1 -1 3 8 1 0 0 -1 -1 0.01 0.0017081 0.00158045 132 326 -1 8 1 4 4 200 164 2.09013 nan -4.05732 -2.09013 0 0 -1 -1 0.00 0.00 0.00 -1 -1 0.00 0.00139703 0.00135574 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +heterogeneous_tile.xml sub_tile_directs.blif common 0.27 vpr 56.70 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 4 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 58056 2 2 4 5 0 4 5 3 3 9 -1 auto 18.3 MiB 0.00 8 8 12 0 0 12 56.7 MiB 0.00 0.00 1.899 1.899 -3.798 -1.899 nan 0.01 9.727e-06 6.488e-06 6.998e-05 5.1168e-05 -1 -1 -1 -1 3 8 1 0 0 -1 -1 0.00 0.00122818 0.00113256 132 326 -1 8 1 4 4 200 164 2.09013 nan -4.05732 -2.09013 0 0 -1 -1 0.00 0.00 0.00 -1 -1 0.00 0.000846926 0.000812399 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_sweep_constant_outputs/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_sweep_constant_outputs/config/golden_results.txt index 6303f27bd50..da0293d8273 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_sweep_constant_outputs/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_sweep_constant_outputs/config/golden_results.txt @@ -1,2 +1,2 @@ - arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - k6_N10_mem32K_40nm.xml ch_intrinsics.v common 1.72 vpr 66.86 MiB -1 -1 0.36 22284 3 0.10 -1 -1 36712 -1 -1 19 99 1 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 68460 99 73 292 365 1 173 192 8 8 64 io memory auto 27.1 MiB 0.06 704 10699 1176 8237 1286 66.9 MiB 0.06 0.00 2.09255 -114.438 -2.09255 2.09255 0.09 0.000494971 0.000445037 0.0176268 0.0158319 -1 -1 -1 -1 32 1440 34 2.23746e+06 1.57199e+06 106908. 1670.44 0.32 0.14258 0.127902 4378 18911 -1 1142 12 555 876 46439 15775 1.9226 1.9226 -129.963 -1.9226 -0.449924 -0.248875 130676. 2041.82 0.01 0.04 0.02 -1 -1 0.01 0.0280032 0.0259551 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +k6_N10_mem32K_40nm.xml ch_intrinsics.v common 1.13 vpr 65.30 MiB -1 -1 0.22 18440 3 0.06 -1 -1 32716 -1 -1 20 99 1 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66864 99 73 292 365 1 172 193 8 8 64 io memory auto 25.6 MiB 0.04 1172 675 12447 1623 9101 1723 65.3 MiB 0.03 0.00 1.95866 1.82604 -115.206 -1.82604 1.82604 0.04 0.000448857 0.000413203 0.0118962 0.0110762 -1 -1 -1 -1 32 1268 15 2.23746e+06 1.62588e+06 106908. 1670.44 0.13 0.0638055 0.0575788 4378 18911 -1 1059 9 499 808 37153 12810 1.99391 1.99391 -128.303 -1.99391 -0.246226 -0.119866 130676. 2041.82 0.00 0.02 0.01 -1 -1 0.00 0.0126544 0.0117786 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_target_pin_util/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_target_pin_util/config/golden_results.txt index 9a4d84cf163..4c74c74dc2a 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_target_pin_util/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_target_pin_util/config/golden_results.txt @@ -1,14 +1,14 @@ - arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - EArch.xml styr.blif common_--target_ext_pin_util_1 1.36 vpr 68.55 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 11 10 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 70192 10 10 168 178 1 73 31 6 6 36 clb auto 28.9 MiB 0.18 399 703 140 536 27 68.5 MiB 0.02 0.00 2.34639 -26.9899 -2.34639 2.34639 0.04 0.000585274 0.000508741 0.0133922 0.0121686 -1 -1 -1 -1 30 794 18 646728 592834 55714.4 1547.62 0.49 0.183472 0.161021 2692 9921 -1 727 18 505 1726 58085 22424 2.63063 2.63063 -33.1038 -2.63063 0 0 68154.2 1893.17 0.00 0.05 0.01 -1 -1 0.00 0.0299915 0.0274705 - EArch.xml styr.blif common_--target_ext_pin_util_0.7 1.08 vpr 68.67 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 11 10 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 70320 10 10 168 178 1 73 31 6 6 36 clb auto 28.9 MiB 0.19 399 703 140 536 27 68.7 MiB 0.01 0.00 2.34639 -26.9899 -2.34639 2.34639 0.02 0.000329127 0.000280288 0.00811479 0.00735661 -1 -1 -1 -1 30 794 18 646728 592834 55714.4 1547.62 0.35 0.13039 0.113608 2692 9921 -1 727 18 505 1726 58085 22424 2.63063 2.63063 -33.1038 -2.63063 0 0 68154.2 1893.17 0.00 0.03 0.01 -1 -1 0.00 0.0216396 0.0198831 - EArch.xml styr.blif common_--target_ext_pin_util_0.1,0.5 3.83 vpr 69.07 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 91 10 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 70724 10 10 168 178 1 162 111 14 14 196 clb auto 29.5 MiB 0.87 1467 5165 686 4267 212 69.1 MiB 0.06 0.00 2.95542 -36.8348 -2.95542 2.95542 0.33 0.000607935 0.000523594 0.0180811 0.0161249 -1 -1 -1 -1 24 2876 16 9.20055e+06 4.90435e+06 355930. 1815.97 1.49 0.224715 0.196946 18592 71249 -1 2738 14 605 2492 132798 29734 3.39858 3.39858 -42.8555 -3.39858 0 0 449262. 2292.15 0.03 0.07 0.10 -1 -1 0.03 0.0292402 0.0269351 - EArch.xml styr.blif common_--target_ext_pin_util_0.5,0.3 0.85 vpr 68.33 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 13 10 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 69972 10 10 168 178 1 75 33 7 7 49 clb auto 28.8 MiB 0.15 414 605 98 486 21 68.3 MiB 0.01 0.00 2.40687 -27.3475 -2.40687 2.40687 0.04 0.000340986 0.000290037 0.00724905 0.00664099 -1 -1 -1 -1 26 1062 27 1.07788e+06 700622 75813.7 1547.22 0.16 0.0618811 0.0547109 3816 13734 -1 940 18 540 1691 67850 23781 2.86939 2.86939 -35.5441 -2.86939 0 0 91376.6 1864.83 0.00 0.03 0.01 -1 -1 0.00 0.0207833 0.0191052 - EArch.xml styr.blif common_--target_ext_pin_util_0.0 2.40 vpr 69.04 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 104 10 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 70700 10 10 168 178 1 163 124 14 14 196 clb auto 29.4 MiB 0.95 1526 7540 1144 6026 370 69.0 MiB 0.04 0.00 3.12689 -38.2571 -3.12689 3.12689 0.22 0.000345985 0.000292911 0.012717 0.0113191 -1 -1 -1 -1 20 3129 15 9.20055e+06 5.60498e+06 295730. 1508.82 0.21 0.0326189 0.0295477 18004 60473 -1 3052 13 680 3211 188673 40435 3.88935 3.88935 -46.4141 -3.88935 0 0 387483. 1976.95 0.03 0.08 0.08 -1 -1 0.03 0.0265139 0.024324 - EArch.xml styr.blif common_--target_ext_pin_util_clb_0.7 1.40 vpr 68.59 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 11 10 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 70232 10 10 168 178 1 73 31 6 6 36 clb auto 29.0 MiB 0.19 399 703 140 536 27 68.6 MiB 0.02 0.00 2.34639 -26.9899 -2.34639 2.34639 0.04 0.000587109 0.000509454 0.0135198 0.0122638 -1 -1 -1 -1 30 794 18 646728 592834 55714.4 1547.62 0.49 0.183086 0.160678 2692 9921 -1 727 18 505 1726 58085 22424 2.63063 2.63063 -33.1038 -2.63063 0 0 68154.2 1893.17 0.00 0.05 0.01 -1 -1 0.00 0.0347629 0.0319856 - EArch.xml styr.blif common_--target_ext_pin_util_clb_0.7_0.8 1.32 vpr 68.59 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 11 10 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 70240 10 10 168 178 1 73 31 6 6 36 clb auto 29.0 MiB 0.16 399 703 140 536 27 68.6 MiB 0.03 0.00 2.34639 -26.9899 -2.34639 2.34639 0.03 0.000756907 0.000658585 0.016978 0.0153763 -1 -1 -1 -1 30 794 18 646728 592834 55714.4 1547.62 0.44 0.169468 0.148387 2692 9921 -1 727 18 505 1726 58085 22424 2.63063 2.63063 -33.1038 -2.63063 0 0 68154.2 1893.17 0.00 0.05 0.01 -1 -1 0.00 0.03477 0.0320116 - EArch.xml styr.blif common_--target_ext_pin_util_clb_0.1_0.8 3.38 vpr 68.85 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 91 10 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 70504 10 10 168 178 1 162 111 14 14 196 clb auto 29.2 MiB 0.88 1467 5165 686 4267 212 68.9 MiB 0.04 0.00 2.95542 -36.8348 -2.95542 2.95542 0.28 0.000322881 0.000275771 0.0115436 0.0102519 -1 -1 -1 -1 24 2876 16 9.20055e+06 4.90435e+06 355930. 1815.97 1.09 0.158857 0.137775 18592 71249 -1 2738 14 605 2492 132798 29734 3.39858 3.39858 -42.8555 -3.39858 0 0 449262. 2292.15 0.02 0.05 0.05 -1 -1 0.02 0.0172724 0.0158752 - EArch.xml styr.blif common_--target_ext_pin_util_io_0.1,0.1_clb_0.7_0.8,1.0 1.48 vpr 68.53 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 11 10 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 70176 10 10 168 178 1 73 31 6 6 36 clb auto 29.0 MiB 0.19 399 703 140 536 27 68.5 MiB 0.02 0.00 2.34639 -26.9899 -2.34639 2.34639 0.04 0.000502609 0.00043998 0.0125423 0.0114378 -1 -1 -1 -1 30 794 18 646728 592834 55714.4 1547.62 0.54 0.190745 0.166737 2692 9921 -1 727 18 505 1726 58085 22424 2.63063 2.63063 -33.1038 -2.63063 0 0 68154.2 1893.17 0.00 0.07 0.02 -1 -1 0.00 0.0474457 0.0433946 - EArch.xml styr.blif common_--target_ext_pin_util_-0.1 0.10 vpr 30.04 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 exited with return code 1 v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 30760 10 10 168 178 1 -1 -1 -1 -1 -1 -1 -1 28.9 MiB 0.00 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - EArch.xml styr.blif common_--target_ext_pin_util_1.1 0.10 vpr 29.91 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 exited with return code 1 v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 30632 10 10 168 178 1 -1 -1 -1 -1 -1 -1 -1 28.9 MiB 0.00 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - EArch.xml styr.blif common_--target_ext_pin_util_io_0.1,0.1_clb_0.7_0.8,1.0_1.0 0.09 vpr 30.41 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 exited with return code 1 v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 31144 10 10 168 178 1 -1 -1 -1 -1 -1 -1 -1 29.2 MiB 0.00 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - EArch.xml styr.blif common_--target_ext_pin_util_io_0.1,0.1_clb_0.7_0.8,1.0_clb_1.0 0.09 vpr 30.54 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 exited with return code 1 v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 31272 10 10 168 178 1 -1 -1 -1 -1 -1 -1 -1 29.0 MiB 0.00 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +EArch.xml styr.blif common_--target_ext_pin_util_1 0.71 vpr 66.36 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 12 10 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 67956 10 10 168 178 1 75 32 6 6 36 clb auto 26.7 MiB 0.11 467 424 582 89 470 23 66.4 MiB 0.01 0.00 2.35562 2.31651 -27.9526 -2.31651 2.31651 0.02 0.000313613 0.000281494 0.00679637 0.00633558 -1 -1 -1 -1 30 842 27 646728 646728 55714.4 1547.62 0.12 0.0534045 0.0470259 2692 9921 -1 714 17 501 1525 53444 20549 2.38855 2.38855 -30.6143 -2.38855 0 0 68154.2 1893.17 0.00 0.03 0.01 -1 -1 0.00 0.0179228 0.0165339 +EArch.xml styr.blif common_--target_ext_pin_util_0.7 0.72 vpr 66.83 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 12 10 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 68432 10 10 168 178 1 75 32 6 6 36 clb auto 27.1 MiB 0.11 467 424 582 89 470 23 66.8 MiB 0.01 0.00 2.35562 2.31651 -27.9526 -2.31651 2.31651 0.02 0.000305552 0.000274195 0.00713015 0.0066753 -1 -1 -1 -1 30 842 27 646728 646728 55714.4 1547.62 0.12 0.054037 0.0476882 2692 9921 -1 714 17 501 1525 53444 20549 2.38855 2.38855 -30.6143 -2.38855 0 0 68154.2 1893.17 0.00 0.03 0.01 -1 -1 0.00 0.0176859 0.0162969 +EArch.xml styr.blif common_--target_ext_pin_util_0.1,0.5 1.56 vpr 67.20 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 90 10 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 68816 10 10 168 178 1 162 110 14 14 196 clb auto 27.5 MiB 0.42 2218 1472 5633 779 4632 222 67.2 MiB 0.03 0.00 4.05086 3.03976 -37.3505 -3.03976 3.03976 0.15 0.00031345 0.000281685 0.00904718 0.00829193 -1 -1 -1 -1 26 2737 13 9.20055e+06 4.85046e+06 387483. 1976.95 0.27 0.0481118 0.0422936 18784 74779 -1 2724 12 481 1718 95989 21869 3.66555 3.66555 -44.1461 -3.66555 0 0 467681. 2386.13 0.01 0.03 0.04 -1 -1 0.01 0.0135904 0.0125798 +EArch.xml styr.blif common_--target_ext_pin_util_0.5,0.3 0.78 vpr 66.90 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 14 10 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 68504 10 10 168 178 1 73 34 7 7 49 clb auto 27.1 MiB 0.13 556 403 749 133 594 22 66.9 MiB 0.01 0.00 2.47538 2.3678 -27.2356 -2.3678 2.3678 0.02 0.000298629 0.000272401 0.00710384 0.00662899 -1 -1 -1 -1 28 1121 29 1.07788e+06 754516 79600.7 1624.51 0.14 0.0554737 0.0489437 3864 14328 -1 1032 22 640 2278 94416 33063 2.98849 2.98849 -34.8096 -2.98849 0 0 95067.4 1940.15 0.00 0.04 0.01 -1 -1 0.00 0.0199587 0.0182086 +EArch.xml styr.blif common_--target_ext_pin_util_0.0 1.42 vpr 66.88 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 104 10 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 68488 10 10 168 178 1 163 124 14 14 196 clb auto 27.5 MiB 0.44 2325 1534 6922 992 5667 263 66.9 MiB 0.03 0.00 4.16044 3.06133 -37.5377 -3.06133 3.06133 0.14 0.000311352 0.000274658 0.00930477 0.00849636 -1 -1 -1 -1 20 3156 16 9.20055e+06 5.60498e+06 295730. 1508.82 0.15 0.02425 0.0219885 18004 60473 -1 3023 14 646 2892 171027 37325 3.649 3.649 -45.9039 -3.649 0 0 387483. 1976.95 0.01 0.04 0.03 -1 -1 0.01 0.0134846 0.0122796 +EArch.xml styr.blif common_--target_ext_pin_util_clb_0.7 0.69 vpr 66.45 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 12 10 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 68048 10 10 168 178 1 75 32 6 6 36 clb auto 27.1 MiB 0.11 467 424 582 89 470 23 66.5 MiB 0.01 0.00 2.35562 2.31651 -27.9526 -2.31651 2.31651 0.02 0.000306309 0.000275002 0.00676603 0.00631847 -1 -1 -1 -1 30 842 27 646728 646728 55714.4 1547.62 0.12 0.0532485 0.0469451 2692 9921 -1 714 17 501 1525 53444 20549 2.38855 2.38855 -30.6143 -2.38855 0 0 68154.2 1893.17 0.00 0.03 0.01 -1 -1 0.00 0.0175558 0.0161696 +EArch.xml styr.blif common_--target_ext_pin_util_clb_0.7_0.8 0.73 vpr 66.82 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 12 10 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 68428 10 10 168 178 1 75 32 6 6 36 clb auto 27.1 MiB 0.11 467 424 582 89 470 23 66.8 MiB 0.01 0.00 2.35562 2.31651 -27.9526 -2.31651 2.31651 0.02 0.000307986 0.000276629 0.0070174 0.00655743 -1 -1 -1 -1 30 842 27 646728 646728 55714.4 1547.62 0.12 0.0545965 0.0481718 2692 9921 -1 714 17 501 1525 53444 20549 2.38855 2.38855 -30.6143 -2.38855 0 0 68154.2 1893.17 0.00 0.03 0.01 -1 -1 0.00 0.0179832 0.0165712 +EArch.xml styr.blif common_--target_ext_pin_util_clb_0.1_0.8 1.50 vpr 67.20 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 90 10 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 68808 10 10 168 178 1 162 110 14 14 196 clb auto 27.5 MiB 0.41 2218 1472 5633 779 4632 222 67.2 MiB 0.03 0.00 4.05086 3.03976 -37.3505 -3.03976 3.03976 0.14 0.000314699 0.000283874 0.00894991 0.00821764 -1 -1 -1 -1 26 2737 13 9.20055e+06 4.85046e+06 387483. 1976.95 0.26 0.0462803 0.0408134 18784 74779 -1 2724 12 481 1718 95989 21869 3.66555 3.66555 -44.1461 -3.66555 0 0 467681. 2386.13 0.02 0.03 0.04 -1 -1 0.02 0.0139896 0.0128573 +EArch.xml styr.blif common_--target_ext_pin_util_io_0.1,0.1_clb_0.7_0.8,1.0 0.71 vpr 66.23 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 12 10 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 67820 10 10 168 178 1 75 32 6 6 36 clb auto 26.9 MiB 0.11 467 424 582 89 470 23 66.2 MiB 0.01 0.00 2.35562 2.31651 -27.9526 -2.31651 2.31651 0.01 0.00030683 0.000275575 0.00684586 0.00639772 -1 -1 -1 -1 30 842 27 646728 646728 55714.4 1547.62 0.12 0.0539268 0.047514 2692 9921 -1 714 17 501 1525 53444 20549 2.38855 2.38855 -30.6143 -2.38855 0 0 68154.2 1893.17 0.00 0.03 0.01 -1 -1 0.00 0.017759 0.0163694 +EArch.xml styr.blif common_--target_ext_pin_util_-0.1 0.09 vpr 27.64 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 exited with return code 1 v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 28308 10 10 168 178 1 -1 -1 -1 -1 -1 -1 -1 26.5 MiB 0.00 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +EArch.xml styr.blif common_--target_ext_pin_util_1.1 0.09 vpr 28.26 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 exited with return code 1 v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 28940 10 10 168 178 1 -1 -1 -1 -1 -1 -1 -1 26.8 MiB 0.00 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +EArch.xml styr.blif common_--target_ext_pin_util_io_0.1,0.1_clb_0.7_0.8,1.0_1.0 0.08 vpr 27.88 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 exited with return code 1 v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 28552 10 10 168 178 1 -1 -1 -1 -1 -1 -1 -1 26.4 MiB 0.00 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +EArch.xml styr.blif common_--target_ext_pin_util_io_0.1,0.1_clb_0.7_0.8,1.0_clb_1.0 0.09 vpr 28.09 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 exited with return code 1 v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 28768 10 10 168 178 1 -1 -1 -1 -1 -1 -1 -1 26.6 MiB 0.00 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -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_strong/strong_tight_floorplan/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_tight_floorplan/config/golden_results.txt index b99a452bc00..d76b9e88079 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_tight_floorplan/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_tight_floorplan/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 total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - k6_frac_N10_40nm.xml bigkey.blif common_-read_vpr_constraints_tasks/regression_tests/vtr_reg_strong/strong_tight_floorplan/bigkey_tight.xml 8.05 vpr 75.07 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 150 229 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 76868 229 197 2152 2349 1 1013 576 16 16 256 io auto 35.4 MiB 3.87 8858 177806 51921 111135 14750 75.1 MiB 1.04 0.02 2.93018 -671.396 -2.93018 2.93018 0.00 0.00614227 0.00545306 0.382618 0.335662 -1 -1 -1 -1 -1 11350 10 1.05632e+07 8.0841e+06 4.24953e+06 16599.7 0.30 0.645332 0.579161 -1 -1 -1 -1 -1 -1 -1 -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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +k6_frac_N10_40nm.xml bigkey.blif common_-read_vpr_constraints_tasks/regression_tests/vtr_reg_strong/strong_tight_floorplan/bigkey_tight.xml 3.97 vpr 74.50 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 118 229 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 76288 229 197 2152 2349 1 1012 544 16 16 256 io auto 34.5 MiB 1.98 13816 8635 175845 51740 110676 13429 74.5 MiB 0.61 0.01 3.6187 2.93018 -676.548 -2.93018 2.93018 0.00 0.00279674 0.00248348 0.242611 0.219358 -1 -1 -1 -1 -1 11066 15 1.05632e+07 6.35949e+06 4.24953e+06 16599.7 0.17 0.383649 0.351659 -1 -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_strong/strong_timing/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_timing/config/golden_results.txt index 6fffcd3b3ab..996a275157f 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_timing/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_timing/config/golden_results.txt @@ -1,6 +1,6 @@ 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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time -k6_frac_N10_mem32K_40nm.xml ch_intrinsics.v common 1.73 vpr 66.23 MiB -1 -1 0.21 18848 3 0.07 -1 -1 33068 -1 -1 68 99 1 0 success c8266d389-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-58-generic x86_64 2025-05-01T21:51:43 betzgrp-wintermute /home/yanhang1/parallel-router/vtr-verilog-to-routing/vtr_flow/tasks 67824 99 130 344 474 1 227 298 12 12 144 clb auto 26.4 MiB 0.11 1695 684 72933 23047 34243 15643 66.2 MiB 0.13 0.00 1.98228 1.86362 -118.513 -1.86362 1.86362 0.10 0.000568632 0.000529819 0.0441667 0.0411462 -1 -1 -1 -1 38 1437 13 5.66058e+06 4.21279e+06 319130. 2216.18 0.33 0.158129 0.144291 12522 62564 -1 1141 11 437 710 29360 10219 1.94502 1.94502 -130.926 -1.94502 -0.717819 -0.29768 406292. 2821.48 0.01 0.03 0.04 -1 -1 0.01 0.0184928 0.0172512 -k6_frac_N10_mem32K_40nm.xml ch_intrinsics.v common_--router_algorithm_parallel_--num_workers_4 1.71 vpr 66.23 MiB -1 -1 0.22 18852 3 0.07 -1 -1 32740 -1 -1 68 99 1 0 success c8266d389-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-58-generic x86_64 2025-05-01T21:51:43 betzgrp-wintermute /home/yanhang1/parallel-router/vtr-verilog-to-routing/vtr_flow/tasks 67816 99 130 344 474 1 227 298 12 12 144 clb auto 26.8 MiB 0.11 1695 684 72933 23047 34243 15643 66.2 MiB 0.13 0.00 1.98228 1.86362 -118.513 -1.86362 1.86362 0.10 0.000612619 0.000577396 0.0464401 0.0430253 -1 -1 -1 -1 38 1420 13 5.66058e+06 4.21279e+06 319130. 2216.18 0.30 0.130527 0.117061 12522 62564 -1 1150 9 446 701 30426 10498 1.94502 1.94502 -131.108 -1.94502 -0.67939 -0.29768 406292. 2821.48 0.01 0.03 0.04 -1 -1 0.01 0.0159542 0.0144078 -k6_frac_N10_mem32K_40nm.xml ch_intrinsics.v common_--enable_parallel_connection_router_on_--astar_fac_0.0_--post_target_prune_fac_0.0_--post_target_prune_offset_0.0 1.84 vpr 66.23 MiB -1 -1 0.22 18176 3 0.07 -1 -1 33108 -1 -1 68 99 1 0 success c8266d389-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-58-generic x86_64 2025-05-01T21:51:43 betzgrp-wintermute /home/yanhang1/parallel-router/vtr-verilog-to-routing/vtr_flow/tasks 67820 99 130 344 474 1 227 298 12 12 144 clb auto 26.4 MiB 0.11 1695 684 72933 23047 34243 15643 66.2 MiB 0.13 0.00 1.98228 1.86362 -118.513 -1.86362 1.86362 0.10 0.000564449 0.000527167 0.0443768 0.0414183 -1 -1 -1 -1 38 1391 8 5.66058e+06 4.21279e+06 319130. 2216.18 0.38 0.152118 0.139015 12522 62564 -1 1128 9 408 669 127450 127450 1.94524 1.94524 -129.851 -1.94524 -1.0383 -0.320482 406292. 2821.48 0.01 0.04 0.04 -1 -1 0.01 0.0159569 0.0149713 -k6_frac_N10_mem32K_40nm.xml ch_intrinsics.v common_--enable_parallel_connection_router_on_--multi_queue_num_threads_2_--multi_queue_num_queues_4_--astar_fac_0.0_--post_target_prune_fac_0.0_--post_target_prune_offset_0.0 1.94 vpr 66.23 MiB -1 -1 0.22 18868 3 0.07 -1 -1 33116 -1 -1 68 99 1 0 success c8266d389-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-58-generic x86_64 2025-05-01T21:51:43 betzgrp-wintermute /home/yanhang1/parallel-router/vtr-verilog-to-routing/vtr_flow/tasks 67824 99 130 344 474 1 227 298 12 12 144 clb auto 26.8 MiB 0.11 1695 684 72933 23047 34243 15643 66.2 MiB 0.13 0.00 1.98228 1.86362 -118.513 -1.86362 1.86362 0.10 0.000582283 0.000543802 0.0455405 0.0424991 -1 -1 -1 -1 38 1391 8 5.66058e+06 4.21279e+06 319130. 2216.18 0.47 0.157265 0.143773 12522 62564 -1 1128 9 408 669 125250 125250 1.94524 1.94524 -129.851 -1.94524 -1.0383 -0.320482 406292. 2821.48 0.01 0.09 0.04 -1 -1 0.01 0.0167922 0.015747 -k6_frac_N10_mem32K_40nm.xml ch_intrinsics.v common_--enable_parallel_connection_router_on_--multi_queue_num_threads_2_--multi_queue_num_queues_8_--multi_queue_direct_draining_on_--astar_fac_0.0_--post_target_prune_fac_0.0_--post_target_prune_offset_0.0 1.89 vpr 66.23 MiB -1 -1 0.22 18848 3 0.07 -1 -1 33096 -1 -1 68 99 1 0 success c8266d389-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-58-generic x86_64 2025-05-01T21:51:43 betzgrp-wintermute /home/yanhang1/parallel-router/vtr-verilog-to-routing/vtr_flow/tasks 67820 99 130 344 474 1 227 298 12 12 144 clb auto 26.8 MiB 0.11 1695 684 72933 23047 34243 15643 66.2 MiB 0.14 0.00 1.98228 1.86362 -118.513 -1.86362 1.86362 0.10 0.000581227 0.000543053 0.0461546 0.0430967 -1 -1 -1 -1 38 1391 8 5.66058e+06 4.21279e+06 319130. 2216.18 0.44 0.161183 0.147677 12522 62564 -1 1128 9 408 669 126593 45250 1.94524 1.94524 -129.851 -1.94524 -1.0383 -0.320482 406292. 2821.48 0.01 0.07 0.04 -1 -1 0.01 0.0170636 0.0159891 +k6_frac_N10_mem32K_40nm.xml ch_intrinsics.v common 1.94 vpr 66.48 MiB -1 -1 0.22 18440 3 0.06 -1 -1 32732 -1 -1 68 99 1 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 68076 99 130 344 474 1 228 298 12 12 144 clb auto 26.8 MiB 0.10 1675 704 66963 20370 32791 13802 66.5 MiB 0.11 0.00 2.18241 1.84343 -121.838 -1.84343 1.84343 0.09 0.000562371 0.000525588 0.0406586 0.038039 -1 -1 -1 -1 40 1453 15 5.66058e+06 4.21279e+06 333335. 2314.82 0.58 0.162361 0.14854 12666 64609 -1 1222 11 442 668 30453 10334 2.02932 2.02932 -138.236 -2.02932 -0.424985 -0.298787 419432. 2912.72 0.01 0.03 0.04 -1 -1 0.01 0.0185134 0.0173313 +k6_frac_N10_mem32K_40nm.xml ch_intrinsics.v common_--router_algorithm_parallel_--num_workers_4 1.87 vpr 66.56 MiB -1 -1 0.22 18440 3 0.06 -1 -1 32732 -1 -1 68 99 1 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 68156 99 130 344 474 1 228 298 12 12 144 clb auto 26.7 MiB 0.10 1675 704 66963 20370 32791 13802 66.6 MiB 0.11 0.00 2.18241 1.84343 -121.838 -1.84343 1.84343 0.09 0.000558315 0.00052341 0.0411328 0.0379157 -1 -1 -1 -1 40 1452 13 5.66058e+06 4.21279e+06 333335. 2314.82 0.54 0.134079 0.119822 12666 64609 -1 1250 11 460 694 31414 10385 2.02932 2.02932 -140.547 -2.02932 -0.436676 -0.298787 419432. 2912.72 0.01 0.02 0.04 -1 -1 0.01 0.0157064 0.0140295 +k6_frac_N10_mem32K_40nm.xml ch_intrinsics.v common_--enable_parallel_connection_router_on_--astar_fac_0.0_--post_target_prune_fac_0.0_--post_target_prune_offset_0.0 2.16 vpr 66.34 MiB -1 -1 0.21 18828 3 0.06 -1 -1 32772 -1 -1 68 99 1 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 67932 99 130 344 474 1 228 298 12 12 144 clb auto 26.5 MiB 0.10 1675 704 66963 20370 32791 13802 66.3 MiB 0.11 0.00 2.18241 1.84343 -121.838 -1.84343 1.84343 0.10 0.000551715 0.000515 0.0404626 0.0378544 -1 -1 -1 -1 40 1412 11 5.66058e+06 4.21279e+06 333335. 2314.82 0.78 0.166185 0.152303 12666 64609 -1 1211 10 419 673 142013 142013 1.98169 1.98169 -135.576 -1.98169 -0.436676 -0.298787 419432. 2912.72 0.01 0.05 0.04 -1 -1 0.01 0.0176156 0.0165382 +k6_frac_N10_mem32K_40nm.xml ch_intrinsics.v common_--enable_parallel_connection_router_on_--multi_queue_num_threads_2_--multi_queue_num_queues_4_--astar_fac_0.0_--post_target_prune_fac_0.0_--post_target_prune_offset_0.0 2.23 vpr 66.57 MiB -1 -1 0.22 18444 3 0.06 -1 -1 32724 -1 -1 68 99 1 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 68168 99 130 344 474 1 228 298 12 12 144 clb auto 26.8 MiB 0.10 1675 704 66963 20370 32791 13802 66.6 MiB 0.11 0.00 2.18241 1.84343 -121.838 -1.84343 1.84343 0.09 0.000570894 0.000535109 0.0411409 0.0385856 -1 -1 -1 -1 40 1412 11 5.66058e+06 4.21279e+06 333335. 2314.82 0.84 0.161192 0.147867 12666 64609 -1 1211 10 419 673 140888 140888 1.98169 1.98169 -135.576 -1.98169 -0.436676 -0.298787 419432. 2912.72 0.01 0.10 0.04 -1 -1 0.01 0.0169308 0.0158811 +k6_frac_N10_mem32K_40nm.xml ch_intrinsics.v common_--enable_parallel_connection_router_on_--multi_queue_num_threads_2_--multi_queue_num_queues_8_--multi_queue_direct_draining_on_--astar_fac_0.0_--post_target_prune_fac_0.0_--post_target_prune_offset_0.0 2.12 vpr 66.28 MiB -1 -1 0.21 18444 3 0.06 -1 -1 32736 -1 -1 68 99 1 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 67868 99 130 344 474 1 228 298 12 12 144 clb auto 26.5 MiB 0.10 1675 704 66963 20370 32791 13802 66.3 MiB 0.11 0.00 2.18241 1.84343 -121.838 -1.84343 1.84343 0.09 0.000568987 0.000532832 0.0407334 0.0381626 -1 -1 -1 -1 40 1412 11 5.66058e+06 4.21279e+06 333335. 2314.82 0.77 0.160479 0.147022 12666 64609 -1 1211 10 419 673 141703 53908 1.98169 1.98169 -135.576 -1.98169 -0.436676 -0.298787 419432. 2912.72 0.01 0.05 0.04 -1 -1 0.01 0.0175063 0.0163964 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_timing_fail/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_timing_fail/config/golden_results.txt index 7b4fc76c6e6..d74871bcfe5 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_timing_fail/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_timing_fail/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 total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - k6_frac_N10_mem32K_40nm.xml ch_intrinsics.v common_-sdc_file_sdc/samples/impossible_pass_timing.sdc 3.55 vpr 67.97 MiB -1 -1 0.42 22420 3 0.14 -1 -1 36800 -1 -1 68 99 1 0 exited with return code 1 v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 69600 99 130 344 474 1 225 298 12 12 144 clb auto 28.5 MiB 0.19 695 57013 16754 28454 11805 68.0 MiB 0.25 0.00 1.84453 -73.0907 -1.84453 1.84453 0.29 0.000572985 0.000494317 0.0593261 0.049655 -1 -1 -1 -1 32 1551 10 5.66058e+06 4.21279e+06 281316. 1953.58 1.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +k6_frac_N10_mem32K_40nm.xml ch_intrinsics.v common_-sdc_file_sdc/samples/impossible_pass_timing.sdc 1.25 vpr 66.54 MiB -1 -1 0.21 18440 3 0.06 -1 -1 32720 -1 -1 68 99 1 0 exited with return code 1 v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 68140 99 130 344 474 1 224 298 12 12 144 clb auto 27.1 MiB 0.09 1590 710 59003 16103 31150 11750 66.5 MiB 0.09 0.00 2.39882 1.86362 -71.5534 -1.86362 1.86362 0.09 0.000538644 0.000497828 0.023206 0.0214651 -1 -1 -1 -1 30 1493 8 5.66058e+06 4.21279e+06 267238. 1855.82 0.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 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_timing_no_fail/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_timing_no_fail/config/golden_results.txt index 50b6703de2b..f151570289b 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_timing_no_fail/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_timing_no_fail/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 total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - k6_frac_N10_mem32K_40nm.xml ch_intrinsics.v common_-sdc_file_sdc/samples/easy_pass_timing.sdc 3.13 vpr 67.88 MiB -1 -1 0.41 22284 3 0.13 -1 -1 36924 -1 -1 68 99 1 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 69508 99 130 344 474 1 218 298 12 12 144 clb auto 28.4 MiB 0.23 632 70943 19608 36161 15174 67.9 MiB 0.23 0.00 2.24009 0 0 2.24009 0.25 0.000717536 0.00062496 0.0508972 0.0435443 -1 -1 -1 -1 32 1480 8 5.66058e+06 4.21279e+06 281316. 1953.58 0.55 0.227253 0.196073 11950 52952 -1 1327 7 304 419 24960 8371 2.42926 2.42926 0 0 0 0 345702. 2400.71 0.03 0.05 0.08 -1 -1 0.03 0.020098 0.0186968 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +k6_frac_N10_mem32K_40nm.xml ch_intrinsics.v common_-sdc_file_sdc/samples/easy_pass_timing.sdc 1.54 vpr 66.54 MiB -1 -1 0.22 18440 3 0.07 -1 -1 32712 -1 -1 68 99 1 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 68132 99 130 344 474 1 220 298 12 12 144 clb auto 26.8 MiB 0.08 1597 670 73928 20988 37298 15642 66.5 MiB 0.10 0.00 2.12094 1.86992 0 0 1.86992 0.09 0.00032505 0.000297593 0.0266159 0.0244779 -1 -1 -1 -1 32 1510 10 5.66058e+06 4.21279e+06 281316. 1953.58 0.24 0.114031 0.0985162 11950 52952 -1 1387 6 289 390 22972 7530 2.02363 2.02363 0 0 0 0 345702. 2400.71 0.01 0.01 0.03 -1 -1 0.01 0.00829442 0.00764588 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_timing_report_detail/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_timing_report_detail/config/golden_results.txt index a5bee947840..ece07b7e104 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_timing_report_detail/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_timing_report_detail/config/golden_results.txt @@ -1,4 +1,4 @@ - arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - k6_frac_N10_frac_chain_mem32K_40nm.xml multiclock.blif common_--timing_report_detail_netlist 0.50 vpr 67.05 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 5 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 68660 5 3 11 14 2 9 10 4 4 16 clb auto 28.8 MiB 0.01 21 30 9 19 2 67.1 MiB 0.00 0.00 0.620042 -3.41492 -0.620042 0.545 0.01 4.6443e-05 3.2529e-05 0.000274786 0.000214986 -1 -1 -1 -1 20 24 1 107788 107788 10441.3 652.579 0.01 0.00211509 0.0019009 750 1675 -1 23 1 7 7 146 95 0.563256 0.545 -3.71515 -0.563256 0 0 13752.8 859.551 0.00 0.00 0.00 -1 -1 0.00 0.0017763 0.00169895 - k6_frac_N10_frac_chain_mem32K_40nm.xml multiclock.blif common_--timing_report_detail_aggregated 0.49 vpr 67.07 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 5 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 68680 5 3 11 14 2 9 10 4 4 16 clb auto 28.8 MiB 0.01 21 30 9 19 2 67.1 MiB 0.00 0.00 0.620042 -3.41492 -0.620042 0.545 0.01 4.8016e-05 3.4218e-05 0.000283686 0.000224427 -1 -1 -1 -1 20 24 1 107788 107788 10441.3 652.579 0.01 0.0022472 0.00206472 750 1675 -1 23 1 7 7 146 95 0.563256 0.545 -3.71515 -0.563256 0 0 13752.8 859.551 0.00 0.00 0.00 -1 -1 0.00 0.00179634 0.00171755 - k6_frac_N10_frac_chain_mem32K_40nm.xml multiclock.blif common_--timing_report_detail_detailed 0.51 vpr 67.32 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 5 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 68932 5 3 11 14 2 9 10 4 4 16 clb auto 28.9 MiB 0.01 21 30 9 19 2 67.3 MiB 0.00 0.00 0.620042 -3.41492 -0.620042 0.545 0.01 6.2523e-05 4.6425e-05 0.000366128 0.000294026 -1 -1 -1 -1 20 24 1 107788 107788 10441.3 652.579 0.01 0.00236124 0.00216436 750 1675 -1 23 1 7 7 146 95 0.563256 0.545 -3.71515 -0.563256 0 0 13752.8 859.551 0.00 0.00 0.00 -1 -1 0.00 0.00189537 0.00181322 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +k6_frac_N10_frac_chain_mem32K_40nm.xml multiclock.blif common_--timing_report_detail_netlist 0.37 vpr 65.40 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 5 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66972 5 3 11 14 2 9 10 4 4 16 clb auto 27.1 MiB 0.00 24 21 30 9 19 2 65.4 MiB 0.00 0.00 0.713166 0.620042 -3.41492 -0.620042 0.545 0.00 2.365e-05 1.6268e-05 0.00017217 0.000137772 -1 -1 -1 -1 20 24 1 107788 107788 10441.3 652.579 0.01 0.00127205 0.00116262 750 1675 -1 23 1 7 7 146 95 0.563256 0.545 -3.71515 -0.563256 0 0 13752.8 859.551 0.00 0.00 0.00 -1 -1 0.00 0.00100347 0.000952445 +k6_frac_N10_frac_chain_mem32K_40nm.xml multiclock.blif common_--timing_report_detail_aggregated 0.38 vpr 64.76 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 5 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66312 5 3 11 14 2 9 10 4 4 16 clb auto 26.3 MiB 0.00 24 21 30 9 19 2 64.8 MiB 0.00 0.00 0.713166 0.620042 -3.41492 -0.620042 0.545 0.00 2.3226e-05 1.5977e-05 0.000162476 0.000128834 -1 -1 -1 -1 20 24 1 107788 107788 10441.3 652.579 0.01 0.0012484 0.00113683 750 1675 -1 23 1 7 7 146 95 0.563256 0.545 -3.71515 -0.563256 0 0 13752.8 859.551 0.00 0.00 0.00 -1 -1 0.00 0.00104939 0.000997318 +k6_frac_N10_frac_chain_mem32K_40nm.xml multiclock.blif common_--timing_report_detail_detailed 0.38 vpr 65.40 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 5 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66972 5 3 11 14 2 9 10 4 4 16 clb auto 26.8 MiB 0.00 24 21 30 9 19 2 65.4 MiB 0.00 0.00 0.713166 0.620042 -3.41492 -0.620042 0.545 0.00 2.3551e-05 1.6219e-05 0.000166445 0.000130951 -1 -1 -1 -1 20 24 1 107788 107788 10441.3 652.579 0.01 0.00125751 0.00114805 750 1675 -1 23 1 7 7 146 95 0.563256 0.545 -3.71515 -0.563256 0 0 13752.8 859.551 0.00 0.00 0.00 -1 -1 0.00 0.00103369 0.000982231 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_timing_update_diff/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_timing_update_diff/config/golden_results.txt index db634e1dc04..f5a70e45013 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_timing_update_diff/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_timing_update_diff/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 total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision3.v common 2.81 vpr 69.01 MiB -1 -1 0.66 26668 4 0.21 -1 -1 35972 -1 -1 15 11 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 70664 11 2 303 283 2 78 28 7 7 49 clb auto 29.4 MiB 0.25 285 784 175 539 70 69.0 MiB 0.04 0.00 2.03811 -163.686 -2.03811 1.90043 0.00 0.000759025 0.000652417 0.0254764 0.023241 -1 -1 -1 -1 -1 313 6 1.07788e+06 808410 219490. 4479.39 0.03 0.050656 0.046841 -1 -1 -1 -1 -1 -1 -1 -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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision3.v common 1.77 vpr 66.82 MiB -1 -1 0.40 23072 4 0.10 -1 -1 32592 -1 -1 15 11 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 68428 11 2 303 283 2 85 28 7 7 49 clb auto 27.2 MiB 0.11 462 289 1204 263 848 93 66.8 MiB 0.02 0.00 2.20327 2.04719 -154.888 -2.04719 1.90466 0.00 0.000386086 0.000344716 0.0143127 0.012902 -1 -1 -1 -1 -1 314 6 1.07788e+06 808410 219490. 4479.39 0.01 0.0280135 0.0257414 -1 -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_strong/strong_timing_update_type/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_timing_update_type/config/golden_results.txt index 77ef7d0e8b9..0e6c2e24870 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_timing_update_type/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_timing_update_type/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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time -k6_N10_mem32K_40nm.xml stereovision3.v common_--timing_update_type_auto 1.18 vpr 63.79 MiB -1 -1 0.41 23448 5 0.11 -1 -1 32820 -1 -1 12 10 0 0 success c8266d389-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-58-generic x86_64 2025-05-01T21:51:43 betzgrp-wintermute /home/yanhang1/parallel-router/vtr-verilog-to-routing/vtr_flow/tasks 65324 10 2 181 183 1 35 24 6 6 36 clb auto 24.5 MiB 0.04 198 153 432 69 336 27 63.8 MiB 0.01 0.00 2.2957 2.14835 -93.1844 -2.14835 2.14835 0.00 0.000235029 0.000214051 0.00424678 0.00391288 -1 -1 -1 -1 -1 141 15 646728 646728 138825. 3856.24 0.01 0.0155905 0.0141088 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -k6_N10_mem32K_40nm.xml stereovision3.v common_--timing_update_type_full 1.20 vpr 63.94 MiB -1 -1 0.50 23444 5 0.11 -1 -1 32820 -1 -1 12 10 0 0 success c8266d389-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-58-generic x86_64 2025-05-01T21:51:43 betzgrp-wintermute /home/yanhang1/parallel-router/vtr-verilog-to-routing/vtr_flow/tasks 65472 10 2 181 183 1 35 24 6 6 36 clb auto 24.9 MiB 0.03 198 153 432 69 336 27 63.9 MiB 0.01 0.00 2.2957 2.14835 -93.1844 -2.14835 2.14835 0.00 0.000230258 0.000209554 0.0042499 0.00390533 -1 -1 -1 -1 -1 141 15 646728 646728 138825. 3856.24 0.01 0.0141455 0.0127342 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -k6_N10_mem32K_40nm.xml stereovision3.v common_--timing_update_type_incremental 1.11 vpr 63.97 MiB -1 -1 0.42 23452 5 0.11 -1 -1 32820 -1 -1 12 10 0 0 success c8266d389-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-58-generic x86_64 2025-05-01T21:51:43 betzgrp-wintermute /home/yanhang1/parallel-router/vtr-verilog-to-routing/vtr_flow/tasks 65504 10 2 181 183 1 35 24 6 6 36 clb auto 24.9 MiB 0.03 198 153 432 69 336 27 64.0 MiB 0.01 0.00 2.2957 2.14835 -93.1844 -2.14835 2.14835 0.00 4.01e-06 1.071e-06 0.00158168 0.00142451 -1 -1 -1 -1 -1 141 15 646728 646728 138825. 3856.24 0.01 0.00723412 0.00548559 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -k6_N10_mem32K_40nm.xml stereovision3.v common_--timing_update_type_incremental_--quench_recompute_divider_999999999 1.13 vpr 63.97 MiB -1 -1 0.41 23448 5 0.11 -1 -1 32628 -1 -1 12 10 0 0 success c8266d389-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-58-generic x86_64 2025-05-01T21:51:43 betzgrp-wintermute /home/yanhang1/parallel-router/vtr-verilog-to-routing/vtr_flow/tasks 65504 10 2 181 183 1 35 24 6 6 36 clb auto 24.5 MiB 0.03 198 153 432 69 336 27 64.0 MiB 0.01 0.00 2.2957 2.14835 -93.1844 -2.14835 2.14835 0.00 0.000115071 2.5318e-05 0.00166514 0.00142585 -1 -1 -1 -1 -1 141 15 646728 646728 138825. 3856.24 0.01 0.00729191 0.00547656 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -k6_N10_mem32K_40nm.xml stereovision3.v common_--timing_update_type_incremental_--router_algorithm_parallel_--num_workers_4 1.11 vpr 63.98 MiB -1 -1 0.42 23452 5 0.11 -1 -1 32820 -1 -1 12 10 0 0 success c8266d389-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-58-generic x86_64 2025-05-01T21:51:43 betzgrp-wintermute /home/yanhang1/parallel-router/vtr-verilog-to-routing/vtr_flow/tasks 65512 10 2 181 183 1 35 24 6 6 36 clb auto 24.5 MiB 0.03 198 153 432 69 336 27 64.0 MiB 0.01 0.00 2.2957 2.14835 -93.1844 -2.14835 2.14835 0.00 9.591e-06 1.027e-06 0.00173563 0.0014501 -1 -1 -1 -1 -1 142 18 646728 646728 138825. 3856.24 0.01 0.00799653 0.00565668 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -k6_N10_mem32K_40nm.xml stereovision3.v common_--timing_update_type_full_--router_algorithm_parallel_--num_workers_4 1.16 vpr 63.95 MiB -1 -1 0.42 23452 5 0.12 -1 -1 32820 -1 -1 12 10 0 0 success c8266d389-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-58-generic x86_64 2025-05-01T21:51:43 betzgrp-wintermute /home/yanhang1/parallel-router/vtr-verilog-to-routing/vtr_flow/tasks 65484 10 2 181 183 1 35 24 6 6 36 clb auto 24.9 MiB 0.03 198 153 432 69 336 27 63.9 MiB 0.01 0.00 2.2957 2.14835 -93.1844 -2.14835 2.14835 0.00 0.00043462 0.000402413 0.00710114 0.00653478 -1 -1 -1 -1 -1 142 18 646728 646728 138825. 3856.24 0.02 0.0217234 0.019335 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -k6_N10_mem32K_40nm.xml stereovision3.v common_--timing_update_type_incremental_--enable_parallel_connection_router_on_--astar_fac_0.0_--post_target_prune_fac_0.0_--post_target_prune_offset_0.0 1.16 vpr 63.97 MiB -1 -1 0.42 23464 5 0.11 -1 -1 32820 -1 -1 12 10 0 0 success c8266d389-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-58-generic x86_64 2025-05-01T21:51:43 betzgrp-wintermute /home/yanhang1/parallel-router/vtr-verilog-to-routing/vtr_flow/tasks 65504 10 2 181 183 1 35 24 6 6 36 clb auto 24.5 MiB 0.03 198 153 432 69 336 27 64.0 MiB 0.01 0.00 2.2957 2.14835 -93.1844 -2.14835 2.14835 0.00 4.083e-06 1.137e-06 0.00158114 0.00142356 -1 -1 -1 -1 -1 145 17 646728 646728 138825. 3856.24 0.03 0.00778711 0.00588202 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -k6_N10_mem32K_40nm.xml stereovision3.v common_--timing_update_type_incremental_--enable_parallel_connection_router_on_--multi_queue_num_threads_2_--multi_queue_num_queues_4_--astar_fac_0.0_--post_target_prune_fac_0.0_--post_target_prune_offset_0.0 1.20 vpr 63.88 MiB -1 -1 0.42 23468 5 0.11 -1 -1 32824 -1 -1 12 10 0 0 success c8266d389-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-58-generic x86_64 2025-05-01T21:51:43 betzgrp-wintermute /home/yanhang1/parallel-router/vtr-verilog-to-routing/vtr_flow/tasks 65412 10 2 181 183 1 35 24 6 6 36 clb auto 24.5 MiB 0.03 198 153 432 69 336 27 63.9 MiB 0.01 0.00 2.2957 2.14835 -93.1844 -2.14835 2.14835 0.00 4.78e-06 1.407e-06 0.0017981 0.00159724 -1 -1 -1 -1 -1 145 17 646728 646728 138825. 3856.24 0.07 0.00815512 0.00618452 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -k6_N10_mem32K_40nm.xml stereovision3.v common_--timing_update_type_incremental_--enable_parallel_connection_router_on_--multi_queue_num_threads_2_--multi_queue_num_queues_8_--multi_queue_direct_draining_on_--astar_fac_0.0_--post_target_prune_fac_0.0_--post_target_prune_offset_0.0 1.18 vpr 63.99 MiB -1 -1 0.42 23468 5 0.11 -1 -1 32824 -1 -1 12 10 0 0 success c8266d389-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-58-generic x86_64 2025-05-01T21:51:43 betzgrp-wintermute /home/yanhang1/parallel-router/vtr-verilog-to-routing/vtr_flow/tasks 65528 10 2 181 183 1 35 24 6 6 36 clb auto 24.9 MiB 0.03 198 153 432 69 336 27 64.0 MiB 0.01 0.00 2.2957 2.14835 -93.1844 -2.14835 2.14835 0.00 4.165e-06 1.08e-06 0.00160201 0.00144669 -1 -1 -1 -1 -1 145 17 646728 646728 138825. 3856.24 0.05 0.00798852 0.00607253 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -k6_N10_mem32K_40nm.xml stereovision3.v common_--timing_update_type_full_--enable_parallel_connection_router_on_--astar_fac_0.0_--post_target_prune_fac_0.0_--post_target_prune_offset_0.0 1.15 vpr 63.94 MiB -1 -1 0.42 23464 5 0.11 -1 -1 32820 -1 -1 12 10 0 0 success c8266d389-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-58-generic x86_64 2025-05-01T21:51:43 betzgrp-wintermute /home/yanhang1/parallel-router/vtr-verilog-to-routing/vtr_flow/tasks 65472 10 2 181 183 1 35 24 6 6 36 clb auto 24.9 MiB 0.03 198 153 432 69 336 27 63.9 MiB 0.01 0.00 2.2957 2.14835 -93.1844 -2.14835 2.14835 0.00 0.000221105 0.000200581 0.00411028 0.00377693 -1 -1 -1 -1 -1 145 17 646728 646728 138825. 3856.24 0.03 0.0144868 0.0129751 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -k6_N10_mem32K_40nm.xml stereovision3.v common_--timing_update_type_full_--enable_parallel_connection_router_on_--multi_queue_num_threads_2_--multi_queue_num_queues_4_--astar_fac_0.0_--post_target_prune_fac_0.0_--post_target_prune_offset_0.0 1.20 vpr 63.53 MiB -1 -1 0.41 23464 5 0.11 -1 -1 32820 -1 -1 12 10 0 0 success c8266d389-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-58-generic x86_64 2025-05-01T21:51:43 betzgrp-wintermute /home/yanhang1/parallel-router/vtr-verilog-to-routing/vtr_flow/tasks 65056 10 2 181 183 1 35 24 6 6 36 clb auto 24.5 MiB 0.03 198 153 432 69 336 27 63.5 MiB 0.01 0.00 2.2957 2.14835 -93.1844 -2.14835 2.14835 0.00 0.000225457 0.000205137 0.00415833 0.0038325 -1 -1 -1 -1 -1 145 17 646728 646728 138825. 3856.24 0.07 0.0147425 0.0132082 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -k6_N10_mem32K_40nm.xml stereovision3.v common_--timing_update_type_full_--enable_parallel_connection_router_on_--multi_queue_num_threads_2_--multi_queue_num_queues_8_--multi_queue_direct_draining_on_--astar_fac_0.0_--post_target_prune_fac_0.0_--post_target_prune_offset_0.0 1.17 vpr 63.71 MiB -1 -1 0.42 23452 5 0.11 -1 -1 32816 -1 -1 12 10 0 0 success c8266d389-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-58-generic x86_64 2025-05-01T21:51:43 betzgrp-wintermute /home/yanhang1/parallel-router/vtr-verilog-to-routing/vtr_flow/tasks 65240 10 2 181 183 1 35 24 6 6 36 clb auto 24.3 MiB 0.03 198 153 432 69 336 27 63.7 MiB 0.01 0.00 2.2957 2.14835 -93.1844 -2.14835 2.14835 0.00 0.000227544 0.000206409 0.00424772 0.00391181 -1 -1 -1 -1 -1 145 17 646728 646728 138825. 3856.24 0.05 0.0147416 0.0132112 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6_N10_mem32K_40nm.xml stereovision3.v common_--timing_update_type_auto 1.09 vpr 64.27 MiB -1 -1 0.42 23428 5 0.11 -1 -1 32572 -1 -1 12 10 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65816 10 2 181 183 1 36 24 6 6 36 clb auto 24.9 MiB 0.02 196 160 398 88 284 26 64.3 MiB 0.01 0.00 2.24505 2.14835 -91.9072 -2.14835 2.14835 0.00 0.000222766 0.000201734 0.00389424 0.00360389 -1 -1 -1 -1 -1 136 17 646728 646728 138825. 3856.24 0.01 0.0142381 0.0128197 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6_N10_mem32K_40nm.xml stereovision3.v common_--timing_update_type_full 1.09 vpr 63.95 MiB -1 -1 0.41 23428 5 0.10 -1 -1 32576 -1 -1 12 10 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65484 10 2 181 183 1 36 24 6 6 36 clb auto 24.6 MiB 0.02 196 160 398 88 284 26 63.9 MiB 0.01 0.00 2.24505 2.14835 -91.9072 -2.14835 2.14835 0.00 0.000222779 0.000201937 0.00391759 0.00362401 -1 -1 -1 -1 -1 136 17 646728 646728 138825. 3856.24 0.01 0.0142174 0.0127941 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6_N10_mem32K_40nm.xml stereovision3.v common_--timing_update_type_incremental 1.11 vpr 64.30 MiB -1 -1 0.44 23428 5 0.10 -1 -1 32584 -1 -1 12 10 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65840 10 2 181 183 1 36 24 6 6 36 clb auto 24.8 MiB 0.02 196 160 398 88 284 26 64.3 MiB 0.01 0.00 2.24505 2.14835 -91.9072 -2.14835 2.14835 0.00 2.0708e-05 1.5231e-05 0.0014017 0.00127195 -1 -1 -1 -1 -1 136 17 646728 646728 138825. 3856.24 0.01 0.00714763 0.00535987 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6_N10_mem32K_40nm.xml stereovision3.v common_--timing_update_type_incremental_--quench_recompute_divider_999999999 1.08 vpr 63.74 MiB -1 -1 0.41 23416 5 0.10 -1 -1 32592 -1 -1 12 10 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65272 10 2 181 183 1 36 24 6 6 36 clb auto 24.7 MiB 0.02 196 160 398 88 284 26 63.7 MiB 0.01 0.00 2.24505 2.14835 -91.9072 -2.14835 2.14835 0.00 0.000128757 3.5271e-05 0.00160333 0.00138472 -1 -1 -1 -1 -1 136 17 646728 646728 138825. 3856.24 0.01 0.00746153 0.00560158 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6_N10_mem32K_40nm.xml stereovision3.v common_--timing_update_type_incremental_--router_algorithm_parallel_--num_workers_4 1.13 vpr 63.79 MiB -1 -1 0.41 23800 5 0.10 -1 -1 32580 -1 -1 12 10 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65316 10 2 181 183 1 36 24 6 6 36 clb auto 24.8 MiB 0.03 196 160 398 88 284 26 63.8 MiB 0.01 0.00 2.24505 2.14835 -91.9072 -2.14835 2.14835 0.00 4.2273e-05 3.0292e-05 0.00168368 0.0014329 -1 -1 -1 -1 -1 146 18 646728 646728 138825. 3856.24 0.01 0.00798524 0.00566268 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6_N10_mem32K_40nm.xml stereovision3.v common_--timing_update_type_full_--router_algorithm_parallel_--num_workers_4 1.10 vpr 64.06 MiB -1 -1 0.41 23416 5 0.10 -1 -1 32584 -1 -1 12 10 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65596 10 2 181 183 1 36 24 6 6 36 clb auto 24.6 MiB 0.02 196 160 398 88 284 26 64.1 MiB 0.01 0.00 2.24505 2.14835 -91.9072 -2.14835 2.14835 0.00 0.000395659 0.000368361 0.00601719 0.00558884 -1 -1 -1 -1 -1 146 18 646728 646728 138825. 3856.24 0.02 0.0192173 0.0172102 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6_N10_mem32K_40nm.xml stereovision3.v common_--timing_update_type_incremental_--enable_parallel_connection_router_on_--astar_fac_0.0_--post_target_prune_fac_0.0_--post_target_prune_offset_0.0 1.08 vpr 64.30 MiB -1 -1 0.40 23048 5 0.10 -1 -1 32596 -1 -1 12 10 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65844 10 2 181 183 1 36 24 6 6 36 clb auto 24.9 MiB 0.02 196 160 398 88 284 26 64.3 MiB 0.01 0.00 2.24505 2.14835 -91.9072 -2.14835 2.14835 0.00 2.0413e-05 1.4906e-05 0.00139428 0.00126275 -1 -1 -1 -1 -1 145 20 646728 646728 138825. 3856.24 0.03 0.00728859 0.00538349 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6_N10_mem32K_40nm.xml stereovision3.v common_--timing_update_type_incremental_--enable_parallel_connection_router_on_--multi_queue_num_threads_2_--multi_queue_num_queues_4_--astar_fac_0.0_--post_target_prune_fac_0.0_--post_target_prune_offset_0.0 1.15 vpr 64.30 MiB -1 -1 0.41 23428 5 0.10 -1 -1 32624 -1 -1 12 10 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65844 10 2 181 183 1 36 24 6 6 36 clb auto 24.9 MiB 0.02 196 160 398 88 284 26 64.3 MiB 0.01 0.00 2.24505 2.14835 -91.9072 -2.14835 2.14835 0.00 2.0732e-05 1.524e-05 0.00145249 0.00132501 -1 -1 -1 -1 -1 145 20 646728 646728 138825. 3856.24 0.08 0.00760196 0.00568525 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6_N10_mem32K_40nm.xml stereovision3.v common_--timing_update_type_incremental_--enable_parallel_connection_router_on_--multi_queue_num_threads_2_--multi_queue_num_queues_8_--multi_queue_direct_draining_on_--astar_fac_0.0_--post_target_prune_fac_0.0_--post_target_prune_offset_0.0 1.10 vpr 64.30 MiB -1 -1 0.42 23044 5 0.11 -1 -1 32596 -1 -1 12 10 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65848 10 2 181 183 1 36 24 6 6 36 clb auto 24.9 MiB 0.02 196 160 398 88 284 26 64.3 MiB 0.01 0.00 2.24505 2.14835 -91.9072 -2.14835 2.14835 0.00 2.1096e-05 1.5558e-05 0.00147388 0.00133793 -1 -1 -1 -1 -1 145 20 646728 646728 138825. 3856.24 0.05 0.0075207 0.00563955 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6_N10_mem32K_40nm.xml stereovision3.v common_--timing_update_type_full_--enable_parallel_connection_router_on_--astar_fac_0.0_--post_target_prune_fac_0.0_--post_target_prune_offset_0.0 1.14 vpr 64.30 MiB -1 -1 0.42 23044 5 0.11 -1 -1 32588 -1 -1 12 10 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65848 10 2 181 183 1 36 24 6 6 36 clb auto 24.9 MiB 0.02 196 160 398 88 284 26 64.3 MiB 0.01 0.00 2.24505 2.14835 -91.9072 -2.14835 2.14835 0.00 0.000221012 0.00020011 0.00389967 0.00361209 -1 -1 -1 -1 -1 145 20 646728 646728 138825. 3856.24 0.03 0.0153274 0.0137388 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6_N10_mem32K_40nm.xml stereovision3.v common_--timing_update_type_full_--enable_parallel_connection_router_on_--multi_queue_num_threads_2_--multi_queue_num_queues_4_--astar_fac_0.0_--post_target_prune_fac_0.0_--post_target_prune_offset_0.0 1.14 vpr 64.28 MiB -1 -1 0.41 23048 5 0.11 -1 -1 32588 -1 -1 12 10 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65820 10 2 181 183 1 36 24 6 6 36 clb auto 24.9 MiB 0.02 196 160 398 88 284 26 64.3 MiB 0.01 0.00 2.24505 2.14835 -91.9072 -2.14835 2.14835 0.00 0.000225132 0.000204043 0.00417724 0.00383718 -1 -1 -1 -1 -1 145 20 646728 646728 138825. 3856.24 0.05 0.0187942 0.0167045 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6_N10_mem32K_40nm.xml stereovision3.v common_--timing_update_type_full_--enable_parallel_connection_router_on_--multi_queue_num_threads_2_--multi_queue_num_queues_8_--multi_queue_direct_draining_on_--astar_fac_0.0_--post_target_prune_fac_0.0_--post_target_prune_offset_0.0 1.13 vpr 64.27 MiB -1 -1 0.42 23428 5 0.11 -1 -1 32588 -1 -1 12 10 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65816 10 2 181 183 1 36 24 6 6 36 clb auto 24.9 MiB 0.02 196 160 398 88 284 26 64.3 MiB 0.01 0.00 2.24505 2.14835 -91.9072 -2.14835 2.14835 0.00 0.000223349 0.000202453 0.00387379 0.0035863 -1 -1 -1 -1 -1 145 20 646728 646728 138825. 3856.24 0.04 0.0153058 0.0136886 -1 -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_strong/strong_titan/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_titan/config/golden_results.txt index e84a1129700..e88e2fe2f90 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_titan/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_titan/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_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 ucsb_152_tap_fir_stratixiv_arch_timing.blif common 66.79 vpr 1.16 GiB 42 758 0 0 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 1215864 13 29 26295 20086 1 12439 800 39 29 1131 LAB auto 1063.3 MiB 15.63 75097 245792 47628 188491 9673 1158.7 MiB 16.87 0.21 4.99421 -5497.03 -3.99421 2.87584 0.01 0.0552629 0.0482483 4.22516 3.43532 87123 7.00515 21186 1.70347 25964 36365 9630576 1720385 0 0 2.05929e+07 18207.7 13 331560 3499109 -1 5.30154 2.77187 -5700.98 -4.30154 0 0 5.27 -1 -1 1158.7 MiB 5.35 6.14131 5.12726 1158.7 MiB -1 3.33 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est 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 ucsb_152_tap_fir_stratixiv_arch_timing.blif common 33.99 vpr 1.16 GiB 42 749 0 0 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 1214544 13 29 26295 20086 1 12646 791 39 29 1131 LAB auto 1076.9 MiB 7.80 231619 75107 234775 43541 180854 10380 1154.4 MiB 6.01 0.08 5.55061 5.16398 -5504.03 -4.16398 2.86102 0.00 0.0216745 0.0190067 1.74141 1.438 87307 6.90501 21230 1.67906 25811 34329 9106433 1637889 0 0 2.05929e+07 18207.7 13 331560 3499109 -1 5.36451 2.98815 -5707.14 -4.36451 0 0 3.24 -1 -1 1154.4 MiB 2.59 2.80019 2.37571 1154.4 MiB -1 1.07 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 7d3888ea0e0..b5222df5ce6 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 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 19.43 vpr 384.88 MiB 35 93 0 0 8 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 394112 18 17 2338 2195 1 2035 136 17 13 221 io_cell auto 342.6 MiB 9.23 11597 14096 2127 10583 1386 384.9 MiB 0.99 0.03 3.78594 -3334.96 -2.78594 3.78594 0.00 0.0127693 0.0106573 0.428449 0.35312 12754 6.27657 3971 1.95423 6857 16497 4298918 925978 0 0 3.37726e+06 15281.7 12 52540 541133 -1 3.215 3.215 -2910.24 -2.215 0 0 1.33 -1 -1 384.9 MiB 1.91 0.811838 0.706005 384.9 MiB -1 0.27 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est 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 9.50 vpr 385.09 MiB 35 86 0 0 8 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 394328 18 17 2338 2195 1 2026 129 17 13 221 io_cell auto 344.2 MiB 4.44 19688 12064 13129 2012 9707 1410 385.1 MiB 0.43 0.01 4.85192 3.71062 -3391.61 -2.71062 3.71062 0.00 0.00349484 0.00291013 0.180937 0.154879 13833 6.83786 4143 2.04795 6992 16873 4273349 902603 0 0 3.37726e+06 15281.7 13 52540 541133 -1 3.321 3.321 -2993.48 -2.321 0 0 0.55 -1 -1 385.1 MiB 0.88 0.370237 0.329843 385.1 MiB -1 0.14 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_two_chains/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_two_chains/config/golden_results.txt index 6ff0e8d886f..2870c0dcfa7 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_two_chains/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_two_chains/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 total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time num_le num_luts num_add_blocks max_add_chain_length num_sub_blocks max_sub_chain_length - k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml diffeq2.v common 22.01 vpr 69.98 MiB -1 -1 0.42 25672 5 0.18 -1 -1 37676 -1 -1 17 66 0 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 71656 66 96 983 697 1 557 191 16 16 256 mult_27 auto 30.8 MiB 2.52 4520 41915 13784 24449 3682 70.0 MiB 0.47 0.01 16.7771 -983.813 -16.7771 16.7771 0.51 0.00380097 0.00356084 0.223806 0.20783 -1 -1 -1 -1 82 9891 30 4.83877e+06 1.03328e+06 1.63760e+06 6396.87 14.79 1.72784 1.60303 43164 348864 -1 8812 16 2703 5592 1100371 345017 16.7238 16.7238 -1023.47 -16.7238 0 0 2.03272e+06 7940.32 0.12 0.37 0.48 -1 -1 0.12 0.123499 0.117943 138 202 -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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time num_le num_luts num_add_blocks max_add_chain_length num_sub_blocks max_sub_chain_length +k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml diffeq2.v common 5.80 vpr 68.89 MiB -1 -1 0.20 22204 5 0.10 -1 -1 33784 -1 -1 17 66 0 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 70540 66 96 983 697 1 561 191 16 16 256 mult_27 auto 29.3 MiB 0.61 8149 4596 38072 11997 23544 2531 68.9 MiB 0.22 0.00 19.4757 17.0827 -970.661 -17.0827 17.0827 0.21 0.00129546 0.00120683 0.0982081 0.091818 -1 -1 -1 -1 62 12202 30 4.83877e+06 1.03328e+06 1.31386e+06 5132.27 2.93 0.40155 0.371234 39852 267778 -1 9854 19 3552 7322 1583377 471194 17.0705 17.0705 -1067.68 -17.0705 0 0 1.60318e+06 6262.42 0.04 0.25 0.14 -1 -1 0.04 0.0690741 0.0653357 140 202 -1 -1 -1 -1 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_unroute_analysis/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_unroute_analysis/config/golden_results.txt index 8a9769fe6bb..5887a04a315 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_unroute_analysis/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_unroute_analysis/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 ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_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 - k6_N10_mem32K_40nm.xml traffic.blif common_--route_chan_width_20 0.48 vpr 65.33 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 3 6 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 66896 6 8 39 47 1 20 17 5 5 25 clb auto 27.0 MiB 0.02 88 59 31 28 0 65.3 MiB 0.00 0.00 1.35996 -15.7932 -1.35996 1.35996 0.00 0.000116029 0.000100823 0.0010942 0.00101432 -1 -1 -1 -1 77 4.05263 38 2.00000 131 232 5197 2020 323364 161682 20103.2 804.128 18 1140 2762 -1 1.30886 1.30886 -16.2255 -1.30886 0 0 0.00 -1 -1 65.3 MiB 0.01 0.00766251 0.00688033 65.3 MiB -1 0.00 - k6_N10_mem32K_40nm.xml traffic.blif common_--route_chan_width_20_--analysis 0.51 vpr 65.23 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 3 6 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 66796 6 8 39 47 1 20 17 5 5 25 clb auto 27.0 MiB 0.02 88 59 31 28 0 65.2 MiB 0.00 0.00 1.35996 -15.7932 -1.35996 1.35996 0.00 0.000165834 0.000146968 0.00119076 0.00110326 -1 -1 -1 -1 77 4.05263 38 2.00000 131 232 5197 2020 323364 161682 20103.2 804.128 18 1140 2762 -1 1.30886 1.30886 -16.2255 -1.30886 0 0 0.00 -1 -1 65.2 MiB 0.01 0.00909464 0.00816836 65.2 MiB -1 0.00 - k6_N10_mem32K_40nm.xml traffic.blif common_--route_chan_width_8 0.24 vpr 65.30 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 3 6 0 0 exited with return code 2 v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 66872 6 8 39 47 1 20 17 5 5 25 clb auto 27.0 MiB 0.02 88 59 31 28 0 65.3 MiB 0.00 0.00 1.36028 -15.8 -1.36028 1.36028 0.00 0.000113726 9.7512e-05 0.00114825 0.00106423 -1 -1 -1 -1 -1 -1 -1 -1 654 1027 31303 15229 -1 -1 -1 -1 -1 996 1634 -1 -1 -1 -1 -1 -1 -1 0.00 -1 -1 65.3 MiB 0.03 -1 -1 65.3 MiB -1 0.00 - k6_N10_mem32K_40nm.xml traffic.blif common_--route_chan_width_8_--analysis 0.24 vpr 65.06 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 3 6 0 0 exited with return code 2 v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 66624 6 8 39 47 1 20 17 5 5 25 clb auto 26.8 MiB 0.02 88 59 31 28 0 65.1 MiB 0.00 0.00 1.36028 -15.8 -1.36028 1.36028 0.00 0.00013832 0.000115541 0.000955845 0.00087775 -1 -1 -1 -1 142 7.47368 66 3.47368 654 1027 31303 15229 323364 161682 9037.03 361.481 -1 996 1634 -1 1.84852 1.84852 -21.9824 -1.84852 0 0 0.00 -1 -1 65.1 MiB 0.03 -1 -1 65.1 MiB -1 0.00 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time 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 +k6_N10_mem32K_40nm.xml traffic.blif common_--route_chan_width_20 0.17 vpr 62.98 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 3 6 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 64492 6 8 39 47 1 20 17 5 5 25 clb auto 24.3 MiB 0.01 107 88 59 31 28 0 63.0 MiB 0.00 0.00 1.35996 1.35996 -15.7932 -1.35996 1.35996 0.00 7.9358e-05 7.06e-05 0.000702625 0.000659908 -1 -1 -1 -1 77 4.05263 38 2.00000 131 232 5199 2021 323364 161682 20103.2 804.128 18 1140 2762 -1 1.30886 1.30886 -16.2255 -1.30886 0 0 0.00 -1 -1 63.0 MiB 0.01 0.00494254 0.00441175 63.0 MiB -1 0.00 +k6_N10_mem32K_40nm.xml traffic.blif common_--route_chan_width_20_--analysis 0.17 vpr 62.86 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 3 6 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 64364 6 8 39 47 1 20 17 5 5 25 clb auto 24.5 MiB 0.01 107 88 59 31 28 0 62.9 MiB 0.00 0.00 1.35996 1.35996 -15.7932 -1.35996 1.35996 0.00 7.9701e-05 7.0904e-05 0.000704152 0.00066155 -1 -1 -1 -1 77 4.05263 38 2.00000 131 232 5199 2021 323364 161682 20103.2 804.128 18 1140 2762 -1 1.30886 1.30886 -16.2255 -1.30886 0 0 0.00 -1 -1 62.9 MiB 0.01 0.00497552 0.00444693 62.9 MiB -1 0.00 +k6_N10_mem32K_40nm.xml traffic.blif common_--route_chan_width_8 0.18 vpr 63.18 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 3 6 0 0 exited with return code 2 v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 64692 6 8 39 47 1 20 17 5 5 25 clb auto 24.9 MiB 0.01 107 88 59 31 28 0 63.2 MiB 0.00 0.00 1.36028 1.36028 -15.8 -1.36028 1.36028 0.00 8.0556e-05 7.1754e-05 0.000710303 0.000667295 -1 -1 -1 -1 -1 -1 -1 -1 656 1029 31338 15241 -1 -1 -1 -1 -1 996 1634 -1 -1 -1 -1 -1 -1 -1 0.00 -1 -1 63.2 MiB 0.02 -1 -1 63.2 MiB -1 0.00 +k6_N10_mem32K_40nm.xml traffic.blif common_--route_chan_width_8_--analysis 0.19 vpr 63.15 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 3 6 0 0 exited with return code 2 v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 64668 6 8 39 47 1 20 17 5 5 25 clb auto 24.3 MiB 0.01 107 88 59 31 28 0 63.2 MiB 0.00 0.00 1.36028 1.36028 -15.8 -1.36028 1.36028 0.00 7.9004e-05 7.0259e-05 0.000720378 0.000678096 -1 -1 -1 -1 141 7.42105 65 3.42105 656 1029 31338 15241 323364 161682 9037.03 361.481 -1 996 1634 -1 1.84852 1.84852 -21.9119 -1.84852 0 0 0.00 -1 -1 63.2 MiB 0.02 -1 -1 63.2 MiB -1 0.00 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_verify_rr_graph/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_verify_rr_graph/config/golden_results.txt index cb597e00427..54d5147cb89 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_verify_rr_graph/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_verify_rr_graph/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 ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_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 - k4_N4_90nm.xml stereovision3.v common 2.77 vpr 60.00 MiB -1 -1 0.91 26856 6 0.21 -1 -1 36836 -1 -1 28 10 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 61436 10 2 186 188 1 48 40 8 8 64 clb auto 20.5 MiB 0.04 230 992 145 785 62 60.0 MiB 0.03 0.00 2.71052 -113.21 -2.71052 2.71052 0.00 0.000447321 0.000382714 0.00843147 0.00745792 -1 -1 -1 -1 199 4.42222 199 4.42222 158 387 13661 2934 80255.5 62421 276194. 4315.53 9 9480 40228 -1 2.65254 2.65254 -117.366 -2.65254 -0.0734 -0.0734 0.09 -1 -1 60.0 MiB 0.03 0.0220189 0.0194464 60.0 MiB -1 0.01 - k6_frac_N10_40nm.xml stereovision3.v common 2.04 vpr 61.65 MiB -1 -1 0.81 26884 5 0.16 -1 -1 36968 -1 -1 7 10 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 63132 10 2 181 183 1 37 19 5 5 25 clb auto 22.0 MiB 0.07 127 144 32 99 13 61.7 MiB 0.01 0.00 2.03188 -84.9427 -2.03188 2.03188 0.00 0.000403252 0.000354056 0.00494195 0.00440924 -1 -1 -1 -1 107 3.14706 52 1.52941 43 59 1032 320 485046 377258 99699.4 3987.98 3 2523 14238 -1 1.97747 1.97747 -86.276 -1.97747 0 0 0.03 -1 -1 61.7 MiB 0.01 0.0168116 0.0156639 61.7 MiB -1 0.00 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time 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 +k4_N4_90nm.xml stereovision3.v common 1.32 vpr 58.29 MiB -1 -1 0.39 23264 6 0.10 -1 -1 32592 -1 -1 28 10 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 59688 10 2 186 188 1 46 40 8 8 64 clb auto 18.3 MiB 0.01 370 219 1196 185 951 60 58.3 MiB 0.01 0.00 3.46426 2.64808 -111.051 -2.64808 2.64808 0.00 0.000230277 0.000209848 0.00499518 0.00455702 -1 -1 -1 -1 190 4.41860 190 4.41860 181 461 16985 3541 80255.5 62421 276194. 4315.53 13 9480 40228 -1 2.65254 2.65254 -110.961 -2.65254 -0.0734 -0.0734 0.03 -1 -1 58.3 MiB 0.01 0.013254 0.0119008 58.3 MiB -1 0.00 +k6_frac_N10_40nm.xml stereovision3.v common 1.27 vpr 59.75 MiB -1 -1 0.39 23288 5 0.10 -1 -1 32580 -1 -1 7 10 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 61184 10 2 181 183 1 38 19 5 5 25 clb auto 20.0 MiB 0.03 159 121 469 107 323 39 59.8 MiB 0.01 0.00 2.03188 2.03188 -84.6958 -2.03188 2.03188 0.00 0.000218134 0.000198163 0.00575791 0.00533131 -1 -1 -1 -1 105 3.00000 54 1.54286 61 90 1611 507 485046 377258 99699.4 3987.98 6 2523 14238 -1 2.07226 2.07226 -86.1872 -2.07226 0 0 0.01 -1 -1 59.8 MiB 0.01 0.0133683 0.0124329 59.8 MiB -1 0.00 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_verify_rr_graph_bin/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_verify_rr_graph_bin/config/golden_results.txt index 0fde75bd1ed..f0211e745a4 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_verify_rr_graph_bin/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_verify_rr_graph_bin/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 ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_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 - k4_N4_90nm.xml stereovision3.v common 2.09 vpr 60.07 MiB -1 -1 0.81 26980 6 0.15 -1 -1 36756 -1 -1 28 10 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 61512 10 2 186 188 1 48 40 8 8 64 clb auto 20.6 MiB 0.03 230 992 145 785 62 60.1 MiB 0.02 0.00 2.71052 -113.21 -2.71052 2.71052 0.00 0.000430706 0.00037483 0.00785446 0.00688801 -1 -1 -1 -1 199 4.42222 199 4.42222 158 387 13661 2934 80255.5 62421 276194. 4315.53 9 9480 40228 -1 2.65254 2.65254 -117.366 -2.65254 -0.0734 -0.0734 0.08 -1 -1 60.1 MiB 0.02 0.0211284 0.0188358 60.1 MiB -1 0.01 - k6_frac_N10_40nm.xml stereovision3.v common 1.94 vpr 61.65 MiB -1 -1 0.77 26880 5 0.18 -1 -1 36968 -1 -1 7 10 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 63132 10 2 181 183 1 37 19 5 5 25 clb auto 22.1 MiB 0.06 127 144 32 99 13 61.7 MiB 0.01 0.00 2.03188 -84.9427 -2.03188 2.03188 0.00 0.000420371 0.000366917 0.00494209 0.00453968 -1 -1 -1 -1 107 3.14706 52 1.52941 43 59 1032 320 485046 377258 99699.4 3987.98 3 2523 14238 -1 1.97747 1.97747 -86.276 -1.97747 0 0 0.02 -1 -1 61.7 MiB 0.01 0.0164382 0.0153894 61.7 MiB -1 0.00 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time 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 +k4_N4_90nm.xml stereovision3.v common 1.31 vpr 57.90 MiB -1 -1 0.44 23268 6 0.10 -1 -1 32592 -1 -1 28 10 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 59288 10 2 186 188 1 46 40 8 8 64 clb auto 17.9 MiB 0.01 370 219 1196 185 951 60 57.9 MiB 0.01 0.00 3.46426 2.64808 -111.051 -2.64808 2.64808 0.00 0.000227528 0.000206718 0.00514212 0.00468684 -1 -1 -1 -1 190 4.41860 190 4.41860 181 461 16985 3541 80255.5 62421 276194. 4315.53 13 9480 40228 -1 2.65254 2.65254 -110.961 -2.65254 -0.0734 -0.0734 0.03 -1 -1 57.9 MiB 0.01 0.0133773 0.0120246 57.9 MiB -1 0.00 +k6_frac_N10_40nm.xml stereovision3.v common 1.31 vpr 59.16 MiB -1 -1 0.41 23148 5 0.11 -1 -1 32568 -1 -1 7 10 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 60580 10 2 181 183 1 38 19 5 5 25 clb auto 19.7 MiB 0.03 159 121 469 107 323 39 59.2 MiB 0.01 0.00 2.03188 2.03188 -84.6958 -2.03188 2.03188 0.00 0.000227941 0.000207215 0.00601851 0.00558608 -1 -1 -1 -1 105 3.00000 54 1.54286 61 90 1611 507 485046 377258 99699.4 3987.98 6 2523 14238 -1 2.07226 2.07226 -86.1872 -2.07226 0 0 0.01 -1 -1 59.2 MiB 0.01 0.0138386 0.0128888 59.2 MiB -1 0.00 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_verify_rr_graph_titan/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_verify_rr_graph_titan/config/golden_results.txt index 9a8744d436c..2f0425ccd8e 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_verify_rr_graph_titan/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_verify_rr_graph_titan/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 total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time 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 styr.blif common 32.55 vpr 978.44 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 1001924 10 10 168 178 1 68 30 11 8 88 io auto 955.5 MiB 0.50 371 490 69 397 24 978.4 MiB 0.08 0.00 6.66046 -72.2933 -6.66046 6.66046 0.00 0.000745164 0.00064564 0.0121362 0.0109717 -1 -1 -1 -1 549 8.19403 169 2.52239 264 964 62268 28521 0 0 194014. 2204.70 13 11730 32605 -1 6.70864 6.70864 -73.3171 -6.70864 0 0 0.08 -1 -1 978.4 MiB 0.14 0.0524157 0.0489871 978.4 MiB -1 0.02 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time 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 styr.blif common 22.04 vpr 979.41 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 1002912 10 10 168 178 1 65 30 11 8 88 io auto 953.3 MiB 0.33 530 402 720 97 571 52 979.4 MiB 0.06 0.00 6.8225 6.61671 -72.4654 -6.61671 6.61671 0.00 0.000312489 0.00027995 0.00825822 0.00768717 -1 -1 -1 -1 669 10.4531 198 3.09375 255 965 67200 31259 0 0 194014. 2204.70 14 11730 32605 -1 6.73871 6.73871 -74.3689 -6.73871 0 0 0.04 -1 -1 979.4 MiB 0.05 0.0249525 0.0231555 979.4 MiB -1 0.01 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/koios_test/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/koios_test/config/golden_results.txt index 7b5437463d7..25a87198d21 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/koios_test/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/koios_test/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 total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml test.v common 5.51 vpr 77.59 MiB 0.04 8576 -1 -1 1 0.07 -1 -1 35240 -1 -1 12 130 0 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 79456 130 40 596 562 1 356 185 14 14 196 dsp_top auto 38.5 MiB 0.13 1890 35427 11493 18934 5000 77.6 MiB 0.27 0.00 5.12303 -647.058 -5.12303 5.12303 0.48 0.00206617 0.00189672 0.14394 0.133207 -1 -1 -1 -1 64 3873 16 4.93594e+06 1.0962e+06 976140. 4980.31 2.20 0.636996 0.595296 31408 195022 -1 3500 9 851 887 209984 82943 4.57723 4.57723 -694.457 -4.57723 0 0 1.23909e+06 6321.90 0.09 0.15 0.39 -1 -1 0.09 0.0903946 0.0866517 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml test.v common 8.46 odin 122.62 MiB 5.36 125568 -1 -1 1 0.05 -1 -1 32100 -1 -1 12 130 0 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 77964 130 40 596 562 1 355 185 14 14 196 dsp_top auto 37.0 MiB 0.09 3418 1865 39635 13944 21044 4647 76.1 MiB 0.13 0.00 5.12303 5.12303 -651.76 -5.12303 5.12303 0.19 0.000866185 0.000806089 0.069875 0.0652099 -1 -1 -1 -1 82 3469 9 4.93594e+06 1.0962e+06 1.23902e+06 6321.54 1.21 0.315755 0.291609 33448 250998 -1 3353 9 741 768 180939 69062 4.57723 4.57723 -669.54 -4.57723 0 0 1.53308e+06 7821.82 0.03 0.05 0.18 -1 -1 0.03 0.0246455 0.0233771 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/koios_test_no_hb/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/koios_test_no_hb/config/golden_results.txt index 23cf7b0b85f..b6ed7b07205 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/koios_test_no_hb/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/koios_test_no_hb/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 total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml test.v common 14.85 vpr 81.40 MiB 0.10 11392 -1 -1 1 0.12 -1 -1 37676 -1 -1 23 130 0 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 83352 130 40 1203 1030 1 586 196 14 14 196 dsp_top auto 41.3 MiB 0.63 2691 46285 14724 25599 5962 81.4 MiB 0.45 0.01 6.58999 -703.566 -6.58999 6.58999 0.48 0.00220042 0.00200207 0.214554 0.193316 -1 -1 -1 -1 108 5210 35 4.93594e+06 1.40315e+06 1.55765e+06 7947.21 10.07 1.93637 1.74105 36552 325092 -1 4641 23 2669 2746 326887 113256 6.77766 6.77766 -770.287 -6.77766 0 0 1.93951e+06 9895.46 0.12 0.27 0.65 -1 -1 0.12 0.138318 0.125698 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml test.v common 11.04 odin 218.25 MiB 6.64 223488 -1 -1 1 0.07 -1 -1 33976 -1 -1 23 130 0 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 81316 130 40 1203 1030 1 587 196 14 14 196 dsp_top auto 39.6 MiB 0.32 5039 2615 41733 12907 23223 5603 79.4 MiB 0.17 0.00 7.16349 6.55057 -693.511 -6.55057 6.55057 0.19 0.00100498 0.000913787 0.0833981 0.0763062 -1 -1 -1 -1 120 4838 28 4.93594e+06 1.40315e+06 1.69991e+06 8673.00 1.88 0.40623 0.365025 38028 369366 -1 4452 23 2538 2614 296097 92461 6.77726 6.77726 -734.869 -6.77726 0 0 2.14988e+06 10968.8 0.05 0.10 0.27 -1 -1 0.05 0.0620611 0.0571425 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_absorb_buffers/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_absorb_buffers/config/golden_results.txt index 235e1da0107..1881b26da15 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_absorb_buffers/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_absorb_buffers/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 ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - k6_frac_N10_40nm.xml riscv_core_lut6.blif common_--absorb_buffer_luts_on 1.88 vpr 72.33 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 83 130 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 74068 130 150 1169 1319 1 886 363 12 12 144 clb auto 32.4 MiB 1.34 -1 -1 -1 -1 -1 -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.00708147 0.00640458 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - k6_frac_N10_40nm.xml riscv_core_lut6.blif common_--absorb_buffer_luts_off 2.22 vpr 72.07 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 90 130 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 73804 130 150 1216 1366 1 933 370 12 12 144 clb auto 32.3 MiB 1.54 -1 -1 -1 -1 -1 -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.00920908 0.00830291 -1 -1 -1 -1 -1 -1 -1 -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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +k6_frac_N10_40nm.xml riscv_core_lut6.blif common_--absorb_buffer_luts_on 0.97 vpr 70.61 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 85 130 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 72308 130 150 1169 1319 1 885 365 12 12 144 clb auto 30.7 MiB 0.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 0.00294981 0.00272321 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6_frac_N10_40nm.xml riscv_core_lut6.blif common_--absorb_buffer_luts_off 0.95 vpr 70.67 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 94 130 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 72368 130 150 1216 1366 1 925 374 12 12 144 clb auto 30.9 MiB 0.60 -1 -1 -1 -1 -1 -1 -1 -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.00295932 0.00273669 -1 -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_strong_odin/strong_analysis_only/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_analysis_only/config/golden_results.txt index d3c7d61af84..b884d061731 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_analysis_only/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_analysis_only/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 ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_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 - k6_N10_mem32K_40nm.xml stereovision3.v common 1.36 vpr 66.46 MiB 0.08 10496 -1 -1 4 0.21 -1 -1 36668 -1 -1 19 11 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 68060 11 30 262 292 2 99 60 7 7 49 clb auto 27.4 MiB 0.08 425 2283 406 1804 73 66.5 MiB 0.05 0.00 2.45115 -182.341 -2.45115 2.3368 0.00 0.000768694 0.000638603 0.0252644 0.022728 -1 -1 -1 -1 414 4.35789 166 1.74737 630 1427 58282 13907 1.07788e+06 1.02399e+06 207176. 4228.08 20 4440 29880 -1 2.3823 2.2863 -180.577 -2.3823 0 0 0.05 -1 -1 66.5 MiB 0.08 0.0775573 0.0705898 66.5 MiB -1 0.01 - k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision3.v common 1.76 vpr 69.14 MiB 0.09 10368 -1 -1 5 0.19 -1 -1 36576 -1 -1 14 11 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 70804 11 30 313 321 2 115 55 7 7 49 clb auto 29.7 MiB 0.40 448 1927 352 1502 73 69.1 MiB 0.07 0.00 2.6627 -173.06 -2.6627 2.30313 0.00 0.000863635 0.000740182 0.0221309 0.0195205 -1 -1 -1 -1 595 5.45872 228 2.09174 234 449 14202 4622 1.07788e+06 754516 219490. 4479.39 8 5100 32136 -1 2.70461 2.28805 -176.84 -2.70461 0 0 0.05 -1 -1 69.1 MiB 0.06 0.0568064 0.051944 69.1 MiB -1 0.01 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time 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 +k6_N10_mem32K_40nm.xml stereovision3.v common 3.40 odin 166.88 MiB 2.47 170880 -1 -1 4 0.12 -1 -1 33080 -1 -1 20 11 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 67040 11 30 262 292 2 99 61 7 7 49 clb auto 25.4 MiB 0.04 688 437 2341 384 1888 69 65.5 MiB 0.02 0.00 2.91853 2.7389 -178.372 -2.7389 2.43544 0.00 0.000377471 0.000327024 0.0100275 0.00887733 -1 -1 -1 -1 434 4.56842 177 1.86316 730 1655 64750 15779 1.07788e+06 1.07788e+06 207176. 4228.08 23 4440 29880 -1 2.44651 2.32748 -175.142 -2.44651 0 0 0.02 -1 -1 65.5 MiB 0.03 0.0315352 0.027637 65.5 MiB -1 0.00 +k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision3.v common 3.59 odin 157.12 MiB 2.50 160896 -1 -1 5 0.11 -1 -1 33308 -1 -1 14 11 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 69568 11 30 313 321 2 114 55 7 7 49 clb auto 28.7 MiB 0.18 671 455 1719 301 1356 62 67.9 MiB 0.02 0.00 2.73611 2.6413 -165.526 -2.6413 2.31106 0.00 0.000410886 0.000359843 0.0107195 0.00966653 -1 -1 -1 -1 571 5.28704 218 2.01852 192 380 9910 2908 1.07788e+06 754516 219490. 4479.39 12 5100 32136 -1 2.66069 2.29553 -166.559 -2.66069 0 0 0.02 -1 -1 67.9 MiB 0.02 0.0302329 0.0275299 67.9 MiB -1 0.00 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_analytic_placer/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_analytic_placer/config/golden_results.txt index df63a32e433..300983f84f2 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_analytic_placer/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_analytic_placer/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 total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - k6_frac_N10_mem32K_40nm.xml ch_intrinsics.v common 4.27 vpr 67.81 MiB 0.06 9984 -1 -1 3 0.40 -1 -1 39908 -1 -1 68 99 1 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 69436 99 130 363 493 1 251 298 12 12 144 clb auto 28.8 MiB 0.14 1080 1293 313 846 134 67.8 MiB 0.06 0.00 2.45187 -223.196 -2.45187 2.45187 0.31 0.000607122 0.000549979 0.00491114 0.00472929 -1 -1 -1 -1 34 2076 26 5.66058e+06 4.21279e+06 293002. 2034.74 1.92 0.386002 0.351306 12094 55633 -1 1662 10 540 720 43948 13958 2.71514 2.71514 -233.572 -2.71514 0 0 360780. 2505.42 0.02 0.06 0.08 -1 -1 0.02 0.0335019 0.0302667 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +k6_frac_N10_mem32K_40nm.xml ch_intrinsics.v common 3.81 odin 100.50 MiB 2.18 102912 -1 -1 3 0.19 -1 -1 34104 -1 -1 68 99 1 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 67628 99 130 363 493 1 252 298 12 12 144 clb auto 26.8 MiB 0.07 1168 1026 1293 339 819 135 66.0 MiB 0.05 0.00 2.24785 2.1902 -216.85 -2.1902 2.1902 0.09 0.000548458 0.000511942 0.00340329 0.00328177 -1 -1 -1 -1 38 1909 17 5.66058e+06 4.21279e+06 319130. 2216.18 0.37 0.116514 0.106136 12522 62564 -1 1585 12 545 712 54323 17831 2.61371 2.61371 -231.046 -2.61371 0 0 406292. 2821.48 0.01 0.03 0.04 -1 -1 0.01 0.0185263 0.0173288 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_bidir/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_bidir/config/golden_results.txt index c57ad9bdb40..1d55e8e0081 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_bidir/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_bidir/config/golden_results.txt @@ -1,5 +1,5 @@ - arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - k4_n4_v7_bidir.xml styr.blif common 1.89 vpr 61.17 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 69 10 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 62636 10 10 253 263 1 165 89 11 11 121 clb auto 21.5 MiB 0.06 1288 4445 682 3619 144 61.2 MiB 0.05 0.00 5.46014 -72.9505 -5.46014 5.46014 0.09 0.000707997 0.000614185 0.0204147 0.0180597 -1 -1 -1 -1 14 2036 29 2.43e+06 2.07e+06 -1 -1 0.97 0.236366 0.209157 3402 27531 -1 1911 15 1185 4098 215222 27160 6.9309 6.9309 -92.2142 -6.9309 0 0 -1 -1 0.01 0.10 0.02 -1 -1 0.01 0.0335803 0.0304927 - k4_n4_v7_longline_bidir.xml styr.blif common 1.77 vpr 60.37 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 69 10 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 61816 10 10 253 263 1 165 89 11 11 121 clb auto 21.3 MiB 0.05 1219 4247 600 3483 164 60.4 MiB 0.05 0.00 4.42494 -53.3169 -4.42494 4.42494 0.10 0.000681666 0.000592315 0.0189188 0.016758 -1 -1 -1 -1 18 2215 40 2.43e+06 2.07e+06 -1 -1 0.80 0.256847 0.227018 3282 34431 -1 2139 18 1151 3756 254207 31830 9.07319 9.07319 -108.035 -9.07319 0 0 -1 -1 0.02 0.10 0.03 -1 -1 0.02 0.0370258 0.033411 - k4_n4_v7_l1_bidir.xml styr.blif common 2.35 vpr 61.16 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 69 10 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 62632 10 10 253 263 1 165 89 11 11 121 clb auto 21.5 MiB 0.05 1285 7613 1616 5547 450 61.2 MiB 0.12 0.00 6.9252 -85.9419 -6.9252 6.9252 0.14 0.000675324 0.000585254 0.0347554 0.0308708 -1 -1 -1 -1 10 1481 31 2.43e+06 2.07e+06 -1 -1 1.17 0.183607 0.16336 4482 22551 -1 1268 22 1168 4312 263452 47622 7.30329 7.30329 -93.8299 -7.30329 0 0 -1 -1 0.01 0.13 0.02 -1 -1 0.01 0.0396264 0.0357171 - k4_n4_v7_bidir_pass_gate.xml styr.blif common 3.49 vpr 60.32 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 69 10 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 61772 10 10 253 263 1 165 89 11 11 121 clb auto 21.2 MiB 0.05 1234 4643 666 3821 156 60.3 MiB 0.09 0.01 3.51175 -43.7413 -3.51175 3.51175 0.09 0.000766831 0.000671887 0.0247522 0.0222268 -1 -1 -1 -1 14 2053 42 2.43e+06 2.07e+06 -1 -1 2.23 0.282741 0.249953 3402 27531 -1 1991 28 1438 5059 778762 132220 26.9853 26.9853 -248.248 -26.9853 0 0 -1 -1 0.01 0.37 0.03 -1 -1 0.01 0.0480187 0.0429407 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +k4_n4_v7_bidir.xml styr.blif common 0.97 vpr 58.95 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 72 10 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 60368 10 10 253 263 1 171 92 11 11 121 clb auto 19.7 MiB 0.03 1829 1341 4439 719 3525 195 59.0 MiB 0.03 0.00 8.75156 5.95188 -76.2362 -5.95188 5.95188 0.03 0.000362225 0.000326331 0.00992626 0.00907431 -1 -1 -1 -1 14 2179 38 2.43e+06 2.16e+06 -1 -1 0.45 0.0943506 0.081458 3402 27531 -1 1923 17 1033 3494 176707 22465 7.58177 7.58177 -95.383 -7.58177 0 0 -1 -1 0.00 0.04 0.01 -1 -1 0.00 0.0158882 0.0142757 +k4_n4_v7_longline_bidir.xml styr.blif common 0.91 vpr 59.05 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 72 10 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 60464 10 10 253 263 1 171 92 11 11 121 clb auto 19.8 MiB 0.03 1829 1318 3611 426 3020 165 59.0 MiB 0.02 0.00 5.19817 4.47516 -54.2373 -4.47516 4.47516 0.04 0.000357538 0.00032632 0.00871064 0.00799197 -1 -1 -1 -1 17 2528 41 2.43e+06 2.16e+06 -1 -1 0.35 0.0835775 0.0724263 3202 31699 -1 2252 25 1472 4968 313575 40767 9.40236 9.40236 -107.704 -9.40236 0 0 -1 -1 0.01 0.06 0.01 -1 -1 0.01 0.0211626 0.0187929 +k4_n4_v7_l1_bidir.xml styr.blif common 1.04 vpr 59.02 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 72 10 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 60436 10 10 253 263 1 171 92 11 11 121 clb auto 19.8 MiB 0.03 1829 1340 8579 1857 6361 361 59.0 MiB 0.04 0.00 11.3865 6.30908 -81.1511 -6.30908 6.30908 0.04 0.000371081 0.000335053 0.0176792 0.0161598 -1 -1 -1 -1 11 1565 28 2.43e+06 2.16e+06 -1 -1 0.44 0.0827522 0.0722935 4842 26035 -1 1365 23 1309 5061 314893 55846 8.55913 8.55913 -101.511 -8.55913 0 0 -1 -1 0.00 0.06 0.01 -1 -1 0.00 0.0191151 0.0170035 +k4_n4_v7_bidir_pass_gate.xml styr.blif common 1.24 vpr 59.62 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 72 10 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 61052 10 10 253 263 1 171 92 11 11 121 clb auto 19.8 MiB 0.03 1829 1326 4025 528 3322 175 59.6 MiB 0.02 0.00 4.50889 3.47884 -44.786 -3.47884 3.47884 0.03 0.000371134 0.000327233 0.00920502 0.00841011 -1 -1 -1 -1 16 2193 28 2.43e+06 2.16e+06 -1 -1 0.64 0.0871949 0.0752766 3522 30407 -1 2061 19 1236 4213 766518 139225 14.4125 14.4125 -146.898 -14.4125 0 0 -1 -1 0.00 0.11 0.01 -1 -1 0.00 0.0176916 0.0159417 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_binary/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_binary/config/golden_results.txt index 0bd2ba5a636..5397c667c6c 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_binary/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_binary/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 ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - k6_N10_mem32K_40nm.xml stereovision3.v common_--verify_binary_search_off 1.92 vpr 66.34 MiB 0.06 10496 -1 -1 4 0.21 -1 -1 36540 -1 -1 19 11 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 67936 11 30 262 292 2 99 60 7 7 49 clb auto 27.3 MiB 0.08 427 1815 293 1474 48 66.3 MiB 0.03 0.00 2.45489 -180.219 -2.45489 2.30757 0.06 0.000749649 0.00064239 0.0161237 0.0140852 -1 -1 -1 -1 18 637 26 1.07788e+06 1.02399e+06 45686.6 932.380 0.28 0.147245 0.127953 2616 8308 -1 528 22 686 1665 42264 14116 2.57724 2.36372 -184.812 -2.57724 0 0 59124.6 1206.62 0.00 0.08 0.01 -1 -1 0.00 0.047308 0.0404063 - k6_N10_mem32K_40nm.xml stereovision3.v common_--verify_binary_search_on 2.40 vpr 66.13 MiB 0.07 10368 -1 -1 4 0.23 -1 -1 36792 -1 -1 19 11 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 67716 11 30 262 292 2 99 60 7 7 49 clb auto 27.2 MiB 0.08 427 1815 293 1474 48 66.1 MiB 0.04 0.00 2.45489 -180.219 -2.45489 2.30757 0.06 0.000744837 0.000636456 0.0185703 0.0149662 -1 -1 -1 -1 18 637 26 1.07788e+06 1.02399e+06 45686.6 932.380 0.64 0.298818 0.25277 2616 8308 -1 528 22 686 1665 42264 14116 2.57724 2.36372 -184.812 -2.57724 0 0 59124.6 1206.62 0.00 0.10 0.01 -1 -1 0.00 0.0500747 0.044978 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +k6_N10_mem32K_40nm.xml stereovision3.v common_--verify_binary_search_off 3.86 odin 167.25 MiB 2.53 171264 -1 -1 4 0.12 -1 -1 33080 -1 -1 20 11 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 67272 11 30 262 292 2 99 61 7 7 49 clb auto 26.0 MiB 0.04 688 430 2821 451 2299 71 65.7 MiB 0.02 0.00 2.92675 2.74423 -180.089 -2.74423 2.44742 0.02 0.000428515 0.000373651 0.0118289 0.0104043 -1 -1 -1 -1 18 673 35 1.07788e+06 1.07788e+06 45686.6 932.380 0.18 0.0738407 0.0618149 2616 8308 -1 591 24 845 2121 68310 27246 2.65985 2.3922 -190.754 -2.65985 0 0 59124.6 1206.62 0.00 0.04 0.00 -1 -1 0.00 0.0224978 0.0195692 +k6_N10_mem32K_40nm.xml stereovision3.v common_--verify_binary_search_on 4.06 odin 166.88 MiB 2.52 170880 -1 -1 4 0.12 -1 -1 33096 -1 -1 20 11 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 67268 11 30 262 292 2 99 61 7 7 49 clb auto 25.6 MiB 0.04 688 430 2821 451 2299 71 65.7 MiB 0.02 0.00 2.92675 2.74423 -180.089 -2.74423 2.44742 0.02 0.00040163 0.000347773 0.0117465 0.0103215 -1 -1 -1 -1 18 673 35 1.07788e+06 1.07788e+06 45686.6 932.380 0.40 0.133348 0.110447 2616 8308 -1 591 24 845 2121 68310 27246 2.65985 2.3922 -190.754 -2.65985 0 0 59124.6 1206.62 0.00 0.04 0.00 -1 -1 0.00 0.0230397 0.0200505 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_blocks_with_no_inputs/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_blocks_with_no_inputs/config/golden_results.txt index 7d75ebf7e22..a646b3f38b3 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_blocks_with_no_inputs/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_blocks_with_no_inputs/config/golden_results.txt @@ -1,9 +1,9 @@ - arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - k6_N10_mem32K_40nm.xml ch_intrinsics.v common 3.32 vpr 67.44 MiB 0.07 9856 -1 -1 3 0.36 -1 -1 39552 -1 -1 75 99 1 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 69060 99 130 363 493 1 255 305 13 13 169 clb auto 27.9 MiB 0.11 817 73151 23083 37131 12937 67.4 MiB 0.30 0.01 2.36834 -235.63 -2.36834 2.36834 0.29 0.00233393 0.00223993 0.0738859 0.066584 -1 -1 -1 -1 32 1352 17 6.63067e+06 4.59005e+06 323148. 1912.12 0.52 0.196726 0.178694 11612 59521 -1 1138 16 719 1086 65347 22389 2.48507 2.48507 -238.178 -2.48507 0 0 396943. 2348.77 0.02 0.13 0.12 -1 -1 0.02 0.0517727 0.0472555 - k6_N10_mem32K_40nm.xml diffeq1.v common 10.12 vpr 70.60 MiB 0.03 9856 -1 -1 15 0.44 -1 -1 38380 -1 -1 60 162 0 5 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 72292 162 96 999 932 1 661 323 16 16 256 mult_36 auto 31.3 MiB 0.38 5531 95525 26953 60139 8433 70.6 MiB 0.91 0.01 21.9361 -1891.35 -21.9361 21.9361 0.47 0.00396915 0.00366377 0.403824 0.374905 -1 -1 -1 -1 44 11294 43 1.21132e+07 5.21364e+06 665287. 2598.78 5.71 1.78116 1.66467 20656 131250 -1 8771 24 4066 8799 1047369 299882 22.5944 22.5944 -1935.68 -22.5944 0 0 864808. 3378.16 0.04 0.50 0.16 -1 -1 0.04 0.234899 0.221057 - k6_N10_mem32K_40nm.xml single_wire.v common 0.56 vpr 65.29 MiB 0.01 6912 -1 -1 1 0.02 -1 -1 32916 -1 -1 0 1 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 66852 1 1 1 2 0 1 2 3 3 9 -1 auto 27.0 MiB 0.00 2 3 0 3 0 65.3 MiB 0.00 0.00 0.18684 -0.18684 -0.18684 nan 0.00 1.0231e-05 6.013e-06 7.2755e-05 4.8573e-05 -1 -1 -1 -1 2 1 1 53894 0 1165.58 129.509 0.00 0.00153872 0.00147005 254 297 -1 1 1 1 1 19 15 0.211201 nan -0.211201 -0.211201 0 0 1165.58 129.509 0.00 0.00 0.00 -1 -1 0.00 0.00109157 0.00106485 - k6_N10_mem32K_40nm.xml single_ff.v common 0.49 vpr 65.16 MiB 0.01 7040 -1 -1 1 0.02 -1 -1 33280 -1 -1 1 2 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 66728 2 1 3 4 1 3 4 3 3 9 -1 auto 26.9 MiB 0.00 6 9 5 1 3 65.2 MiB 0.00 0.00 0.55247 -0.90831 -0.55247 0.55247 0.00 1.5008e-05 1.0331e-05 0.000105161 7.8059e-05 -1 -1 -1 -1 2 2 2 53894 53894 1165.58 129.509 0.00 0.0016194 0.0015365 254 297 -1 2 2 3 3 56 18 0.577715 0.577715 -0.9588 -0.577715 0 0 1165.58 129.509 0.00 0.00 0.00 -1 -1 0.00 0.00112886 0.00109032 - k6_N10_mem32K_40nm_i_or_o.xml ch_intrinsics.v common 5.85 vpr 67.48 MiB 0.06 9856 -1 -1 3 0.36 -1 -1 39692 -1 -1 75 99 1 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 69100 99 130 363 493 1 255 305 19 19 361 o auto 27.9 MiB 0.10 1043 75203 18688 40447 16068 67.5 MiB 0.27 0.00 2.5827 -243.865 -2.5827 2.5827 1.92 0.000939884 0.00084584 0.0725048 0.0652395 -1 -1 -1 -1 36 1432 20 1.79173e+07 4.59005e+06 833707. 2309.44 1.36 0.302543 0.27272 24998 161561 -1 1342 23 802 1298 88966 26229 2.93129 2.93129 -249.701 -2.93129 0 0 1.02328e+06 2834.56 0.07 0.10 0.15 -1 -1 0.07 0.0554021 0.0511266 - k6_N10_mem32K_40nm_i_or_o.xml diffeq1.v common 12.40 vpr 79.29 MiB 0.04 9856 -1 -1 15 0.45 -1 -1 38032 -1 -1 60 162 0 5 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 81188 162 96 999 932 1 661 323 24 24 576 i auto 31.0 MiB 0.28 7114 95525 25526 57948 12051 79.3 MiB 0.94 0.01 21.4854 -1914.4 -21.4854 21.4854 3.35 0.00392701 0.00363416 0.415599 0.386608 -1 -1 -1 -1 32 12804 30 3.08128e+07 5.21364e+06 1.24505e+06 2161.54 3.94 1.18592 1.11276 39974 242477 -1 10817 26 4455 9936 1378660 349639 22.5193 22.5193 -2054.22 -22.5193 0 0 1.54255e+06 2678.04 0.12 0.65 0.37 -1 -1 0.12 0.246186 0.231211 - k6_N10_mem32K_40nm_i_or_o.xml single_wire.v common 0.47 vpr 65.28 MiB 0.02 6784 -1 -1 1 0.02 -1 -1 33172 -1 -1 0 1 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 66848 1 1 1 2 0 1 2 4 4 16 i auto 26.9 MiB 0.00 3 3 0 0 3 65.3 MiB 0.00 0.00 0.18684 -0.18684 -0.18684 nan 0.00 1.1306e-05 5.604e-06 7.2139e-05 4.6493e-05 -1 -1 -1 -1 4 2 1 215576 0 2092.17 130.760 0.00 0.00155951 0.00148904 324 600 -1 2 1 1 1 17 7 0.229376 nan -0.229376 -0.229376 0 0 3281.68 205.105 0.00 0.00 0.00 -1 -1 0.00 0.0014785 0.00144447 - k6_N10_mem32K_40nm_i_or_o.xml single_ff.v common 0.49 vpr 65.16 MiB 0.02 7040 -1 -1 1 0.02 -1 -1 33288 -1 -1 1 2 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 66724 2 1 3 4 1 3 4 4 4 16 i auto 26.9 MiB 0.00 7 9 0 2 7 65.2 MiB 0.00 0.00 0.55247 -0.955943 -0.55247 0.55247 0.00 1.6222e-05 1.0832e-05 0.00010458 7.8535e-05 -1 -1 -1 -1 6 3 2 215576 53894 3281.68 205.105 0.01 0.00166008 0.00157112 340 760 -1 3 2 3 3 59 19 0.569757 0.569757 -0.969092 -0.569757 0 0 4601.64 287.602 0.00 0.00 0.00 -1 -1 0.00 0.00159511 0.00154443 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +k6_N10_mem32K_40nm.xml ch_intrinsics.v common 3.73 odin 99.75 MiB 2.11 102144 -1 -1 3 0.19 -1 -1 34096 -1 -1 75 99 1 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 67636 99 130 363 493 1 253 305 13 13 169 clb auto 26.3 MiB 0.04 2273 844 74177 21541 39695 12941 66.1 MiB 0.12 0.00 2.6333 2.22949 -229.909 -2.22949 2.22949 0.10 0.000545037 0.000509709 0.0421815 0.0394416 -1 -1 -1 -1 32 1393 19 6.63067e+06 4.59005e+06 323148. 1912.12 0.22 0.112186 0.103342 11612 59521 -1 1193 22 721 1096 62496 20405 2.52707 2.52707 -230.152 -2.52707 0 0 396943. 2348.77 0.01 0.04 0.03 -1 -1 0.01 0.0263727 0.0242585 +k6_N10_mem32K_40nm.xml diffeq1.v common 5.78 odin 87.00 MiB 1.78 89088 -1 -1 15 0.28 -1 -1 34656 -1 -1 62 162 0 5 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 71816 162 96 999 932 1 663 325 16 16 256 mult_36 auto 30.1 MiB 0.14 9594 5574 90802 23938 58756 8108 70.1 MiB 0.35 0.01 24.8422 21.1611 -1910.27 -21.1611 21.1611 0.17 0.0016689 0.00156792 0.146815 0.137632 -1 -1 -1 -1 40 11068 31 1.21132e+07 5.32143e+06 612675. 2393.26 1.71 0.542302 0.504589 19892 118481 -1 8993 24 3753 8101 1142271 339586 22.091 22.091 -1952.75 -22.091 0 0 771607. 3014.09 0.02 0.24 0.06 -1 -1 0.02 0.0989663 0.0931558 +k6_N10_mem32K_40nm.xml single_wire.v common 1.85 vpr 63.42 MiB 1.35 62208 -1 -1 1 0.02 -1 -1 29676 -1 -1 0 1 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 64940 1 1 1 2 0 1 2 3 3 9 -1 auto 25.2 MiB 0.00 2 2 3 0 3 0 63.4 MiB 0.00 0.00 0.18684 0.18684 -0.18684 -0.18684 nan 0.00 6.563e-06 3.5e-06 5.6873e-05 3.8119e-05 -1 -1 -1 -1 2 1 1 53894 0 1165.58 129.509 0.00 0.000892945 0.000838657 254 297 -1 1 1 1 1 19 15 0.211201 nan -0.211201 -0.211201 0 0 1165.58 129.509 0.00 0.00 0.00 -1 -1 0.00 0.000818035 0.000790317 +k6_N10_mem32K_40nm.xml single_ff.v common 1.65 vpr 63.43 MiB 1.13 62208 -1 -1 1 0.02 -1 -1 29980 -1 -1 1 2 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 64952 2 1 3 4 1 3 4 3 3 9 -1 auto 25.2 MiB 0.00 6 6 9 5 1 3 63.4 MiB 0.00 0.00 0.55247 0.55247 -0.90831 -0.55247 0.55247 0.00 9.457e-06 6.162e-06 7.5674e-05 5.5802e-05 -1 -1 -1 -1 2 2 2 53894 53894 1165.58 129.509 0.00 0.000948394 0.000881804 254 297 -1 2 2 3 3 56 18 0.577715 0.577715 -0.9588 -0.577715 0 0 1165.58 129.509 0.00 0.00 0.00 -1 -1 0.00 0.000868136 0.00083058 +k6_N10_mem32K_40nm_i_or_o.xml ch_intrinsics.v common 4.88 odin 100.12 MiB 2.18 102528 -1 -1 3 0.21 -1 -1 34188 -1 -1 75 99 1 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 67452 99 130 363 493 1 253 305 19 19 361 o auto 26.1 MiB 0.04 3198 975 75203 18286 41793 15124 65.9 MiB 0.12 0.00 3.0814 2.23502 -240.202 -2.23502 2.23502 0.64 0.00056767 0.000530953 0.0438763 0.0412509 -1 -1 -1 -1 36 1305 22 1.79173e+07 4.59005e+06 833707. 2309.44 0.55 0.162802 0.14941 24998 161561 -1 1270 26 731 1078 66382 19258 2.55328 2.55328 -255.132 -2.55328 0 0 1.02328e+06 2834.56 0.03 0.05 0.08 -1 -1 0.03 0.0294887 0.0270957 +k6_N10_mem32K_40nm_i_or_o.xml diffeq1.v common 7.03 odin 86.62 MiB 1.78 88704 -1 -1 15 0.28 -1 -1 34628 -1 -1 62 162 0 5 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 78268 162 96 999 932 1 663 325 24 24 576 i auto 29.9 MiB 0.14 13908 6960 97504 27766 60997 8741 76.4 MiB 0.37 0.01 27.051 21.3253 -1909.99 -21.3253 21.3253 1.08 0.00180313 0.00169217 0.157695 0.147632 -1 -1 -1 -1 44 10768 25 3.08128e+07 5.32143e+06 1.60659e+06 2789.21 1.63 0.547726 0.510008 44574 325925 -1 10016 19 3329 7120 1011052 264242 21.9724 21.9724 -1931.12 -21.9724 0 0 2.07854e+06 3608.58 0.06 0.19 0.17 -1 -1 0.06 0.0798925 0.0754695 +k6_N10_mem32K_40nm_i_or_o.xml single_wire.v common 1.63 vpr 63.87 MiB 1.12 62208 -1 -1 1 0.02 -1 -1 29672 -1 -1 0 1 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65400 1 1 1 2 0 1 2 4 4 16 i auto 25.6 MiB 0.00 3 3 3 0 0 3 63.9 MiB 0.00 0.00 0.18684 0.18684 -0.18684 -0.18684 nan 0.00 6.534e-06 3.573e-06 5.5302e-05 3.705e-05 -1 -1 -1 -1 4 2 1 215576 0 2092.17 130.760 0.00 0.000882082 0.000817487 324 600 -1 2 1 1 1 17 7 0.229376 nan -0.229376 -0.229376 0 0 3281.68 205.105 0.00 0.00 0.00 -1 -1 0.00 0.000822123 0.000791877 +k6_N10_mem32K_40nm_i_or_o.xml single_ff.v common 1.69 vpr 63.77 MiB 1.15 62208 -1 -1 1 0.02 -1 -1 29988 -1 -1 1 2 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65296 2 1 3 4 1 3 4 4 4 16 i auto 24.9 MiB 0.00 7 7 9 0 2 7 63.8 MiB 0.00 0.00 0.55247 0.55247 -0.955943 -0.55247 0.55247 0.00 9.557e-06 6.18e-06 8.3767e-05 6.4375e-05 -1 -1 -1 -1 6 3 2 215576 53894 3281.68 205.105 0.00 0.00096046 0.000887599 340 760 -1 3 2 3 3 59 19 0.569757 0.569757 -0.969092 -0.569757 0 0 4601.64 287.602 0.00 0.00 0.00 -1 -1 0.00 0.000877327 0.000830252 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_bounding_box/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_bounding_box/config/golden_results.txt index a4f4578b4e4..c0c4d5fb80e 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_bounding_box/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_bounding_box/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 total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - k6_N10_mem32K_40nm.xml stereovision3.v common 2.22 vpr 66.21 MiB 0.06 10368 -1 -1 4 0.23 -1 -1 36792 -1 -1 19 11 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 67796 11 30 262 292 2 99 60 7 7 49 clb auto 27.3 MiB 0.08 485 3687 781 2795 111 66.2 MiB 0.01 0.00 -1 -1 -1 -1 -1 0 0 0 0 -1 -1 -1 -1 18 734 39 1.07788e+06 1.02399e+06 45686.6 932.380 0.65 0.239065 0.204044 2616 8308 -1 583 23 761 1801 50764 16568 2.52485 2.36559 -186.102 -2.52485 0 0 59124.6 1206.62 0.00 0.07 0.01 -1 -1 0.00 0.0486043 0.0430292 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +k6_N10_mem32K_40nm.xml stereovision3.v common 4.05 odin 167.25 MiB 2.81 171264 -1 -1 4 0.12 -1 -1 33076 -1 -1 20 11 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 67268 11 30 262 292 2 99 61 7 7 49 clb auto 25.6 MiB 0.04 688 466 3421 681 2621 119 65.7 MiB 0.00 0.00 -1 -1 -1 -1 -1 -1 0 0 0 0 -1 -1 -1 -1 18 697 29 1.07788e+06 1.07788e+06 45686.6 932.380 0.15 0.0585359 0.0490389 2616 8308 -1 557 36 1075 2921 72281 22541 2.63547 2.45943 -188.872 -2.63547 0 0 59124.6 1206.62 0.00 0.05 0.00 -1 -1 0.00 0.028993 0.0249322 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_check_route_options/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_check_route_options/config/golden_results.txt index d3b62c629ad..7b3feedaa81 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_check_route_options/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_check_route_options/config/golden_results.txt @@ -1,4 +1,4 @@ - arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - sub_tiles.xml sub_tiles.blif common_--check_route_full 14.36 vpr 58.80 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 6 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 60212 6 7 19 26 0 19 26 3 3 9 -1 auto 20.5 MiB 0.00 51 216 43 63 110 58.8 MiB 0.00 0.00 3.682 -25.774 -3.682 nan 13.10 4.6187e-05 3.8396e-05 0.000395937 0.000323618 -1 -1 -1 -1 6 19 3 14813.4 192574 -1 -1 0.12 0.00202221 0.00179313 1370 14749 -1 19 3 36 39 5813 2852 3.87729 nan -27.141 -3.87729 0 0 -1 -1 0.00 0.00 0.06 -1 -1 0.00 0.00173217 0.0016394 - sub_tiles.xml sub_tiles.blif common_--check_route_quick 16.94 vpr 58.93 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 6 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 60340 6 7 19 26 0 19 26 3 3 9 -1 auto 20.6 MiB 0.00 51 216 43 63 110 58.9 MiB 0.00 0.00 3.682 -25.774 -3.682 nan 15.28 4.6086e-05 3.7994e-05 0.000373556 0.000302701 -1 -1 -1 -1 6 19 3 14813.4 192574 -1 -1 0.13 0.00235088 0.00212378 1370 14749 -1 19 3 36 39 5813 2852 3.87729 nan -27.141 -3.87729 0 0 -1 -1 0.00 0.00 0.06 -1 -1 0.00 0.00221042 0.00197359 - sub_tiles.xml sub_tiles.blif common_--check_route_off 16.20 vpr 59.06 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 6 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 60476 6 7 19 26 0 19 26 3 3 9 -1 auto 20.7 MiB 0.00 51 216 43 63 110 59.1 MiB 0.00 0.00 3.682 -25.774 -3.682 nan 14.72 4.2295e-05 3.5105e-05 0.000363474 0.000296118 -1 -1 -1 -1 6 19 3 14813.4 192574 -1 -1 0.12 0.00229484 0.00207762 1370 14749 -1 19 3 36 39 5813 2852 3.87729 nan -27.141 -3.87729 0 0 -1 -1 0.00 0.00 0.05 -1 -1 0.00 0.00174454 0.00165562 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +sub_tiles.xml sub_tiles.blif common_--check_route_full 4.36 vpr 57.52 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 6 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 58904 6 7 19 26 0 19 26 3 3 9 -1 auto 18.7 MiB 0.00 51 51 216 43 63 110 57.5 MiB 0.00 0.00 3.92819 3.682 -25.774 -3.682 nan 3.68 2.1665e-05 1.7518e-05 0.000208626 0.000167637 -1 -1 -1 -1 6 19 3 14813.4 192574 -1 -1 0.06 0.00147674 0.00134179 1370 14749 -1 19 3 36 39 5813 2852 3.87729 nan -27.141 -3.87729 0 0 -1 -1 0.00 0.00 0.02 -1 -1 0.00 0.00098867 0.000928688 +sub_tiles.xml sub_tiles.blif common_--check_route_quick 4.36 vpr 57.70 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 6 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 59084 6 7 19 26 0 19 26 3 3 9 -1 auto 18.9 MiB 0.00 51 51 216 43 63 110 57.7 MiB 0.00 0.00 3.92819 3.682 -25.774 -3.682 nan 3.66 2.2092e-05 1.7777e-05 0.00021225 0.000170395 -1 -1 -1 -1 6 19 3 14813.4 192574 -1 -1 0.06 0.00147126 0.00133195 1370 14749 -1 19 3 36 39 5813 2852 3.87729 nan -27.141 -3.87729 0 0 -1 -1 0.00 0.00 0.03 -1 -1 0.00 0.00102901 0.000969282 +sub_tiles.xml sub_tiles.blif common_--check_route_off 4.38 vpr 57.53 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 6 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 58908 6 7 19 26 0 19 26 3 3 9 -1 auto 18.9 MiB 0.00 51 51 216 43 63 110 57.5 MiB 0.00 0.00 3.92819 3.682 -25.774 -3.682 nan 3.68 2.1964e-05 1.7853e-05 0.000215424 0.000174304 -1 -1 -1 -1 6 19 3 14813.4 192574 -1 -1 0.06 0.00138082 0.00125409 1370 14749 -1 19 3 36 39 5813 2852 3.87729 nan -27.141 -3.87729 0 0 -1 -1 0.00 0.00 0.02 -1 -1 0.00 0.00102124 0.000958615 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 7b6b29fbf31..a0b1d2547f9 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 ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time num_le num_luts num_add_blocks max_add_chain_length num_sub_blocks max_sub_chain_length - k6_frac_N10_4add_2chains_tie_off_depop50_mem20K_22nm.xml mult_4x4.v common 1.50 vpr 66.18 MiB 0.01 6912 -1 -1 1 0.03 -1 -1 33524 -1 -1 3 9 0 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 67768 9 8 71 66 1 35 20 5 5 25 clb auto 27.2 MiB 0.61 102 641 211 420 10 66.2 MiB 0.01 0.00 2.52843 -27.3721 -2.52843 2.52843 0.02 0.000162932 0.000142933 0.00487777 0.00439017 -1 -1 -1 -1 32 152 12 151211 75605.7 43252.0 1730.08 0.15 0.05219 0.0443549 2004 6761 -1 170 13 131 173 5906 3259 2.68643 2.68643 -34.5837 -2.68643 0 0 52324.5 2092.98 0.00 0.01 0.01 -1 -1 0.00 0.00766663 0.00704697 14 17 16 6 0 0 - k6_frac_N10_4add_2chains_tie_off_depop50_mem20K_22nm.xml mult_9x9.v common 6.42 vpr 67.07 MiB 0.01 6912 -1 -1 1 0.04 -1 -1 33628 -1 -1 8 19 0 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 68680 19 18 299 240 1 146 45 6 6 36 clb auto 27.6 MiB 4.94 477 2365 468 1860 37 67.1 MiB 0.04 0.00 4.92757 -99.6523 -4.92757 4.92757 0.05 0.000316619 0.0002807 0.0196432 0.0179661 -1 -1 -1 -1 54 1052 25 403230 201615 113905. 3164.04 0.53 0.17427 0.152991 4050 20995 -1 792 24 850 1349 48852 19559 4.89358 4.89358 -108.576 -4.89358 0 0 146644. 4073.44 0.00 0.05 0.03 -1 -1 0.00 0.0285954 0.0259387 62 82 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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time num_le num_luts num_add_blocks max_add_chain_length num_sub_blocks max_sub_chain_length +k6_frac_N10_4add_2chains_tie_off_depop50_mem20K_22nm.xml mult_4x4.v common 2.21 vpr 64.45 MiB 1.16 63360 -1 -1 1 0.02 -1 -1 30140 -1 -1 3 9 0 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65996 9 8 71 66 1 36 20 5 5 25 clb auto 25.1 MiB 0.31 137 104 641 234 396 11 64.4 MiB 0.01 0.00 2.52843 2.52843 -27.3563 -2.52843 2.52843 0.01 8.3886e-05 7.5678e-05 0.00287988 0.00265606 -1 -1 -1 -1 36 198 14 151211 75605.7 46719.2 1868.77 0.06 0.0208895 0.0176785 2052 7582 -1 134 10 105 135 3075 1640 2.65565 2.65565 -30.2407 -2.65565 0 0 57775.2 2311.01 0.00 0.01 0.00 -1 -1 0.00 0.00421623 0.00386847 14 17 16 6 0 0 +k6_frac_N10_4add_2chains_tie_off_depop50_mem20K_22nm.xml mult_9x9.v common 4.88 vpr 65.83 MiB 1.29 66048 -1 -1 1 0.03 -1 -1 30508 -1 -1 8 19 0 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 67412 19 18 299 240 1 146 45 6 6 36 clb auto 26.5 MiB 2.57 653 478 2685 571 2068 46 65.8 MiB 0.02 0.00 4.89372 4.92757 -99.729 -4.92757 4.92757 0.02 0.000299081 0.00027449 0.0126207 0.0117249 -1 -1 -1 -1 54 1009 23 403230 201615 113905. 3164.04 0.18 0.0769279 0.0673934 4050 20995 -1 757 20 679 1069 35690 14737 4.92407 4.92407 -104.302 -4.92407 0 0 146644. 4073.44 0.00 0.03 0.01 -1 -1 0.00 0.0173043 0.0158511 62 82 85 13 0 0 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_clock_aliases/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_clock_aliases/config/golden_results.txt index 82e16e68c58..545c792005d 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_clock_aliases/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_clock_aliases/config/golden_results.txt @@ -1,4 +1,4 @@ - arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - timing/k6_N10_40nm.xml clock_aliases.blif common_-sdc_file_sdc/samples/clock_aliases/clk.sdc 0.35 vpr 59.81 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 4 1 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 61244 1 4 28 32 2 10 9 4 4 16 clb auto 21.2 MiB 0.01 21 27 10 10 7 59.8 MiB 0.00 0.00 2.44626 0 0 2.44626 0.01 7.9876e-05 6.8917e-05 0.000564474 0.000511898 -1 -1 -1 -1 8 11 5 72000 72000 5593.62 349.601 0.02 0.00933145 0.00790294 672 1128 -1 21 6 21 21 561 284 2.37141 2.37141 0 0 0 0 6492.02 405.751 0.00 0.00 0.00 -1 -1 0.00 0.0020437 0.00190467 - timing/k6_N10_40nm.xml clock_aliases.blif common_-sdc_file_sdc/samples/clock_aliases/clk_assign.sdc 0.33 vpr 60.00 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 4 1 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 61444 1 4 28 32 2 10 9 4 4 16 clb auto 21.5 MiB 0.01 21 27 10 10 7 60.0 MiB 0.00 0.00 2.44626 0 0 2.44626 0.01 9.3379e-05 8.2596e-05 0.000566541 0.000512464 -1 -1 -1 -1 8 11 5 72000 72000 5593.62 349.601 0.02 0.00867291 0.00731794 672 1128 -1 21 6 21 21 561 284 2.37141 2.37141 0 0 0 0 6492.02 405.751 0.00 0.00 0.00 -1 -1 0.00 0.00253268 0.00233063 - timing/k6_N10_40nm.xml clock_aliases.blif common_-sdc_file_sdc/samples/clock_aliases/counter_clk.sdc 0.35 vpr 59.83 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 4 1 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 61264 1 4 28 32 2 10 9 4 4 16 clb auto 21.4 MiB 0.01 21 27 10 10 7 59.8 MiB 0.00 0.00 2.44626 0 0 2.44626 0.01 7.8562e-05 6.7163e-05 0.000561289 0.000507136 -1 -1 -1 -1 8 11 5 72000 72000 5593.62 349.601 0.02 0.00963983 0.0081025 672 1128 -1 21 6 21 21 561 284 2.37141 2.37141 0 0 0 0 6492.02 405.751 0.00 0.00 0.00 -1 -1 0.00 0.00296634 0.00273132 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +timing/k6_N10_40nm.xml clock_aliases.blif common_-sdc_file_sdc/samples/clock_aliases/clk.sdc 0.30 vpr 58.46 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 4 1 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 59868 1 4 28 32 2 10 9 4 4 16 clb auto 20.0 MiB 0.01 22 21 27 10 10 7 58.5 MiB 0.00 0.00 2.44626 2.44626 0 0 2.44626 0.00 4.1534e-05 3.5999e-05 0.000369868 0.000335443 -1 -1 -1 -1 8 11 5 72000 72000 5593.62 349.601 0.02 0.00499499 0.00420054 672 1128 -1 21 6 21 21 561 284 2.37141 2.37141 0 0 0 0 6492.02 405.751 0.00 0.00 0.00 -1 -1 0.00 0.0016791 0.00155334 +timing/k6_N10_40nm.xml clock_aliases.blif common_-sdc_file_sdc/samples/clock_aliases/clk_assign.sdc 0.31 vpr 58.47 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 4 1 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 59872 1 4 28 32 2 10 9 4 4 16 clb auto 19.8 MiB 0.00 22 21 27 10 10 7 58.5 MiB 0.00 0.00 2.44626 2.44626 0 0 2.44626 0.00 4.9315e-05 4.3528e-05 0.00035389 0.000323547 -1 -1 -1 -1 8 11 5 72000 72000 5593.62 349.601 0.02 0.0051196 0.00430647 672 1128 -1 21 6 21 21 561 284 2.37141 2.37141 0 0 0 0 6492.02 405.751 0.00 0.00 0.00 -1 -1 0.00 0.00175992 0.00162646 +timing/k6_N10_40nm.xml clock_aliases.blif common_-sdc_file_sdc/samples/clock_aliases/counter_clk.sdc 0.30 vpr 58.46 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 4 1 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 59868 1 4 28 32 2 10 9 4 4 16 clb auto 20.0 MiB 0.00 22 21 27 10 10 7 58.5 MiB 0.00 0.00 2.44626 2.44626 0 0 2.44626 0.00 4.6269e-05 3.5157e-05 0.000348083 0.000313527 -1 -1 -1 -1 8 11 5 72000 72000 5593.62 349.601 0.02 0.00483693 0.00405856 672 1128 -1 21 6 21 21 561 284 2.37141 2.37141 0 0 0 0 6492.02 405.751 0.00 0.00 0.00 -1 -1 0.00 0.0016602 0.0015331 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_clock_aliases_set_delay/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_clock_aliases_set_delay/config/golden_results.txt index 17671e26cfa..6445c2b0e4d 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_clock_aliases_set_delay/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_clock_aliases_set_delay/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 total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - timing/k6_N10_40nm.xml clock_set_delay_aliases.blif common_-sdc_file_sdc/samples/clock_aliases/set_delay.sdc 0.35 vpr 59.66 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 2 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 61088 2 2 22 24 2 4 6 4 4 16 clb auto 21.2 MiB 0.01 8 15 5 7 3 59.7 MiB 0.00 0.00 1.297 0 0 1.297 0.01 6.7393e-05 5.6956e-05 0.000402551 0.000351966 -1 -1 -1 -1 6 12 3 72000 36000 4025.56 251.598 0.01 0.00291274 0.00268287 660 1032 -1 15 4 8 8 644 530 1.297 1.297 0 0 0 0 5593.62 349.601 0.00 0.00 0.00 -1 -1 0.00 0.00264613 0.00228889 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +timing/k6_N10_40nm.xml clock_set_delay_aliases.blif common_-sdc_file_sdc/samples/clock_aliases/set_delay.sdc 0.29 vpr 58.17 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 2 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 59568 2 2 22 24 2 4 6 4 4 16 clb auto 19.8 MiB 0.00 8 8 15 5 7 3 58.2 MiB 0.00 0.00 1.297 1.297 0 0 1.297 0.00 3.2501e-05 2.7243e-05 0.000238975 0.000209911 -1 -1 -1 -1 6 12 3 72000 36000 4025.56 251.598 0.00 0.00178494 0.00164738 660 1032 -1 15 4 8 8 644 530 1.297 1.297 0 0 0 0 5593.62 349.601 0.00 0.00 0.00 -1 -1 0.00 0.00133399 0.0012414 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_clock_buf/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_clock_buf/config/golden_results.txt index 55f3e1dd3ba..b7e6584d848 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_clock_buf/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_clock_buf/config/golden_results.txt @@ -1,2 +1,2 @@ - arch circuit script_params crit_path_delay_mcw clk_to_clk_cpd clk_to_clk2_cpd clk_to_input_cpd clk_to_output_cpd clk2_to_clk2_cpd clk2_to_clk_cpd clk2_to_input_cpd clk2_to_output_cpd input_to_input_cpd input_to_clk_cpd input_to_clk2_cpd input_to_output_cpd output_to_output_cpd output_to_clk_cpd output_to_clk2_cpd output_to_input_cpd clk_to_clk_setup_slack clk_to_clk2_setup_slack clk_to_input_setup_slack clk_to_output_setup_slack clk2_to_clk2_setup_slack clk2_to_clk_setup_slack clk2_to_input_setup_slack clk2_to_output_setup_slack input_to_input_setup_slack input_to_clk_setup_slack input_to_clk2_setup_slack input_to_output_setup_slack output_to_output_setup_slack output_to_clk_setup_slack output_to_clk2_setup_slack output_to_input_setup_slack clk_to_clk_hold_slack clk_to_clk2_hold_slack clk_to_input_hold_slack clk_to_output_hold_slack clk2_to_clk2_hold_slack clk2_to_clk_hold_slack clk2_to_input_hold_slack clk2_to_output_hold_slack input_to_input_hold_slack input_to_clk_hold_slack input_to_clk2_hold_slack input_to_output_hold_slack output_to_output_hold_slack output_to_clk_hold_slack output_to_clk2_hold_slack output_to_input_hold_slack - k6_frac_N10_mem32K_40nm_clk_buf.xml multiclock_buf.blif common 1.69449 0.545 -1 -1 -1 0.545 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0.293 -1 -1 -1 0.293 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +arch circuit script_params crit_path_delay_mcw clk_to_clk_cpd clk_to_clk2_cpd clk_to_input_cpd clk_to_output_cpd clk2_to_clk2_cpd clk2_to_clk_cpd clk2_to_input_cpd clk2_to_output_cpd input_to_input_cpd input_to_clk_cpd input_to_clk2_cpd input_to_output_cpd output_to_output_cpd output_to_clk_cpd output_to_clk2_cpd output_to_input_cpd clk_to_clk_setup_slack clk_to_clk2_setup_slack clk_to_input_setup_slack clk_to_output_setup_slack clk2_to_clk2_setup_slack clk2_to_clk_setup_slack clk2_to_input_setup_slack clk2_to_output_setup_slack input_to_input_setup_slack input_to_clk_setup_slack input_to_clk2_setup_slack input_to_output_setup_slack output_to_output_setup_slack output_to_clk_setup_slack output_to_clk2_setup_slack output_to_input_setup_slack clk_to_clk_hold_slack clk_to_clk2_hold_slack clk_to_input_hold_slack clk_to_output_hold_slack clk2_to_clk2_hold_slack clk2_to_clk_hold_slack clk2_to_input_hold_slack clk2_to_output_hold_slack input_to_input_hold_slack input_to_clk_hold_slack input_to_clk2_hold_slack input_to_output_hold_slack output_to_output_hold_slack output_to_clk_hold_slack output_to_clk2_hold_slack output_to_input_hold_slack +k6_frac_N10_mem32K_40nm_clk_buf.xml multiclock_buf.blif common 1.69449 0.545 -1 -1 -1 0.545 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0.293 -1 -1 -1 0.293 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_clock_modeling/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_clock_modeling/config/golden_results.txt index c54c9279c53..cf139e11ffa 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 ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time num_global_nets num_routed_nets - timing/k6_N10_40nm.xml microbenchmarks/d_flip_flop.v common_-start_odin_--clock_modeling_ideal_--route_chan_width_60 0.26 vpr 59.67 MiB 0.00 6912 -1 -1 1 0.02 -1 -1 33484 -1 -1 1 2 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 61100 2 1 3 4 1 3 4 3 3 9 -1 auto 21.4 MiB 0.00 6 9 3 5 1 59.7 MiB 0.00 0.00 0.55447 -0.91031 -0.55447 0.55447 0.00 1.4271e-05 9.019e-06 0.000105429 7.7044e-05 -1 -1 -1 -1 -1 2 4 18000 18000 14049.7 1561.07 0.00 0.00167801 0.00157995 -1 -1 -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.26 vpr 59.67 MiB 0.00 6912 -1 -1 1 0.02 -1 -1 33216 -1 -1 1 2 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 61100 2 1 3 4 1 3 4 3 3 9 -1 auto 21.4 MiB 0.00 9 9 3 3 3 59.7 MiB 0.00 0.00 0.48631 -0.91031 -0.48631 0.48631 0.00 1.5585e-05 1.0104e-05 0.000105029 7.6023e-05 -1 -1 -1 -1 -1 4 3 18000 18000 15707.9 1745.32 0.00 0.00153942 0.00144868 -1 -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.33 abc 63.01 MiB 0.24 59520 -1 -1 2 1.56 -1 -1 64520 -1 -1 155 5 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 63024 5 156 191 347 1 163 316 15 15 225 clb auto 22.0 MiB 0.04 29 82016 58904 3157 19955 61.5 MiB 0.15 0.00 1.49664 -15.1312 -1.49664 1.49664 0.00 0.000408132 0.000370067 0.0341355 0.031078 -1 -1 -1 -1 -1 32 6 3.042e+06 2.79e+06 863192. 3836.41 0.01 0.0428942 0.0391583 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 154 9 - timing/k6_N10_40nm.xml verilog/mkPktMerge.v common_-start_odin_--clock_modeling_route_--route_chan_width_60 4.51 abc 63.14 MiB 0.34 59776 -1 -1 2 1.51 -1 -1 64652 -1 -1 155 5 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 63260 5 156 191 347 1 163 316 15 15 225 clb auto 22.2 MiB 0.02 41 76641 54775 3226 18640 61.8 MiB 0.14 0.00 1.49775 -14.6172 -1.49775 1.49775 0.00 0.000395712 0.000358237 0.0299271 0.0269791 -1 -1 -1 -1 -1 63 5 3.042e+06 2.79e+06 892591. 3967.07 0.01 0.0377601 0.0341837 -1 -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.33 vpr 65.29 MiB 0.01 7040 -1 -1 1 0.03 -1 -1 33412 -1 -1 1 2 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 66856 2 1 3 4 1 3 4 3 3 9 -1 auto 26.8 MiB 0.00 6 9 3 5 1 65.3 MiB 0.00 0.00 0.55247 -0.90831 -0.55247 0.55247 0.00 1.5615e-05 1.0606e-05 0.000109326 8.0241e-05 -1 -1 -1 -1 -1 2 3 53894 53894 12370.0 1374.45 0.00 0.00165784 0.00156601 -1 -1 -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.25 vpr 65.38 MiB 0.01 7040 -1 -1 1 0.02 -1 -1 33208 -1 -1 1 2 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 66952 2 1 3 4 1 3 4 3 3 9 -1 auto 27.1 MiB 0.00 9 9 3 3 3 65.4 MiB 0.00 0.00 0.48631 -0.90831 -0.48631 0.48631 0.00 1.6671e-05 1.1297e-05 0.000111494 8.1284e-05 -1 -1 -1 -1 -1 4 2 53894 53894 14028.3 1558.70 0.00 0.00178932 0.0017001 -1 -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 4.46 vpr 71.98 MiB 0.15 16896 -1 -1 2 0.16 -1 -1 37600 -1 -1 43 311 15 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 73704 311 156 972 1128 1 953 525 28 28 784 memory auto 32.4 MiB 0.58 8394 210108 78030 120895 11183 72.0 MiB 1.33 0.02 3.90475 -4339.03 -3.90475 3.90475 0.00 0.00537924 0.00456001 0.565099 0.476317 -1 -1 -1 -1 -1 12247 12 4.25198e+07 1.05374e+07 2.96205e+06 3778.13 0.38 0.731735 0.628685 -1 -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 4.57 vpr 72.21 MiB 0.16 17152 -1 -1 2 0.16 -1 -1 37596 -1 -1 43 311 15 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 73948 311 156 972 1128 1 953 525 28 28 784 memory auto 32.4 MiB 0.52 9639 203757 70988 121974 10795 72.2 MiB 1.36 0.02 4.05379 -3834.49 -4.05379 4.05379 0.00 0.00624609 0.00547423 0.627089 0.535493 -1 -1 -1 -1 -1 13797 11 4.25198e+07 1.05374e+07 3.02951e+06 3864.17 0.48 0.824983 0.713955 -1 -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 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time num_global_nets num_routed_nets +timing/k6_N10_40nm.xml microbenchmarks/d_flip_flop.v common_-start_odin_--clock_modeling_ideal_--route_chan_width_60 0.40 vpr 58.26 MiB 0.08 45312 -1 -1 1 0.02 -1 -1 29944 -1 -1 1 2 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 59656 2 1 3 4 1 3 4 3 3 9 -1 auto 19.5 MiB 0.00 6 6 9 3 5 1 58.3 MiB 0.00 0.00 0.55447 0.55447 -0.91031 -0.55447 0.55447 0.00 9.136e-06 5.869e-06 7.1791e-05 5.3179e-05 -1 -1 -1 -1 -1 2 4 18000 18000 14049.7 1561.07 0.00 0.00118302 0.00110755 -1 -1 -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.41 vpr 58.25 MiB 0.08 45312 -1 -1 1 0.02 -1 -1 29640 -1 -1 1 2 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 59652 2 1 3 4 1 3 4 3 3 9 -1 auto 20.0 MiB 0.00 9 9 9 3 3 3 58.3 MiB 0.00 0.00 0.56425 0.48631 -0.91031 -0.48631 0.48631 0.00 9.58e-06 5.86e-06 7.4441e-05 5.4651e-05 -1 -1 -1 -1 -1 4 3 18000 18000 15707.9 1745.32 0.00 0.001162 0.00108609 -1 -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 10.50 odin 789.80 MiB 7.89 808752 -1 -1 2 0.86 -1 -1 50628 -1 -1 155 5 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 62228 5 156 191 347 1 163 316 15 15 225 clb auto 21.0 MiB 0.02 118 29 82016 59012 3139 19865 60.8 MiB 0.07 0.00 1.99335 1.49664 -15.1312 -1.49664 1.49664 0.00 0.000220093 0.000206488 0.0175726 0.0164762 -1 -1 -1 -1 -1 32 6 3.042e+06 2.79e+06 863192. 3836.41 0.01 0.0225735 0.0211146 -1 -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 10.56 odin 789.05 MiB 7.83 807988 -1 -1 2 0.87 -1 -1 50628 -1 -1 155 5 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 62228 5 156 191 347 1 163 316 15 15 225 clb auto 21.0 MiB 0.02 126 33 76641 54911 3193 18537 60.8 MiB 0.06 0.00 1.66097 1.47673 -14.6018 -1.47673 1.47673 0.00 0.000216751 0.000203309 0.016441 0.0153792 -1 -1 -1 -1 -1 47 5 3.042e+06 2.79e+06 892591. 3967.07 0.01 0.0210131 0.0196249 -1 -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 1.51 vpr 63.88 MiB 1.14 62208 -1 -1 1 0.02 -1 -1 29976 -1 -1 1 2 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65408 2 1 3 4 1 3 4 3 3 9 -1 auto 25.3 MiB 0.00 6 6 9 3 5 1 63.9 MiB 0.00 0.00 0.55247 0.55247 -0.90831 -0.55247 0.55247 0.00 9.181e-06 5.927e-06 7.6264e-05 5.5982e-05 -1 -1 -1 -1 -1 2 3 53894 53894 12370.0 1374.45 0.00 0.00095459 0.000884928 -1 -1 -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 1.51 vpr 63.88 MiB 1.14 62208 -1 -1 1 0.02 -1 -1 30008 -1 -1 1 2 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65408 2 1 3 4 1 3 4 3 3 9 -1 auto 25.6 MiB 0.00 9 9 9 3 3 3 63.9 MiB 0.00 0.00 0.56425 0.48631 -0.90831 -0.48631 0.48631 0.00 1.0512e-05 6.419e-06 7.8418e-05 5.706e-05 -1 -1 -1 -1 -1 4 2 53894 53894 14028.3 1558.70 0.00 0.000974856 0.000905471 -1 -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 7.23 odin 619.65 MiB 5.01 634520 -1 -1 2 0.08 -1 -1 35196 -1 -1 43 311 15 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 73164 311 156 972 1128 1 953 525 28 28 784 memory auto 32.0 MiB 0.26 18730 8256 201640 71067 119264 11309 71.4 MiB 0.55 0.01 4.8206 3.69209 -4283.73 -3.69209 3.69209 0.00 0.00248503 0.00221098 0.252544 0.224143 -1 -1 -1 -1 -1 12173 14 4.25198e+07 1.05374e+07 2.96205e+06 3778.13 0.19 0.35082 0.314831 -1 -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 7.11 odin 620.36 MiB 4.85 635252 -1 -1 2 0.08 -1 -1 35200 -1 -1 43 311 15 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 73164 311 156 972 1128 1 953 525 28 28 784 memory auto 32.4 MiB 0.26 19537 8661 201640 66024 123894 11722 71.4 MiB 0.54 0.01 4.71974 3.76482 -3710.64 -3.76482 3.76482 0.00 0.00245698 0.00217799 0.245651 0.216211 -1 -1 -1 -1 -1 12504 13 4.25198e+07 1.05374e+07 3.02951e+06 3864.17 0.20 0.340896 0.304187 -1 -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_clock_pll/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_clock_pll/config/golden_results.txt index 270c7d97d80..a7e3857a45b 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_clock_pll/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_clock_pll/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 ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_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 - k6_frac_N10_mem32K_40nm_clk_pll_valid.xml multiclock_buf.blif common 0.68 vpr 66.20 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 4 8 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 67792 8 4 25 28 5 19 19 6 6 36 clb auto 27.9 MiB 0.43 51 194 39 119 36 66.2 MiB 0.00 0.00 1.41795 -5.85435 -1.41795 0.545 0.00 6.5511e-05 4.9348e-05 0.000956967 0.000802791 -1 -1 -1 -1 86 6.14286 35 2.50000 16 16 675 275 431152 215576 56755.0 1576.53 2 2184 7490 -1 1.6578 0.545 -6.7903 -1.6578 -0.42675 -0.369747 0.01 -1 -1 66.2 MiB 0.00 0.00312006 0.00280809 66.2 MiB -1 0.01 - k6_frac_N10_mem32K_40nm_clk_pll_invalid.xml multiclock_buf.blif common 0.03 vpr 20.92 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 exited with return code 1 v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 21424 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time 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 +k6_frac_N10_mem32K_40nm_clk_pll_valid.xml multiclock_buf.blif common 0.33 vpr 64.66 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 4 8 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66216 8 4 25 28 5 19 19 6 6 36 clb auto 26.0 MiB 0.16 73 51 194 39 119 36 64.7 MiB 0.00 0.00 1.51369 1.41795 -5.85435 -1.41795 0.545 0.00 3.3733e-05 2.5958e-05 0.000434238 0.000352095 -1 -1 -1 -1 86 6.14286 35 2.50000 16 16 673 275 431152 215576 56755.0 1576.53 2 2184 7490 -1 1.6578 0.545 -6.7903 -1.6578 -0.42675 -0.369747 0.00 -1 -1 64.7 MiB 0.00 0.0016542 0.00148021 64.7 MiB -1 0.00 +k6_frac_N10_mem32K_40nm_clk_pll_invalid.xml multiclock_buf.blif common 0.04 vpr 18.52 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 exited with return code 1 v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 18960 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -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_strong_odin/strong_constant_outputs/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_constant_outputs/config/golden_results.txt index a8229d3cc5f..fe67fdd70e7 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_constant_outputs/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_constant_outputs/config/golden_results.txt @@ -1,2 +1,2 @@ - arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - k6_N10_mem32K_40nm.xml constant_outputs_only.blif common 0.39 vpr 65.29 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 0 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 66856 -1 2 2 4 0 2 4 4 4 16 clb auto 27.0 MiB 0.00 0 9 0 2 7 65.3 MiB 0.00 0.00 nan 0 0 nan 0.01 1.324e-05 7.342e-06 8.3458e-05 5.501e-05 -1 -1 -1 -1 2 0 1 107788 107788 1342.00 83.8749 0.00 0.00154065 0.00146112 504 462 -1 0 1 0 0 0 0 nan nan 0 0 0 0 1342.00 83.8749 0.00 0.00 0.00 -1 -1 0.00 0.00148898 0.00145049 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +k6_N10_mem32K_40nm.xml constant_outputs_only.blif common 0.31 vpr 63.18 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 0 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 64696 -1 2 2 4 0 2 4 4 4 16 clb auto 24.6 MiB 0.00 0 0 9 0 2 7 63.2 MiB 0.00 0.00 nan nan 0 0 nan 0.00 8.207e-06 4.305e-06 6.3919e-05 4.1976e-05 -1 -1 -1 -1 2 0 1 107788 107788 1342.00 83.8749 0.00 0.000882294 0.00082251 504 462 -1 0 1 0 0 0 0 nan nan 0 0 0 0 1342.00 83.8749 0.00 0.00 0.00 -1 -1 0.00 0.000867933 0.000836225 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_custom_grid/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_custom_grid/config/golden_results.txt index dedf8b436ab..2f44136a1bd 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_custom_grid/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_custom_grid/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 ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - fixed_grid.xml raygentop.v common 22.04 vpr 87.12 MiB 0.37 32000 -1 -1 3 1.37 -1 -1 43832 -1 -1 123 214 0 8 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 89216 214 305 2963 2869 1 1444 650 25 25 625 -1 25x25 45.9 MiB 3.49 12196 290492 92452 176193 21847 87.1 MiB 1.73 0.04 4.70145 -2687.49 -4.70145 4.70145 0.77 0.009062 0.00821446 0.664489 0.598586 -1 -1 -1 -1 50 24072 42 3.19446e+07 9.79696e+06 2.03477e+06 3255.63 9.38 3.04543 2.74886 65619 409230 -1 20090 15 5518 12429 1427524 369655 4.84691 4.84691 -2936.69 -4.84691 0 0 2.61863e+06 4189.80 0.13 0.72 0.40 -1 -1 0.13 0.405468 0.382168 - column_io.xml raygentop.v common 30.34 vpr 87.28 MiB 0.43 32000 -1 -1 3 1.83 -1 -1 43888 -1 -1 123 214 0 8 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 89376 214 305 2963 2869 1 1444 650 25 25 625 io auto 46.2 MiB 3.96 11325 239840 77339 132443 30058 87.3 MiB 2.09 0.03 4.40936 -2625.55 -4.40936 4.40936 1.20 0.0090281 0.0081843 0.836879 0.749323 -1 -1 -1 -1 48 24462 25 2.82259e+07 9.79696e+06 1.82181e+06 2914.90 14.53 3.9566 3.54503 57888 355703 -1 20518 17 5996 13599 1716937 426068 4.7409 4.7409 -2939.5 -4.7409 0 0 2.33544e+06 3736.71 0.17 0.92 0.52 -1 -1 0.17 0.442866 0.410518 - multiwidth_blocks.xml raygentop.v common 23.34 vpr 87.11 MiB 0.46 32000 -1 -1 3 1.66 -1 -1 43932 -1 -1 123 214 0 8 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 89196 214 305 2963 2869 1 1444 650 19 19 361 io clb auto 45.9 MiB 4.70 10825 234212 78128 135288 20796 87.1 MiB 2.20 0.03 4.45499 -2656.92 -4.45499 4.45499 0.58 0.00914429 0.00826611 0.84541 0.761865 -1 -1 -1 -1 60 22314 37 1.65001e+07 9.79696e+06 1.13508e+06 3144.28 8.15 3.5171 3.1499 34801 210837 -1 18718 16 6372 15066 2125910 636768 4.83864 4.83864 -2933.88 -4.83864 0 0 1.43369e+06 3971.44 0.09 1.02 0.34 -1 -1 0.09 0.423489 0.392785 - non_column.xml raygentop.v common 50.57 vpr 101.43 MiB 0.57 32128 -1 -1 3 1.64 -1 -1 43688 -1 -1 123 214 0 8 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 103864 214 305 2963 2869 1 1444 650 33 33 1089 io auto 47.6 MiB 3.38 13852 267980 91761 149229 26990 98.5 MiB 2.25 0.03 4.81737 -2748.68 -4.81737 4.81737 2.25 0.00871345 0.00790536 0.883704 0.789723 -1 -1 -1 -1 46 27889 41 5.44432e+07 9.79696e+06 2.87196e+06 2637.24 31.91 4.82411 4.34906 94862 558952 -1 23226 19 7179 17098 2136481 565014 5.00295 5.00295 -3094.61 -5.00295 0 0 3.68462e+06 3383.49 0.29 1.11 0.95 -1 -1 0.29 0.492691 0.457205 - non_column_tall_aspect_ratio.xml raygentop.v common 41.13 vpr 107.46 MiB 0.65 32128 -1 -1 3 2.07 -1 -1 43888 -1 -1 123 214 0 8 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 110040 214 305 2963 2869 1 1444 650 23 46 1058 io auto 47.5 MiB 4.75 12924 225770 77986 115287 32497 98.0 MiB 1.99 0.02 4.68258 -2746.61 -4.68258 4.68258 2.17 0.00617553 0.00548634 0.751525 0.668955 -1 -1 -1 -1 50 24702 35 5.05849e+07 9.79696e+06 3.07243e+06 2904.00 20.48 4.80846 4.28853 95149 595581 -1 21346 17 5714 12751 1591343 424414 4.99583 4.99583 -3024.29 -4.99583 0 0 3.91054e+06 3696.17 0.39 1.00 1.06 -1 -1 0.39 0.462953 0.424532 - non_column_wide_aspect_ratio.xml raygentop.v common 40.58 vpr 101.39 MiB 0.68 32000 -1 -1 3 1.80 -1 -1 43696 -1 -1 123 214 0 8 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 103820 214 305 2963 2869 1 1444 650 43 22 946 io auto 47.4 MiB 4.77 13982 276422 90498 164087 21837 95.1 MiB 2.48 0.03 4.68152 -2857.71 -4.68152 4.68152 2.06 0.0081203 0.0072676 0.94579 0.847056 -1 -1 -1 -1 50 26296 34 4.55909e+07 9.79696e+06 2.70028e+06 2854.41 19.21 5.11489 4.60481 84704 520009 -1 22872 18 6244 14195 1614167 427447 4.86473 4.86473 -3155.96 -4.86473 0 0 3.44953e+06 3646.44 0.30 1.16 1.00 -1 -1 0.30 0.501153 0.460019 - custom_sbloc.xml raygentop.v common 25.95 vpr 86.98 MiB 0.39 32000 -1 -1 3 1.58 -1 -1 43804 -1 -1 123 214 0 8 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 89072 214 305 2963 2869 1 1444 650 19 19 361 io clb auto 45.8 MiB 4.86 11696 245468 82823 140883 21762 87.0 MiB 2.50 0.04 4.53013 -2681.39 -4.53013 4.53013 0.61 0.00909806 0.00824441 0.931511 0.836258 -1 -1 -1 -1 62 22622 49 1.65001e+07 9.79696e+06 1.15634e+06 3203.15 10.71 4.10582 3.71488 35161 219597 -1 19429 17 6137 14618 1898349 506769 4.83748 4.83748 -2977.52 -4.83748 0 0 1.43990e+06 3988.64 0.05 0.92 0.41 -1 -1 0.05 0.399467 0.368878 - multiple_io_types.xml raygentop.v common 148.40 vpr 474.05 MiB 0.38 31872 -1 -1 3 1.46 -1 -1 43604 -1 -1 123 214 0 8 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 485424 214 305 2963 2869 1 1444 650 67 67 4489 io_left auto 46.2 MiB 5.36 26050 90698 4115 22648 63935 474.0 MiB 0.95 0.03 4.73667 -3563.79 -4.73667 4.73667 26.71 0.00792183 0.00702959 0.36772 0.321766 -1 -1 -1 -1 52 41451 45 2.48753e+08 9.79696e+06 1.27607e+07 2842.65 95.91 4.21007 3.80326 406473 2447650 -1 35770 21 7664 17455 3505363 891802 5.27395 5.27395 -3927.86 -5.27395 0 0 1.67786e+07 3737.72 0.99 1.06 2.69 -1 -1 0.99 0.318577 0.29589 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +fixed_grid.xml raygentop.v common 21.99 odin 1.52 GiB 10.24 1591816 -1 -1 3 0.83 -1 -1 40304 -1 -1 123 214 0 8 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 88816 214 305 2963 2869 1 1441 650 25 25 625 -1 25x25 46.7 MiB 2.18 25402 12254 282050 88602 172367 21081 86.7 MiB 0.99 0.01 5.35403 4.41932 -2744.04 -4.41932 4.41932 0.47 0.00359037 0.00330877 0.395607 0.36374 -1 -1 -1 -1 48 24508 46 3.19446e+07 9.79696e+06 1.97188e+06 3155.02 3.94 1.43281 1.32186 64995 397836 -1 20934 15 5849 13951 1555077 389423 4.73647 4.73647 -2992.8 -4.73647 0 0 2.52596e+06 4041.53 0.08 0.37 0.21 -1 -1 0.08 0.18958 0.180028 +column_io.xml raygentop.v common 22.07 odin 1.52 GiB 10.19 1592260 -1 -1 3 0.83 -1 -1 39704 -1 -1 123 214 0 8 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 88780 214 305 2963 2869 1 1441 650 25 25 625 io auto 46.3 MiB 2.17 25737 12044 245468 82104 140823 22541 86.7 MiB 0.89 0.01 5.96169 4.61982 -2725.2 -4.61982 4.61982 0.43 0.00356427 0.0032823 0.345995 0.317544 -1 -1 -1 -1 50 25560 24 2.82259e+07 9.79696e+06 1.88190e+06 3011.03 4.29 1.24128 1.1434 58512 365993 -1 21648 16 6081 14502 1687459 402383 4.72983 4.72983 -3044.61 -4.72983 0 0 2.41964e+06 3871.43 0.07 0.37 0.20 -1 -1 0.07 0.190288 0.180368 +multiwidth_blocks.xml raygentop.v common 21.54 odin 1.54 GiB 11.06 1614276 -1 -1 3 0.82 -1 -1 40260 -1 -1 123 214 0 8 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 88684 214 305 2963 2869 1 1441 650 19 19 361 io clb auto 46.6 MiB 2.24 24028 11655 245468 82518 140645 22305 86.6 MiB 0.92 0.01 5.44642 4.52802 -2634.46 -4.52802 4.52802 0.21 0.00362024 0.00333019 0.352063 0.323303 -1 -1 -1 -1 60 24300 34 1.65001e+07 9.79696e+06 1.13508e+06 3144.28 3.19 1.15359 1.06265 34801 210837 -1 20057 19 6400 15852 2295662 663397 4.80907 4.80907 -2946.21 -4.80907 0 0 1.43369e+06 3971.44 0.04 0.46 0.12 -1 -1 0.04 0.210626 0.199034 +non_column.xml raygentop.v common 47.75 odin 1.93 GiB 34.32 2023384 -1 -1 3 0.84 -1 -1 40256 -1 -1 123 214 0 8 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 102400 214 305 2963 2869 1 1441 650 33 33 1089 io auto 47.7 MiB 2.23 35936 13660 262352 89101 152531 20720 98.5 MiB 0.94 0.01 6.8947 4.81737 -2806.8 -4.81737 4.81737 0.81 0.00362339 0.00334265 0.375896 0.345261 -1 -1 -1 -1 44 28243 27 5.44432e+07 9.79696e+06 2.74036e+06 2516.40 4.20 1.29667 1.19485 93774 543488 -1 22727 18 6328 15147 1605451 431979 4.86083 4.86083 -3079.84 -4.86083 0 0 3.56397e+06 3272.70 0.12 0.42 0.35 -1 -1 0.12 0.213772 0.202022 +non_column_tall_aspect_ratio.xml raygentop.v common 51.79 odin 1.93 GiB 39.18 2023256 -1 -1 3 0.83 -1 -1 40260 -1 -1 123 214 0 8 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 102100 214 305 2963 2869 1 1441 650 23 46 1058 io auto 48.3 MiB 2.18 34433 12310 253910 86017 138818 29075 97.8 MiB 0.90 0.01 6.20818 4.74318 -2736.15 -4.74318 4.74318 0.80 0.0037281 0.0034064 0.359725 0.330304 -1 -1 -1 -1 52 22487 30 5.05849e+07 9.79696e+06 3.17293e+06 2998.99 3.53 1.28793 1.18725 97261 632982 -1 20510 16 5114 12053 1254371 346946 4.98587 4.98587 -2932.2 -4.98587 0 0 4.15960e+06 3931.57 0.12 0.33 0.42 -1 -1 0.12 0.187592 0.178023 +non_column_wide_aspect_ratio.xml raygentop.v common 50.76 odin 1.93 GiB 38.21 2023656 -1 -1 3 0.84 -1 -1 40260 -1 -1 123 214 0 8 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 98352 214 305 2963 2869 1 1441 650 43 22 946 io auto 48.4 MiB 2.19 32195 14077 256724 83624 150449 22651 94.9 MiB 0.92 0.01 6.20333 4.54267 -2819.04 -4.54267 4.54267 0.70 0.00362855 0.00334198 0.36694 0.336882 -1 -1 -1 -1 42 27740 26 4.55909e+07 9.79696e+06 2.29725e+06 2428.38 3.62 1.2805 1.17964 79978 445530 -1 23661 21 6769 17034 1969793 532017 5.2623 5.2623 -3159.48 -5.2623 0 0 2.89121e+06 3056.25 0.09 0.47 0.28 -1 -1 0.09 0.224224 0.210925 +custom_sbloc.xml raygentop.v common 20.32 odin 1.51 GiB 10.16 1588048 -1 -1 3 0.82 -1 -1 39876 -1 -1 123 214 0 8 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 88684 214 305 2963 2869 1 1441 650 19 19 361 io clb auto 46.6 MiB 2.17 24028 12399 225770 74858 132033 18879 86.6 MiB 0.84 0.01 5.49355 4.39465 -2699.44 -4.39465 4.39465 0.21 0.00358021 0.0033004 0.322189 0.295867 -1 -1 -1 -1 60 25212 46 1.65001e+07 9.79696e+06 1.11685e+06 3093.75 3.18 1.03862 0.957059 34801 214773 -1 20923 16 6158 14594 1766703 471535 4.72432 4.72432 -3000.62 -4.72432 0 0 1.41014e+06 3906.19 0.03 0.37 0.13 -1 -1 0.03 0.187347 0.177768 +multiple_io_types.xml raygentop.v common 83.03 odin 1.54 GiB 10.26 1617740 -1 -1 3 0.83 -1 -1 40256 -1 -1 123 214 0 8 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 484432 214 305 2963 2869 1 1441 650 67 67 4489 io_left auto 47.0 MiB 2.58 60956 25475 99140 5163 24781 69196 473.1 MiB 0.42 0.01 9.23589 4.60777 -3590.83 -4.60777 4.60777 11.18 0.00363304 0.00335274 0.163246 0.151042 -1 -1 -1 -1 38 47769 50 2.48753e+08 9.79696e+06 9.69761e+06 2160.30 49.39 1.31777 1.21279 366081 1845534 -1 38574 21 9565 21545 4981287 1328871 5.11017 5.11017 -4030.7 -5.11017 0 0 1.23326e+07 2747.29 0.44 0.96 1.12 -1 -1 0.44 0.226022 0.212296 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_custom_pin_locs/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_custom_pin_locs/config/golden_results.txt index 032d95a320e..9ace93e2d4a 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_custom_pin_locs/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_custom_pin_locs/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 total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - k6_frac_N10_mem32K_40nm_custom_pins.xml ch_intrinsics.v common 3.10 vpr 67.66 MiB 0.06 9856 -1 -1 3 0.38 -1 -1 39496 -1 -1 68 99 1 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 69284 99 130 363 493 1 251 298 12 12 144 clb auto 28.7 MiB 0.15 804 66963 21682 33533 11748 67.7 MiB 0.23 0.00 2.23767 -220.613 -2.23767 2.23767 0.25 0.00122229 0.00116469 0.0742124 0.0677305 -1 -1 -1 -1 38 1639 12 5.66058e+06 4.21279e+06 328943. 2284.32 0.72 0.298961 0.271262 12522 66188 -1 1359 8 559 726 39339 13482 2.60043 2.60043 -237.265 -2.60043 0 0 418267. 2904.63 0.03 0.05 0.11 -1 -1 0.03 0.0322868 0.0303399 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +k6_frac_N10_mem32K_40nm_custom_pins.xml ch_intrinsics.v common 3.83 odin 100.50 MiB 2.19 102912 -1 -1 3 0.20 -1 -1 34096 -1 -1 68 99 1 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 67960 99 130 363 493 1 252 298 12 12 144 clb auto 27.1 MiB 0.06 2018 885 69948 23010 34855 12083 66.4 MiB 0.11 0.00 2.57832 2.17528 -217.156 -2.17528 2.17528 0.09 0.000518599 0.000485055 0.0395951 0.0370221 -1 -1 -1 -1 40 1651 16 5.66058e+06 4.21279e+06 343462. 2385.15 0.31 0.146639 0.134351 12666 68385 -1 1603 9 533 666 46991 15253 2.5852 2.5852 -243.226 -2.5852 0 0 431791. 2998.55 0.01 0.02 0.04 -1 -1 0.01 0.015929 0.0149791 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_custom_switch_block/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_custom_switch_block/config/golden_results.txt index a65248b7f30..0b0f4fd6adf 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_custom_switch_block/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_custom_switch_block/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 total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time 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 - k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm.xml ch_intrinsics.v common 2.43 vpr 64.82 MiB 0.05 9728 -1 -1 4 0.35 -1 -1 39692 -1 -1 75 99 1 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 66380 99 130 378 508 1 307 305 15 15 225 memory auto 25.3 MiB 0.06 1083 69047 24301 32567 12179 64.8 MiB 0.22 0.01 1.63577 -172.755 -1.63577 1.63577 0.00 0.00106212 0.000958102 0.0684136 0.0626923 -1 -1 -1 -1 1479 6.03673 767 3.13061 797 1865 235419 59319 1.16234e+06 375248 2.18283e+06 9701.45 16 48952 428016 -1 1.89463 1.89463 -188.601 -1.89463 -0.194976 -0.108352 0.68 -1 -1 64.8 MiB 0.11 0.107667 0.0986163 64.8 MiB -1 0.37 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time 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 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm.xml ch_intrinsics.v common 3.02 odin 94.88 MiB 1.73 97152 -1 -1 4 0.19 -1 -1 34104 -1 -1 80 99 1 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65108 99 130 378 508 1 307 310 15 15 225 memory auto 24.1 MiB 0.02 2811 1131 73670 26591 35126 11953 63.6 MiB 0.13 0.00 1.90937 1.69007 -171.787 -1.69007 1.69007 0.00 0.000578502 0.000540501 0.0429258 0.0401158 -1 -1 -1 -1 1607 6.55918 824 3.36327 788 1831 251903 61748 1.16234e+06 394748 2.18283e+06 9701.45 13 48952 428016 -1 1.87081 1.87081 -179.525 -1.87081 0 0 0.25 -1 -1 63.6 MiB 0.05 0.0608034 0.0566295 63.6 MiB -1 0.13 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_dedicated_clock/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_dedicated_clock/config/golden_results.txt index c044fb36631..3a232fd7306 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_dedicated_clock/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_dedicated_clock/config/golden_results.txt @@ -1,4 +1,4 @@ - arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time num_global_nets num_routed_nets - timing/k6_frac_N10_frac_chain_mem32K_htree0_40nm.xml verilog/mkPktMerge.v common_-start_odin_--clock_modeling_dedicated_network 16.11 vpr 77.95 MiB 0.11 17024 -1 -1 2 0.10 -1 -1 37392 -1 -1 31 311 15 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 79820 311 156 1019 1160 1 965 513 28 28 784 memory auto 34.7 MiB 0.63 9390 201609 69489 120331 11789 76.8 MiB 1.40 0.02 4.09817 -3462.19 -4.09817 4.09817 1.75 0.00638402 0.00561878 0.639416 0.550497 -1 -1 -1 -1 36 15662 18 4.25198e+07 9.89071e+06 1.97160e+06 2514.80 6.39 2.29245 2.04057 76483 392267 -1 14444 15 3124 3650 1031496 356426 4.24327 4.24327 -4339.34 -4.24327 -405.202 -1.29702 2.42825e+06 3097.26 0.20 1.56 0.59 -1 -1 0.20 0.278119 0.255639 15 950 - timing/k6_frac_N10_frac_chain_mem32K_htree0_routedCLK_40nm.xml verilog/mkPktMerge.v common_-start_odin_--clock_modeling_dedicated_network 12.94 vpr 83.35 MiB 0.18 17024 -1 -1 2 0.12 -1 -1 37644 -1 -1 31 311 15 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 85352 311 156 1019 1160 1 965 513 28 28 784 memory auto 35.0 MiB 0.95 9390 201609 69489 120331 11789 83.4 MiB 0.81 0.01 4.09817 -3462.19 -4.09817 4.09817 1.06 0.00320533 0.00273182 0.351431 0.298654 -1 -1 -1 -1 36 15777 15 4.25198e+07 9.89071e+06 2.00618e+06 2558.90 4.74 1.57738 1.39763 76483 403003 -1 14373 10 2886 3379 762706 219312 4.3954 4.3954 -4595.94 -4.3954 -153.524 -1.32288 2.47848e+06 3161.33 0.22 1.20 0.50 -1 -1 0.22 0.199455 0.182428 15 950 - timing/k6_frac_N10_frac_chain_mem32K_htree0short_40nm.xml verilog/mkPktMerge.v common_-start_odin_--clock_modeling_dedicated_network 20.64 vpr 78.23 MiB 0.14 17152 -1 -1 2 0.19 -1 -1 37392 -1 -1 31 311 15 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 80112 311 156 1019 1160 1 965 513 28 28 784 memory auto 35.0 MiB 0.82 8956 201609 71778 118284 11547 78.2 MiB 1.41 0.02 3.73942 -3418.22 -3.73942 3.73942 1.71 0.00607733 0.00531502 0.647808 0.554869 -1 -1 -1 -1 36 16279 32 4.25198e+07 9.89071e+06 1.96702e+06 2508.96 9.86 2.33237 2.04039 76483 392433 -1 15198 14 2704 3167 1739681 1219090 5.58949 5.58949 -4496.49 -5.58949 -1697.62 -3.42836 2.42368e+06 3091.42 0.20 2.25 0.55 -1 -1 0.20 0.242641 0.222883 15 950 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time num_global_nets num_routed_nets +timing/k6_frac_N10_frac_chain_mem32K_htree0_40nm.xml verilog/mkPktMerge.v common_-start_odin_--clock_modeling_dedicated_network 11.69 odin 621.34 MiB 5.06 636252 -1 -1 2 0.09 -1 -1 33636 -1 -1 31 311 15 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 78136 311 156 1019 1160 1 965 513 28 28 784 memory auto 34.6 MiB 0.45 18226 8928 193401 64117 117643 11641 75.2 MiB 0.54 0.01 4.81013 3.67388 -3454.23 -3.67388 3.67388 0.61 0.00248748 0.00222031 0.252503 0.224419 -1 -1 -1 -1 40 14778 13 4.25198e+07 9.89071e+06 2.15543e+06 2749.27 2.14 0.803025 0.722118 78831 435646 -1 13800 11 2663 3052 814928 278609 4.53842 4.53842 -4454.28 -4.53842 -315.655 -1.23838 2.69266e+06 3434.52 0.09 0.53 0.23 -1 -1 0.09 0.0944896 0.0883248 15 950 +timing/k6_frac_N10_frac_chain_mem32K_htree0_routedCLK_40nm.xml verilog/mkPktMerge.v common_-start_odin_--clock_modeling_dedicated_network 11.70 odin 620.13 MiB 5.29 635016 -1 -1 2 0.09 -1 -1 33880 -1 -1 31 311 15 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 84032 311 156 1019 1160 1 965 513 28 28 784 memory auto 34.6 MiB 0.45 18226 8928 193401 64117 117643 11641 82.1 MiB 0.54 0.01 4.81013 3.67388 -3454.23 -3.67388 3.67388 0.63 0.00245028 0.00217565 0.247052 0.218738 -1 -1 -1 -1 40 14952 13 4.25198e+07 9.89071e+06 2.19000e+06 2793.37 1.99 0.790372 0.708952 78831 446382 -1 13786 11 2650 3108 720747 217033 4.26762 4.26762 -4440.59 -4.26762 -135.258 -1.2599 2.74289e+06 3498.59 0.09 0.50 0.23 -1 -1 0.09 0.089366 0.0832744 15 950 +timing/k6_frac_N10_frac_chain_mem32K_htree0short_40nm.xml verilog/mkPktMerge.v common_-start_odin_--clock_modeling_dedicated_network 12.45 odin 621.68 MiB 4.90 636596 -1 -1 2 0.09 -1 -1 33592 -1 -1 31 311 15 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 78660 311 156 1019 1160 1 965 513 28 28 784 memory auto 34.6 MiB 0.45 18226 9203 197505 67339 118442 11724 75.7 MiB 0.57 0.01 4.81013 3.956 -3512.79 -3.956 3.956 0.61 0.00267688 0.0023959 0.268374 0.238465 -1 -1 -1 -1 36 16669 23 4.25198e+07 9.89071e+06 1.96702e+06 2508.96 2.91 0.894838 0.805745 76483 392433 -1 15397 11 2678 3089 1644949 1134599 5.57406 5.57406 -4431.03 -5.57406 -1496.8 -3.14941 2.42368e+06 3091.42 0.08 0.80 0.20 -1 -1 0.08 0.0890233 0.0831689 15 950 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_default_fc_pinlocs/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_default_fc_pinlocs/config/golden_results.txt index 3e3e8b64dd5..1c24f6d46d7 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_default_fc_pinlocs/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_default_fc_pinlocs/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 total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - k4_N4_90nm_default_fc_pinloc.xml diffeq.blif common 16.94 vpr 71.64 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 438 64 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 73360 64 39 1935 1974 1 1077 541 23 23 529 clb auto 31.5 MiB 0.26 10472 141533 36950 100839 3744 71.6 MiB 1.41 0.02 7.46482 -1369.01 -7.46482 7.46482 0.60 0.00534435 0.00471558 0.398834 0.330633 -1 -1 -1 -1 24 13068 28 983127 976439 797780. 1508.09 11.25 2.1497 1.834 39018 137339 -1 11478 18 6600 23331 1479297 381870 7.27304 7.27304 -1454.66 -7.27304 0 0 1.04508e+06 1975.57 0.04 0.76 0.21 -1 -1 0.04 0.209487 0.18755 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +k4_N4_90nm_default_fc_pinloc.xml diffeq.blif common 4.75 vpr 70.98 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 439 64 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 72680 64 39 1935 1974 1 1075 542 23 23 529 clb auto 30.6 MiB 0.17 24088 10407 135291 36283 95683 3325 71.0 MiB 0.54 0.01 23.0912 7.70338 -1562.28 -7.70338 7.70338 0.20 0.00206891 0.00176944 0.139634 0.121098 -1 -1 -1 -1 24 13067 26 983127 978669 797780. 1508.09 2.35 0.423683 0.369434 39018 137339 -1 11571 16 6466 23559 1530116 397333 7.70338 7.70338 -1636.85 -7.70338 0 0 1.04508e+06 1975.57 0.02 0.31 0.07 -1 -1 0.02 0.0912069 0.0826102 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_depop/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_depop/config/golden_results.txt index 57a8e16dad9..d1aa0e8c66f 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_depop/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_depop/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 total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - k6_frac_N10_frac_chain_depop50_mem32K_40nm.xml mkSMAdapter4B.v common 26.42 vpr 86.55 MiB 0.39 29568 -1 -1 4 2.92 -1 -1 43300 -1 -1 169 193 5 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 88632 193 205 2863 2789 1 1374 572 20 20 400 memory auto 45.3 MiB 1.96 10985 240245 81936 130873 27436 86.6 MiB 2.98 0.04 4.42447 -2617.73 -4.42447 4.42447 0.87 0.010731 0.00973575 1.17585 1.01795 -1 -1 -1 -1 78 21148 32 2.07112e+07 1.18481e+07 2.06176e+06 5154.39 12.21 3.92596 3.45972 52874 439520 -1 19015 16 5137 14374 1050969 231484 5.06231 5.06231 -2806.44 -5.06231 -11.1461 -0.341744 2.60035e+06 6500.87 0.19 0.81 0.45 -1 -1 0.19 0.495649 0.459932 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +k6_frac_N10_frac_chain_depop50_mem32K_40nm.xml mkSMAdapter4B.v common 21.77 odin 1.01 GiB 10.88 1062996 -1 -1 4 1.59 -1 -1 40164 -1 -1 165 193 5 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 88044 193 205 2863 2789 1 1378 568 20 20 400 memory auto 45.3 MiB 0.99 22943 10817 247423 86121 133897 27405 86.0 MiB 1.12 0.01 6.47551 5.02579 -2678.97 -5.02579 5.02579 0.30 0.0037987 0.00341071 0.425979 0.382513 -1 -1 -1 -1 76 21112 33 2.07112e+07 1.16325e+07 2.02110e+06 5052.76 3.90 1.38116 1.24918 52074 423490 -1 19105 16 5044 13854 1088699 242536 5.48145 5.48145 -2895.27 -5.48145 -14.3689 -0.360359 2.51807e+06 6295.18 0.07 0.33 0.25 -1 -1 0.07 0.209497 0.196991 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_detailed_timing/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_detailed_timing/config/golden_results.txt index 7d3c0c996a1..9c6c4e1f901 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_detailed_timing/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_detailed_timing/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 total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - k6_frac_N10_mem32K_40nm.xml ch_intrinsics.v common 3.83 vpr 67.63 MiB 0.09 9984 -1 -1 3 0.34 -1 -1 39772 -1 -1 68 99 1 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 69252 99 130 363 493 1 251 298 12 12 144 clb auto 28.5 MiB 0.20 804 66963 21682 33533 11748 67.6 MiB 0.34 0.01 2.23767 -220.613 -2.23767 2.23767 0.27 0.000902266 0.000807045 0.0650955 0.0583605 -1 -1 -1 -1 38 1665 16 5.66058e+06 4.21279e+06 319130. 2216.18 1.19 0.319458 0.291293 12522 62564 -1 1367 8 564 725 39208 13509 2.60043 2.60043 -237.701 -2.60043 0 0 406292. 2821.48 0.03 0.06 0.09 -1 -1 0.03 0.0273369 0.0256329 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +k6_frac_N10_mem32K_40nm.xml ch_intrinsics.v common 3.80 odin 100.12 MiB 2.12 102528 -1 -1 3 0.19 -1 -1 34340 -1 -1 68 99 1 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 67576 99 130 363 493 1 252 298 12 12 144 clb auto 27.1 MiB 0.07 2018 885 69948 23010 34855 12083 66.0 MiB 0.12 0.00 2.57832 2.17528 -217.156 -2.17528 2.17528 0.09 0.000549765 0.000514583 0.0413233 0.0386326 -1 -1 -1 -1 40 1646 17 5.66058e+06 4.21279e+06 333335. 2314.82 0.32 0.152035 0.139133 12666 64609 -1 1625 10 525 650 46110 15051 2.57635 2.57635 -244.199 -2.57635 0 0 419432. 2912.72 0.01 0.03 0.04 -1 -1 0.01 0.0172408 0.0161803 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_diff_mux_for_inc_dec_wires/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_diff_mux_for_inc_dec_wires/config/golden_results.txt index ceb027e03e3..56c59c8279b 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_diff_mux_for_inc_dec_wires/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_diff_mux_for_inc_dec_wires/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 ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - k6_N10_40nm.xml stereovision0.v common 198.12 vpr 257.14 MiB 2.00 126464 -1 -1 5 139.65 -1 -1 78708 -1 -1 1337 157 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 263312 157 197 21024 21221 1 6369 1691 39 39 1521 clb auto 124.7 MiB 6.38 48812 948271 327778 599083 21410 257.1 MiB 9.39 0.13 3.8487 -15314.7 -3.8487 3.8487 8.33 0.0426525 0.0388129 3.00817 2.44576 -1 -1 -1 -1 38 60857 30 2.4642e+07 2.4066e+07 4.29790e+06 2825.71 13.17 9.3436 7.78726 119030 883757 -1 57009 24 29792 62484 2448958 439074 3.78459 3.78459 -15886.2 -3.78459 0 0 5.41627e+06 3561.00 0.27 2.25 0.65 -1 -1 0.27 1.68943 1.4738 - k6_N10_40nm_diff_switch_for_inc_dec_wires.xml stereovision0.v common 201.99 vpr 255.40 MiB 2.14 126336 -1 -1 5 142.90 -1 -1 78972 -1 -1 1356 157 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 261528 157 197 21024 21221 1 6467 1710 39 39 1521 clb auto 124.6 MiB 7.21 49809 962484 334554 607807 20123 255.4 MiB 9.87 0.12 3.26114 -15027.4 -3.26114 3.26114 7.20 0.0351221 0.0281327 3.06287 2.48936 -1 -1 -1 -1 38 63075 34 7.37824e+07 7.30817e+07 4.16760e+06 2740.04 13.41 9.93144 8.27431 119030 845795 -1 59104 24 31762 70331 2621462 488165 3.1068 3.1068 -15929.2 -3.1068 0 0 5.22668e+06 3436.35 0.24 2.20 0.62 -1 -1 0.24 1.62443 1.4202 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +k6_N10_40nm.xml stereovision0.v common 159.89 odin 1.78 GiB 65.32 1868440 -1 -1 5 58.75 -1 -1 75080 -1 -1 1333 157 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 258252 157 197 21024 21221 1 6351 1687 39 39 1521 clb auto 136.7 MiB 2.92 183607 48717 965335 340609 600791 23935 252.2 MiB 6.37 0.06 8.3236 3.67149 -15448.9 -3.67149 3.67149 3.29 0.0168149 0.0146145 1.94454 1.62852 -1 -1 -1 -1 38 62381 33 2.4642e+07 2.3994e+07 4.29790e+06 2825.71 11.96 6.69956 5.60674 119030 883757 -1 57672 22 29914 63381 2482926 444293 3.4728 3.4728 -15928.1 -3.4728 0 0 5.41627e+06 3561.00 0.18 1.64 0.43 -1 -1 0.18 1.19722 1.06601 +k6_N10_40nm_diff_switch_for_inc_dec_wires.xml stereovision0.v common 158.67 odin 1.79 GiB 64.83 1877584 -1 -1 5 58.24 -1 -1 75848 -1 -1 1329 157 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 259152 157 197 21024 21221 1 6395 1683 39 39 1521 clb auto 137.0 MiB 2.93 182137 48305 952348 332116 600539 19693 253.1 MiB 6.32 0.07 7.71591 3.21097 -14756.9 -3.21097 3.21097 3.24 0.0192976 0.0166812 1.91255 1.59488 -1 -1 -1 -1 38 61719 36 7.37824e+07 7.16265e+07 4.16760e+06 2740.04 11.71 7.21472 6.04706 119030 845795 -1 58052 25 31719 70350 2555452 477654 3.64157 3.64157 -15795.2 -3.64157 0 0 5.22668e+06 3436.35 0.18 1.82 0.42 -1 -1 0.18 1.31991 1.15859 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_eblif_vpr/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_eblif_vpr/config/golden_results.txt index 53aa221bde0..fb1ca9776ae 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_eblif_vpr/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_eblif_vpr/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 ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - k6_frac_N10_40nm.xml test_eblif.eblif common 0.35 vpr 60.58 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1 3 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 62036 3 1 5 6 1 4 5 3 3 9 -1 auto 22.0 MiB 0.00 9 12 4 4 4 60.6 MiB 0.00 0.00 0.52647 -0.88231 -0.52647 0.52647 0.00 6.5921e-05 4.9487e-05 0.000173999 0.000134314 -1 -1 -1 -1 20 9 2 53894 53894 4880.82 542.314 0.01 0.00172845 0.00161091 379 725 -1 5 1 3 3 29 19 0.545526 0.545526 -1.07365 -0.545526 0 0 6579.40 731.044 0.00 0.00 0.00 -1 -1 0.00 0.0015722 0.00153245 - k6_frac_N10_40nm.xml conn_order.eblif common 0.43 vpr 60.14 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1 2 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 61580 2 1 4 5 1 3 4 3 3 9 -1 auto 21.9 MiB 0.01 6 9 4 1 4 60.1 MiB 0.00 0.00 0.69084 -1.21731 -0.69084 0.69084 0.01 1.6713e-05 1.1905e-05 0.000118437 9.2123e-05 -1 -1 -1 -1 20 7 2 53894 53894 4880.82 542.314 0.01 0.00165899 0.00156225 379 725 -1 15 1 2 2 51 45 1.70808 1.70808 -2.25272 -1.70808 0 0 6579.40 731.044 0.00 0.00 0.00 -1 -1 0.00 0.00153235 0.00149153 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +k6_frac_N10_40nm.xml test_eblif.eblif common 0.27 vpr 59.04 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1 3 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 60460 3 1 5 6 1 4 5 3 3 9 -1 auto 20.2 MiB 0.00 9 9 12 4 4 4 59.0 MiB 0.00 0.00 0.52647 0.52647 -0.88231 -0.52647 0.52647 0.00 1.0813e-05 7.425e-06 8.2569e-05 6.2814e-05 -1 -1 -1 -1 20 9 2 53894 53894 4880.82 542.314 0.00 0.000987116 0.000914894 379 725 -1 5 1 3 3 29 19 0.545526 0.545526 -1.07365 -0.545526 0 0 6579.40 731.044 0.00 0.00 0.00 -1 -1 0.00 0.000870274 0.000836286 +k6_frac_N10_40nm.xml conn_order.eblif common 0.28 vpr 58.95 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1 2 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 60368 2 1 4 5 1 3 4 3 3 9 -1 auto 20.4 MiB 0.00 6 6 9 4 1 4 59.0 MiB 0.00 0.00 0.69084 0.69084 -1.21731 -0.69084 0.69084 0.00 1.0172e-05 6.799e-06 8.1876e-05 6.3112e-05 -1 -1 -1 -1 20 7 2 53894 53894 4880.82 542.314 0.00 0.00098864 0.000921289 379 725 -1 15 1 2 2 51 45 1.70808 1.70808 -2.25272 -1.70808 0 0 6579.40 731.044 0.00 0.00 0.00 -1 -1 0.00 0.000863087 0.000831269 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_eblif_vpr_write/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_eblif_vpr_write/config/golden_results.txt index c0c64f8d2c1..4ac9645c21c 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_eblif_vpr_write/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_eblif_vpr_write/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 total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - arch.xml eblif_write.eblif common 0.32 vpr 58.97 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 3 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 60388 3 2 5 7 1 5 7 4 4 16 ff_tile io_tile auto 20.5 MiB 0.00 14 18 7 10 1 59.0 MiB 0.00 0.00 0.198536 -0.769354 -0.198536 0.198536 0.00 2.3959e-05 1.5869e-05 0.000131827 9.7152e-05 -1 -1 -1 -1 1 8 1 59253.6 29626.8 -1 -1 0.00 0.00165685 0.00154691 136 248 -1 8 1 4 4 68 40 0.189392 0.189392 -0.755508 -0.189392 0 0 -1 -1 0.00 0.00 0.00 -1 -1 0.00 0.00177312 0.00171917 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +arch.xml eblif_write.eblif common 0.26 vpr 56.95 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 3 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 58312 3 2 5 7 1 5 7 4 4 16 ff_tile io_tile auto 18.3 MiB 0.00 16 14 18 7 10 1 56.9 MiB 0.00 0.00 0.247067 0.198536 -0.769354 -0.198536 0.198536 0.00 1.3321e-05 8.124e-06 8.7295e-05 6.3966e-05 -1 -1 -1 -1 1 8 1 59253.6 29626.8 -1 -1 0.00 0.00108886 0.00100644 136 248 -1 8 1 4 4 68 40 0.189392 0.189392 -0.755508 -0.189392 0 0 -1 -1 0.00 0.00 0.00 -1 -1 0.00 0.000892955 0.000854475 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_echo_files/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_echo_files/config/golden_results.txt index c750dd52020..1850eda3b9d 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_echo_files/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_echo_files/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 total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - k6_N10_mem32K_40nm.xml stereovision3.v common 1.53 vpr 66.67 MiB 0.08 10368 -1 -1 4 0.21 -1 -1 36920 -1 -1 19 11 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 68272 11 30 262 292 2 99 60 7 7 49 clb auto 27.0 MiB 0.11 431 1932 256 1610 66 66.7 MiB 0.10 0.00 2.45279 -183.914 -2.45279 2.30526 0.00 0.000756181 0.000646522 0.0198618 0.0177275 -1 -1 -1 -1 -1 458 24 1.07788e+06 1.02399e+06 90369.8 1844.28 0.07 0.0693622 0.0613246 -1 -1 -1 -1 -1 -1 -1 -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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +k6_N10_mem32K_40nm.xml stereovision3.v common 3.93 odin 167.25 MiB 2.90 171264 -1 -1 4 0.12 -1 -1 33080 -1 -1 20 11 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66524 11 30 262 292 2 99 61 7 7 49 clb auto 24.9 MiB 0.07 688 427 2461 355 2028 78 65.0 MiB 0.07 0.00 2.92195 2.72416 -177.287 -2.72416 2.43773 0.00 0.000398095 0.00034762 0.0110046 0.00970371 -1 -1 -1 -1 -1 457 20 1.07788e+06 1.07788e+06 90369.8 1844.28 0.03 0.0316159 0.0277496 -1 -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_strong_odin/strong_equivalent_sites/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_equivalent_sites/config/golden_results.txt index 41d36d5dda6..f229cdbb877 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_equivalent_sites/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_equivalent_sites/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 total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - equivalent.xml equivalent.blif common 0.40 vpr 58.74 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 60148 1 1 3 4 0 3 4 4 4 16 io_site_1 auto 20.5 MiB 0.00 9 9 3 6 0 58.7 MiB 0.00 0.00 3.8649 -3.8649 -3.8649 nan 0.00 2.1313e-05 1.5936e-05 0.000108787 8.0593e-05 -1 -1 -1 -1 1 3 1 59253.6 29626.8 -1 -1 0.00 0.00168168 0.00158747 72 304 -1 3 1 3 3 37 15 3.69193 nan -3.69193 -3.69193 0 0 -1 -1 0.00 0.00 0.00 -1 -1 0.00 0.00146867 0.00143048 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +equivalent.xml equivalent.blif common 0.27 vpr 56.95 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 58320 1 1 3 4 0 3 4 4 4 16 io_site_1 auto 18.6 MiB 0.00 11 9 9 3 6 0 57.0 MiB 0.00 0.00 3.98683 3.8649 -3.8649 -3.8649 nan 0.00 8.943e-06 5.558e-06 6.5235e-05 4.5246e-05 -1 -1 -1 -1 1 3 1 59253.6 29626.8 -1 -1 0.00 0.00118852 0.00111324 72 304 -1 3 1 3 3 37 15 3.69193 nan -3.69193 -3.69193 0 0 -1 -1 0.00 0.00 0.00 -1 -1 0.00 0.000892854 0.000855363 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_fc_abs/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_fc_abs/config/golden_results.txt index 41bceae31db..5f0f030f6ff 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_fc_abs/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_fc_abs/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 total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - k6_N10_mem32K_40nm_fc_abs.xml stereovision3.v common 2.46 vpr 66.34 MiB 0.09 10240 -1 -1 4 0.25 -1 -1 36836 -1 -1 19 11 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 67932 11 30 262 292 2 99 60 7 7 49 clb auto 27.4 MiB 0.10 417 1932 303 1579 50 66.3 MiB 0.03 0.00 2.45862 -181.765 -2.45862 2.33618 0.06 0.000452546 0.000389719 0.0170733 0.0149049 -1 -1 -1 -1 14 566 30 1.07788e+06 1.02399e+06 81563.3 1664.56 0.67 0.279658 0.24196 2472 22196 -1 446 21 890 1897 62387 19776 2.78119 2.51931 -191.416 -2.78119 0 0 98201.7 2004.12 0.00 0.07 0.02 -1 -1 0.00 0.0396875 0.0352228 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +k6_N10_mem32K_40nm_fc_abs.xml stereovision3.v common 3.79 odin 167.25 MiB 2.51 171264 -1 -1 4 0.12 -1 -1 33108 -1 -1 20 11 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 67024 11 30 262 292 2 99 61 7 7 49 clb auto 25.5 MiB 0.04 688 429 2941 457 2408 76 65.5 MiB 0.02 0.00 2.93468 2.74942 -180.398 -2.74942 2.45106 0.02 0.000395628 0.000342485 0.0122261 0.0107509 -1 -1 -1 -1 16 538 33 1.07788e+06 1.07788e+06 88828.2 1812.82 0.14 0.0725413 0.0612719 2520 24504 -1 531 31 912 2238 78937 24519 2.94529 2.53849 -196.108 -2.94529 0 0 104221. 2126.97 0.00 0.04 0.01 -1 -1 0.00 0.0270076 0.0233037 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 9813ce389c5..84ede063b47 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,175 +1,181 @@ #block name x y subblk layer block number #---------- -- -- ------ ----- ------------ -o_1_ 4 3 2 0 #0 -o_2_ 1 1 2 0 #1 -o_0_ 1 4 4 0 #2 -n_n1827 2 2 3 0 #3 -n_n1829 1 2 5 0 #4 -n_n1812 1 1 3 0 #5 -n_n1866 1 3 4 0 #6 -n_n1865 1 2 4 0 #7 -[493] 4 5 2 0 #8 -n_n544 5 4 5 0 #9 -n_n416 4 1 4 0 #10 -n_n394 2 1 2 0 #11 -n_n391 2 1 3 0 #12 -n_n300 3 1 0 0 #13 -[260] 3 5 3 0 #14 -n_n437 3 3 3 0 #15 -[223] 5 4 1 0 #16 -[79] 3 5 0 0 #17 -[410] 2 4 1 0 #18 -[516] 4 5 4 0 #19 -[245] 3 4 2 0 #20 -[340] 2 5 5 0 #21 -[432] 2 4 5 0 #22 -[80] 3 4 1 0 #23 -[541] 5 3 5 0 #24 -n_n309 2 1 5 0 #25 -[8] 4 5 5 0 #26 -[546] 3 4 5 0 #27 -n_n706 1 2 3 0 #28 -[261] 2 2 1 0 #29 -[463] 4 4 3 0 #30 -n_n1575 3 5 4 0 #31 -n_n1571 2 4 3 0 #32 -[132] 1 5 3 0 #33 -[355] 2 4 2 0 #34 -[214] 4 4 5 0 #35 -[267] 5 4 4 0 #36 -n_n329 3 2 0 0 #37 -[420] 5 2 2 0 #38 -n_n849 2 2 5 0 #39 -[478] 5 4 0 0 #40 -[578] 4 1 3 0 #41 -[253] 4 2 0 0 #42 -[4] 4 1 5 0 #43 -[56] 1 1 4 0 #44 -[226] 3 1 2 0 #45 -[282] 1 3 3 0 #46 -[377] 1 2 1 0 #47 -[71] 1 1 1 0 #48 -[319] 5 2 5 0 #49 -[233] 4 3 1 0 #50 -[246] 3 4 4 0 #51 -[301] 3 5 1 0 #52 -[441] 5 5 0 0 #53 -[608] 5 4 3 0 #54 -[21] 2 1 4 0 #55 -[311] 4 4 1 0 #56 -[344] 3 2 2 0 #57 -[310] 2 2 2 0 #58 -[315] 1 3 2 0 #59 -[29] 1 4 0 0 #60 -[273] 2 4 4 0 #61 -n_n1690 3 4 0 0 #62 -[383] 5 3 1 0 #63 -[390] 2 2 4 0 #64 -[705] 4 4 4 0 #65 -[41] 4 3 5 0 #66 -[351] 4 1 1 0 #67 -[484] 4 2 1 0 #68 -[437] 5 3 4 0 #69 -[349] 3 2 4 0 #70 -[65] 3 5 5 0 #71 -[221] 4 5 1 0 #72 -[402] 2 4 0 0 #73 -[521] 4 1 0 0 #74 -[767] 4 1 2 0 #75 -[133] 2 5 0 0 #76 -[234] 4 3 4 0 #77 -[868] 1 4 3 0 #78 -[904] 4 4 2 0 #79 -[906] 4 2 4 0 #80 -[919] 2 3 3 0 #81 -[1253] 1 3 0 0 #82 -[1283] 3 1 3 0 #83 -[1340] 3 2 3 0 #84 -[1382] 1 1 0 0 #85 -[1404] 3 2 1 0 #86 -[1417] 3 1 1 0 #87 -[1534] 4 3 3 0 #88 -[1615] 3 5 2 0 #89 -[6947] 2 3 2 0 #90 -[7082] 4 3 0 0 #91 -[7159] 4 2 5 0 #92 -[7165] 5 3 2 0 #93 -[7191] 5 3 3 0 #94 -[7319] 3 3 0 0 #95 -[7321] 5 2 0 0 #96 -[7351] 2 3 4 0 #97 -[7388] 1 2 0 0 #98 -[7423] 2 1 0 0 #99 -[7466] 3 2 5 0 #100 -[7782] 4 4 0 0 #101 -[7822] 2 5 4 0 #102 -[7885] 2 5 3 0 #103 -[7888] 2 3 1 0 #104 -[7997] 5 5 2 0 #105 -[8027] 5 2 4 0 #106 -[50] 2 3 0 0 #107 -[288] 3 3 2 0 #108 -[539] 5 2 1 0 #109 -[372] 4 2 3 0 #110 -n_n1584 2 5 1 0 #111 -[196] 2 2 0 0 #112 -[585] 3 3 5 0 #113 -[365] 4 5 3 0 #114 -[492] 1 4 5 0 #115 -[616] 3 3 1 0 #116 -[430] 2 1 1 0 #117 -[663] 1 2 2 0 #118 -[700] 4 2 2 0 #119 -[322] 1 3 5 0 #120 -[739] 3 3 4 0 #121 -[745] 5 3 0 0 #122 -[771] 3 4 3 0 #123 -[95] 4 5 0 0 #124 -[345] 3 1 4 0 #125 -[759] 3 1 5 0 #126 -[1066] 1 3 1 0 #127 -[7199] 5 1 5 0 #128 -[7969] 5 5 3 0 #129 -[7328] 1 4 1 0 #130 -[7559] 5 2 3 0 #131 -out:o_1_ 3 6 1 0 #132 -out:o_2_ 1 0 5 0 #133 -out:o_0_ 1 6 2 0 #134 -i_30_ 3 6 3 0 #135 -i_20_ 4 0 6 0 #136 -i_9_ 3 0 5 0 #137 -i_10_ 0 1 4 0 #138 -i_7_ 2 6 7 0 #139 -i_8_ 3 0 7 0 #140 -i_5_ 2 0 1 0 #141 -i_6_ 3 0 0 0 #142 -i_27_ 4 6 4 0 #143 -i_14_ 2 6 5 0 #144 -i_3_ 3 0 2 0 #145 -i_28_ 2 0 3 0 #146 -i_13_ 2 0 2 0 #147 -i_4_ 3 0 6 0 #148 -i_25_ 1 0 0 0 #149 -i_12_ 2 0 0 0 #150 -i_1_ 4 0 3 0 #151 -i_26_ 1 0 7 0 #152 -i_11_ 4 0 5 0 #153 -i_2_ 3 0 3 0 #154 -i_23_ 4 6 7 0 #155 -i_18_ 4 0 1 0 #156 -i_24_ 2 0 7 0 #157 -i_17_ 4 0 2 0 #158 -i_0_ 2 6 3 0 #159 -i_21_ 5 6 5 0 #160 -i_16_ 4 6 2 0 #161 -i_22_ 1 0 4 0 #162 -i_32_ 4 0 4 0 #163 -i_31_ 2 0 5 0 #164 -i_34_ 3 6 5 0 #165 -i_33_ 1 0 3 0 #166 -i_19_ 6 1 1 0 #167 -i_36_ 3 6 7 0 #168 -i_35_ 2 0 6 0 #169 -i_38_ 3 0 4 0 #170 -i_29_ 2 6 4 0 #171 -i_37_ 4 6 1 0 #172 +o_1_ 4 1 4 0 #0 +o_2_ 4 3 4 0 #1 +o_0_ 2 2 0 0 #2 +n_n1829 3 5 4 0 #3 +n_n1812 5 3 5 0 #4 +n_n1866 4 5 1 0 #5 +n_n1865 4 5 3 0 #6 +[493] 2 1 2 0 #7 +n_n544 3 1 0 0 #8 +n_n416 4 4 0 0 #9 +n_n394 5 4 5 0 #10 +n_n391 5 3 4 0 #11 +n_n300 4 5 5 0 #12 +[260] 3 2 4 0 #13 +[223] 3 1 4 0 #14 +[79] 2 2 4 0 #15 +[410] 1 3 1 0 #16 +[516] 1 3 2 0 #17 +[530] 1 1 1 0 #18 +[245] 1 2 0 0 #19 +[340] 1 4 4 0 #20 +[432] 3 1 2 0 #21 +[533] 2 3 3 0 #22 +[80] 2 2 5 0 #23 +[535] 1 2 1 0 #24 +n_n316 4 2 4 0 #25 +[541] 1 2 5 0 #26 +n_n1563 2 2 1 0 #27 +n_n1585 2 3 4 0 #28 +[38] 2 3 2 0 #29 +n_n706 4 2 3 0 #30 +n_n608 2 1 1 0 #31 +[261] 4 1 0 0 #32 +[463] 5 1 3 0 #33 +n_n1578 1 2 3 0 #34 +[124] 2 3 1 0 #35 +[132] 3 3 2 0 #36 +[227] 1 1 3 0 #37 +[267] 2 2 2 0 #38 +n_n329 2 2 3 0 #39 +n_n849 4 5 0 0 #40 +[478] 2 3 0 0 #41 +[578] 5 5 0 0 #42 +[253] 5 3 2 0 #43 +[4] 5 4 3 0 #44 +[56] 4 4 3 0 #45 +[226] 4 2 5 0 #46 +[282] 5 4 2 0 #47 +[377] 5 5 4 0 #48 +[71] 5 3 3 0 #49 +[246] 3 2 1 0 #50 +[301] 3 1 1 0 #51 +[311] 4 4 4 0 #52 +[344] 4 4 1 0 #53 +[310] 4 2 2 0 #54 +[315] 4 3 0 0 #55 +[78] 3 5 5 0 #56 +[656] 5 3 0 0 #57 +[29] 2 4 1 0 #58 +[273] 3 1 3 0 #59 +[668] 1 2 4 0 #60 +[674] 5 3 1 0 #61 +[74] 1 2 2 0 #62 +n_n1704 4 1 3 0 #63 +[327] 4 5 2 0 #64 +[305] 1 4 3 0 #65 +n_n1702 4 1 5 0 #66 +[351] 5 2 3 0 #67 +[437] 3 3 3 0 #68 +[349] 5 1 5 0 #69 +[65] 1 1 0 0 #70 +[221] 2 1 5 0 #71 +[343] 3 4 5 0 #72 +[406] 5 2 5 0 #73 +[521] 5 4 0 0 #74 +[161] 3 1 5 0 #75 +[189] 2 4 2 0 #76 +[906] 2 4 3 0 #77 +[977] 4 3 5 0 #78 +[1340] 4 4 5 0 #79 +[1426] 5 2 1 0 #80 +[1435] 5 4 1 0 #81 +[1542] 4 3 3 0 #82 +[1615] 3 4 3 0 #83 +[1619] 4 1 2 0 #84 +[6958] 1 4 2 0 #85 +[7025] 5 2 4 0 #86 +[7082] 1 1 5 0 #87 +[7160] 3 2 2 0 #88 +[7319] 3 4 0 0 #89 +[7321] 4 5 4 0 #90 +[7388] 3 3 0 0 #91 +[7390] 3 5 2 0 #92 +[7787] 1 3 3 0 #93 +[7791] 2 3 5 0 #94 +[7811] 2 1 3 0 #95 +[7822] 4 2 0 0 #96 +[7829] 2 1 4 0 #97 +[7885] 3 4 4 0 #98 +[7899] 1 3 5 0 #99 +[7901] 1 1 4 0 #100 +[7997] 1 3 4 0 #101 +[8027] 2 1 0 0 #102 +[8042] 1 4 1 0 #103 +[50] 3 5 3 0 #104 +[307] 3 2 5 0 #105 +[275] 3 2 3 0 #106 +[372] 3 4 1 0 #107 +[503] 3 5 0 0 #108 +[585] 2 4 4 0 #109 +[63] 2 5 3 0 #110 +[431] 5 2 2 0 #111 +[447] 3 3 1 0 #112 +[615] 2 4 5 0 #113 +n_n1716 1 3 0 0 #114 +[254] 4 3 2 0 #115 +[381] 5 4 4 0 #116 +[430] 4 3 1 0 #117 +[276] 4 4 2 0 #118 +[760] 3 4 2 0 #119 +[768] 4 1 1 0 #120 +[792] 2 5 2 0 #121 +[721] 5 2 0 0 #122 +[877] 3 2 0 0 #123 +[884] 4 2 1 0 #124 +[1021] 3 3 5 0 #125 +[1077] 3 3 4 0 #126 +[1700] 1 4 0 0 #127 +[7108] 2 4 0 0 #128 +[7211] 5 1 1 0 #129 +[7516] 2 5 0 0 #130 +[7531] 2 5 4 0 #131 +[7820] 1 4 5 0 #132 +[7917] 2 5 5 0 #133 +[7028] 2 5 1 0 #134 +[7774] 1 5 5 0 #135 +[7778] 1 5 2 0 #136 +[177] 1 1 2 0 #137 +out:o_1_ 4 0 0 0 #138 +out:o_2_ 4 6 1 0 #139 +out:o_0_ 2 0 4 0 #140 +i_30_ 2 6 7 0 #141 +i_20_ 2 0 3 0 #142 +i_9_ 5 6 5 0 #143 +i_10_ 3 6 6 0 #144 +i_7_ 2 0 5 0 #145 +i_8_ 4 6 4 0 #146 +i_5_ 5 6 6 0 #147 +i_6_ 3 0 3 0 #148 +i_27_ 3 0 1 0 #149 +i_14_ 2 0 1 0 #150 +i_3_ 6 4 5 0 #151 +i_28_ 3 0 7 0 #152 +i_13_ 2 0 2 0 #153 +i_4_ 6 2 7 0 #154 +i_25_ 4 6 0 0 #155 +i_12_ 1 0 4 0 #156 +i_1_ 6 2 2 0 #157 +i_26_ 3 6 2 0 #158 +i_11_ 4 0 1 0 #159 +i_2_ 4 6 7 0 #160 +i_23_ 2 0 7 0 #161 +i_18_ 5 6 4 0 #162 +i_24_ 2 0 6 0 #163 +i_17_ 3 0 0 0 #164 +i_0_ 4 0 5 0 #165 +i_21_ 2 6 1 0 #166 +i_16_ 0 3 0 0 #167 +i_22_ 3 6 0 0 #168 +i_32_ 3 6 7 0 #169 +i_31_ 2 6 5 0 #170 +i_34_ 1 0 6 0 #171 +i_33_ 4 0 7 0 #172 +i_19_ 6 4 6 0 #173 +i_36_ 1 0 1 0 #174 +i_35_ 1 0 7 0 #175 +i_38_ 4 6 3 0 #176 +i_29_ 3 6 1 0 #177 +i_37_ 3 0 6 0 #178 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 76744275cd6..c02d12cd3b3 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 total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - fix_clusters_test_arch.xml apex2.blif common 15.55 vpr 74.91 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 132 38 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 76704 38 3 1916 1919 0 1054 173 7 7 49 clb auto 34.1 MiB 5.08 5783 1135 0 0 1135 74.9 MiB 0.08 0.01 5.08129 -15.1527 -5.08129 nan 0.20 0.00521387 0.00456397 0.054855 0.0516446 -1 -1 -1 -1 164 7880 41 1.34735e+06 7.11401e+06 957298. 19536.7 8.09 2.3336 2.00198 18546 296938 -1 7311 19 6308 26453 1146687 361661 5.58525 nan -16.6102 -5.58525 0 0 1.19720e+06 24432.6 0.03 0.49 0.23 -1 -1 0.03 0.228213 0.208678 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +fix_clusters_test_arch.xml apex2.blif common 6.20 vpr 73.47 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 138 38 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 75236 38 3 1916 1919 0 1057 179 7 7 49 clb auto 34.1 MiB 2.36 5571 5572 1187 0 0 1187 73.5 MiB 0.04 0.00 4.76188 4.76188 -14.2451 -4.76188 nan 0.07 0.0020291 0.00182219 0.0299414 0.0288567 -1 -1 -1 -1 158 7466 37 1.34735e+06 7.43737e+06 924312. 18863.5 2.34 0.677286 0.586504 18354 286522 -1 7089 17 5844 24589 1071101 337183 5.3663 nan -15.678 -5.3663 0 0 1.15416e+06 23554.3 0.02 0.27 0.14 -1 -1 0.02 0.13834 0.128348 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_fix_pins_random/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_fix_pins_random/config/golden_results.txt index 2735c09358a..c05a6c5feab 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_fix_pins_random/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_fix_pins_random/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 total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - k6_N10_mem32K_40nm.xml stereovision3.v common 2.00 vpr 66.73 MiB 0.06 10368 -1 -1 4 0.21 -1 -1 36456 -1 -1 19 11 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 68336 11 30 262 292 2 99 60 7 7 49 clb auto 27.1 MiB 0.07 499 1698 69 1565 64 66.7 MiB 0.04 0.00 2.45489 -182.908 -2.45489 2.31533 0.06 0.000803566 0.000668095 0.0165762 0.0143795 -1 -1 -1 -1 18 719 39 1.07788e+06 1.02399e+06 45686.6 932.380 0.43 0.155736 0.134195 2616 8308 -1 605 32 901 2129 57619 17801 2.65666 2.40393 -192.483 -2.65666 0 0 59124.6 1206.62 0.00 0.09 0.01 -1 -1 0.00 0.062047 0.0552258 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +k6_N10_mem32K_40nm.xml stereovision3.v common 3.83 odin 166.50 MiB 2.52 170496 -1 -1 4 0.12 -1 -1 33108 -1 -1 20 11 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 67264 11 30 262 292 2 99 61 7 7 49 clb auto 25.5 MiB 0.04 688 531 1981 91 1813 77 65.7 MiB 0.02 0.00 2.92675 2.71243 -182.607 -2.71243 2.42504 0.02 0.000399329 0.000342509 0.00938853 0.00827764 -1 -1 -1 -1 18 741 35 1.07788e+06 1.07788e+06 45686.6 932.380 0.17 0.0698213 0.0586341 2616 8308 -1 669 22 765 1836 62890 21794 2.72374 2.48096 -195.552 -2.72374 0 0 59124.6 1206.62 0.00 0.04 0.00 -1 -1 0.00 0.0213747 0.0186684 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_flyover_wires/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_flyover_wires/config/golden_results.txt index 03193b42990..bb3ec60f9df 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_flyover_wires/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_flyover_wires/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 ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - shorted_flyover_wires.xml raygentop.v common 26.23 vpr 87.18 MiB 0.37 31744 -1 -1 3 1.50 -1 -1 43564 -1 -1 123 214 0 8 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 89276 214 305 2963 2869 1 1444 650 19 19 361 io clb auto 46.2 MiB 4.36 11021 242654 80011 140532 22111 87.2 MiB 2.29 0.03 4.72515 -2651.47 -4.72515 4.72515 0.68 0.00870927 0.00789125 0.867466 0.775905 -1 -1 -1 -1 58 24978 46 1.65001e+07 9.79696e+06 1.00638e+06 2787.76 11.26 3.56546 3.21933 34441 208101 -1 21032 16 5966 14058 1826516 536884 5.22938 5.22938 -3010.82 -5.22938 0 0 1.28387e+06 3556.43 0.10 1.10 0.34 -1 -1 0.10 0.47794 0.447984 - buffered_flyover_wires.xml raygentop.v common 23.64 vpr 87.26 MiB 0.39 31872 -1 -1 3 1.51 -1 -1 43828 -1 -1 123 214 0 8 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 89352 214 305 2963 2869 1 1444 650 19 19 361 io clb auto 45.9 MiB 4.72 11369 231398 74152 135293 21953 87.3 MiB 2.16 0.03 4.81413 -2746.12 -4.81413 4.81413 0.60 0.00796315 0.00714187 0.791566 0.711054 -1 -1 -1 -1 64 23029 28 1.65001e+07 9.79696e+06 1.15406e+06 3196.84 8.51 3.3002 2.94744 35881 226057 -1 19740 15 5519 12704 1627954 469106 4.80072 4.80072 -2914.34 -4.80072 0 0 1.44847e+06 4012.38 0.10 0.92 0.36 -1 -1 0.10 0.422967 0.392398 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +shorted_flyover_wires.xml raygentop.v common 21.34 odin 1.51 GiB 10.42 1588180 -1 -1 3 0.82 -1 -1 40256 -1 -1 123 214 0 8 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 88708 214 305 2963 2869 1 1441 650 19 19 361 io clb auto 46.6 MiB 2.19 24028 11417 245468 84522 140289 20657 86.6 MiB 0.91 0.01 5.44161 4.44985 -2711.83 -4.44985 4.44985 0.22 0.0036036 0.00332323 0.350101 0.321011 -1 -1 -1 -1 62 24833 45 1.65001e+07 9.79696e+06 1.07728e+06 2984.15 3.72 1.37948 1.27017 35161 217957 -1 21028 18 6730 15878 2433481 654279 5.215 5.215 -3026.13 -5.215 0 0 1.33769e+06 3705.50 0.04 0.49 0.13 -1 -1 0.04 0.202402 0.191487 +buffered_flyover_wires.xml raygentop.v common 21.52 odin 1.54 GiB 10.85 1614668 -1 -1 3 0.83 -1 -1 40260 -1 -1 123 214 0 8 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 88816 214 305 2963 2869 1 1441 650 19 19 361 io clb auto 46.7 MiB 2.17 24520 12150 245468 84299 140070 21099 86.7 MiB 0.91 0.01 5.76052 4.50441 -2846.22 -4.50441 4.50441 0.22 0.0036495 0.00331524 0.34963 0.320924 -1 -1 -1 -1 64 25856 29 1.65001e+07 9.79696e+06 1.15406e+06 3196.84 3.52 1.26975 1.16892 35881 226057 -1 21156 15 6633 15933 2219536 617587 4.97633 4.97633 -3163.74 -4.97633 0 0 1.44847e+06 4012.38 0.04 0.44 0.14 -1 -1 0.04 0.182386 0.172674 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_fpu_hard_block_arch/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_fpu_hard_block_arch/config/golden_results.txt index b90ac6049e3..43da8d8e85b 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_fpu_hard_block_arch/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_fpu_hard_block_arch/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 total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time 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 - hard_fpu_arch_timing.xml mm3.v common 3.31 vpr 64.39 MiB 0.03 7296 -1 -1 1 0.04 -1 -1 34228 -1 -1 0 193 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 65940 193 32 545 422 1 289 227 21 21 441 io auto 25.0 MiB 1.91 3735 46591 19762 26388 441 64.4 MiB 0.33 0.00 2.985 -824.634 -2.985 2.985 0.00 0.00288823 0.00269357 0.190083 0.178688 -1 -1 -1 -1 4590 15.9375 1212 4.20833 431 431 162323 43530 809148 68766.3 979092. 2220.16 5 24050 197379 -1 2.985 2.985 -813.802 -2.985 -21.7856 -0.0851 0.43 -1 -1 64.4 MiB 0.09 0.239729 0.22641 64.4 MiB -1 0.09 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time 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 +hard_fpu_arch_timing.xml mm3.v common 2.92 odin 76.88 MiB 1.75 78720 -1 -1 1 0.03 -1 -1 30624 -1 -1 0 193 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 64292 193 32 545 422 1 289 227 21 21 441 io auto 23.2 MiB 0.38 5010 3747 45899 19410 26043 446 62.8 MiB 0.13 0.00 2.985 2.985 -824.872 -2.985 2.985 0.00 0.00102822 0.000970656 0.0710574 0.0670693 -1 -1 -1 -1 4610 16.0069 1211 4.20486 431 431 145305 38673 809148 68766.3 979092. 2220.16 6 24050 197379 -1 2.985 2.985 -813.692 -2.985 -21.8252 -0.0851 0.13 -1 -1 62.8 MiB 0.03 0.0906843 0.085784 62.8 MiB -1 0.04 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_fracturable_luts/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_fracturable_luts/config/golden_results.txt index 356e91ccb39..91c6bc9bce7 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_fracturable_luts/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_fracturable_luts/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 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 - k6_N8_I80_fleI10_fleO2_ff2_nmodes_2.xml ch_intrinsics.v common 3.01 vpr 67.75 MiB 0.06 9728 -1 -1 3 0.26 -1 -1 39908 -1 -1 69 99 1 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 69380 99 130 363 493 1 251 299 13 13 169 clb auto 28.2 MiB 0.66 756 79220 19640 31087 28493 67.8 MiB 0.16 0.00 36 1238 7 0 0 481804. 2850.91 0.62 +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 initial_placed_wirelength_est 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 +k6_N8_I80_fleI10_fleO2_ff2_nmodes_2.xml ch_intrinsics.v common 4.04 odin 102.38 MiB 2.28 104832 -1 -1 3 0.20 -1 -1 34096 -1 -1 71 99 1 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 68324 99 130 363 493 1 251 301 13 13 169 clb auto 26.7 MiB 0.40 2129 766 78925 23058 31147 24720 66.7 MiB 0.06 0.00 34 1460 7 0 0 460544. 2725.11 0.23 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_full_stats/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_full_stats/config/golden_results.txt index a8ea9747374..b2d02f39e8c 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_full_stats/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_full_stats/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 total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - k6_N10_mem32K_40nm.xml stereovision3.v common 1.21 vpr 66.19 MiB 0.08 10368 -1 -1 4 0.19 -1 -1 36516 -1 -1 19 11 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 67780 11 30 262 292 2 99 60 7 7 49 clb auto 27.2 MiB 0.09 431 1932 256 1610 66 66.2 MiB 0.04 0.00 2.45279 -183.914 -2.45279 2.30526 0.00 0.000582727 0.000489391 0.0185537 0.0162573 -1 -1 -1 -1 -1 458 24 1.07788e+06 1.02399e+06 90369.8 1844.28 0.07 0.0660847 0.0581726 -1 -1 -1 -1 -1 -1 -1 -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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +k6_N10_mem32K_40nm.xml stereovision3.v common 3.41 odin 167.25 MiB 2.50 171264 -1 -1 4 0.12 -1 -1 33080 -1 -1 20 11 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 67264 11 30 262 292 2 99 61 7 7 49 clb auto 26.0 MiB 0.04 688 427 2461 355 2028 78 65.7 MiB 0.02 0.00 2.92195 2.72416 -177.287 -2.72416 2.43773 0.00 0.000399205 0.000348503 0.0106789 0.00938853 -1 -1 -1 -1 -1 457 20 1.07788e+06 1.07788e+06 90369.8 1844.28 0.03 0.0308402 0.0270103 -1 -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_strong_odin/strong_func_formal_flow/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_func_formal_flow/config/golden_results.txt index 265af1c4b6f..a39697152a5 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_func_formal_flow/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_func_formal_flow/config/golden_results.txt @@ -1,21 +1,21 @@ - arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - k6_frac_N10_40nm.xml const_true.blif common 0.39 vpr 60.20 MiB -1 -1 -1 -1 0 0.02 -1 -1 33040 -1 -1 1 0 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 61648 -1 1 1 2 0 1 2 3 3 9 -1 auto 21.9 MiB 0.00 0 3 0 0 3 60.2 MiB 0.00 0.00 nan 0 0 nan 0.00 1.1661e-05 6.33e-06 7.7033e-05 5.0742e-05 -1 -1 -1 -1 -1 0 1 53894 53894 38783.3 4309.26 0.00 0.00147387 0.00140823 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - k6_frac_N10_40nm.xml const_false.blif common 0.38 vpr 60.24 MiB -1 -1 -1 -1 0 0.02 -1 -1 32912 -1 -1 1 0 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 61684 -1 1 1 2 0 1 2 3 3 9 -1 auto 21.9 MiB 0.00 0 3 0 0 3 60.2 MiB 0.00 0.00 nan 0 0 nan 0.00 1.1339e-05 5.859e-06 8.8591e-05 5.8829e-05 -1 -1 -1 -1 -1 0 1 53894 53894 38783.3 4309.26 0.00 0.00162493 0.00154875 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - k6_frac_N10_40nm.xml always_true.blif common 0.37 vpr 60.46 MiB -1 -1 -1 -1 0 0.02 -1 -1 32868 -1 -1 1 0 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 61908 6 1 1 8 0 1 8 3 3 9 -1 auto 22.1 MiB 0.00 0 21 0 10 11 60.5 MiB 0.00 0.00 nan 0 0 nan 0.00 1.3541e-05 7.635e-06 8.6471e-05 5.7499e-05 -1 -1 -1 -1 -1 0 1 53894 53894 38783.3 4309.26 0.00 0.00150205 0.00143129 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - k6_frac_N10_40nm.xml always_false.blif common 0.38 vpr 60.58 MiB -1 -1 -1 -1 0 0.02 -1 -1 32612 -1 -1 1 0 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 62036 6 1 1 8 0 1 8 3 3 9 -1 auto 22.3 MiB 0.00 0 21 0 10 11 60.6 MiB 0.00 0.00 nan 0 0 nan 0.00 1.7003e-05 9.772e-06 9.7802e-05 6.5568e-05 -1 -1 -1 -1 -1 0 1 53894 53894 38783.3 4309.26 0.00 0.00166482 0.00158779 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - k6_frac_N10_40nm.xml and.blif common 0.39 vpr 60.29 MiB -1 -1 -1 -1 1 0.03 -1 -1 33040 -1 -1 1 2 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 61732 2 1 3 4 0 3 4 3 3 9 -1 auto 21.9 MiB 0.00 9 9 3 3 3 60.3 MiB 0.00 0.00 0.67231 -0.67231 -0.67231 nan 0.00 1.5758e-05 1.1048e-05 0.000114967 8.6726e-05 -1 -1 -1 -1 -1 4 1 53894 53894 38783.3 4309.26 0.00 0.00169019 0.00161423 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - k6_frac_N10_40nm.xml multiconnected_lut.blif common 0.50 vpr 60.59 MiB -1 -1 -1 -1 1 0.05 -1 -1 34804 -1 -1 1 5 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 62040 5 1 6 7 0 6 7 3 3 9 -1 auto 22.1 MiB 0.00 18 18 13 5 0 60.6 MiB 0.00 0.00 0.67231 -0.67231 -0.67231 nan 0.00 2.5271e-05 1.9684e-05 0.000266101 0.000119821 -1 -1 -1 -1 -1 7 12 53894 53894 38783.3 4309.26 0.00 0.00203214 0.00174712 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - k6_frac_N10_40nm.xml multiconnected_lut2.blif common 0.51 vpr 60.46 MiB -1 -1 -1 -1 1 0.05 -1 -1 35364 -1 -1 1 5 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 61908 5 1 6 7 0 6 7 3 3 9 -1 auto 22.0 MiB 0.00 18 18 13 5 0 60.5 MiB 0.00 0.00 0.67231 -0.67231 -0.67231 nan 0.00 2.0382e-05 1.5156e-05 0.000144485 0.00011379 -1 -1 -1 -1 -1 7 12 53894 53894 38783.3 4309.26 0.00 0.00203203 0.0018606 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - k6_frac_N10_40nm.xml and_latch.blif common 0.35 vpr 60.57 MiB -1 -1 -1 -1 1 0.02 -1 -1 33216 -1 -1 1 3 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 62024 3 1 5 6 1 4 5 3 3 9 -1 auto 22.1 MiB 0.00 9 12 7 1 4 60.6 MiB 0.00 0.00 0.52647 -0.88231 -0.52647 0.52647 0.00 1.8755e-05 1.3531e-05 0.00012903 9.8796e-05 -1 -1 -1 -1 -1 4 1 53894 53894 38783.3 4309.26 0.00 0.00153901 0.00145183 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - k6_frac_N10_40nm.xml false_path_mux.blif common 0.50 vpr 60.45 MiB -1 -1 -1 -1 1 0.06 -1 -1 35348 -1 -1 1 3 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 61904 4 1 4 6 0 4 6 3 3 9 -1 auto 22.1 MiB 0.00 12 15 9 3 3 60.5 MiB 0.00 0.00 0.67231 -0.67231 -0.67231 nan 0.00 2.3369e-05 1.7039e-05 0.000173745 0.000138562 -1 -1 -1 -1 -1 6 12 53894 53894 38783.3 4309.26 0.00 0.00205463 0.00186426 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - k6_frac_N10_40nm.xml mult_2x2.blif common 0.47 vpr 60.48 MiB -1 -1 -1 -1 1 0.06 -1 -1 35020 -1 -1 1 4 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 61928 4 4 8 12 0 8 9 3 3 9 -1 auto 22.1 MiB 0.00 24 27 18 6 3 60.5 MiB 0.00 0.00 0.67231 -2.68924 -0.67231 nan 0.00 3.869e-05 2.9429e-05 0.000257326 0.00021682 -1 -1 -1 -1 -1 10 10 53894 53894 38783.3 4309.26 0.00 0.00244349 0.00222744 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - k6_frac_N10_40nm.xml mult_3x3.blif common 0.51 vpr 60.62 MiB -1 -1 -1 -1 1 0.07 -1 -1 36084 -1 -1 1 6 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 62076 6 6 12 18 0 12 13 3 3 9 -1 auto 22.1 MiB 0.01 36 43 32 7 4 60.6 MiB 0.00 0.00 0.69831 -4.13786 -0.69831 nan 0.00 7.4526e-05 6.3137e-05 0.000498869 0.000443741 -1 -1 -1 -1 -1 17 12 53894 53894 38783.3 4309.26 0.00 0.00383316 0.00343212 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - k6_frac_N10_40nm.xml mult_3x4.blif common 0.55 vpr 60.62 MiB -1 -1 -1 -1 2 0.07 -1 -1 35568 -1 -1 3 7 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 62076 7 8 22 30 0 15 18 4 4 16 clb auto 22.1 MiB 0.01 51 64 26 37 1 60.6 MiB 0.00 0.00 1.24888 -7.62396 -1.24888 nan 0.00 9.8331e-05 8.571e-05 0.000766204 0.000700688 -1 -1 -1 -1 -1 37 6 215576 161682 99039.1 6189.95 0.00 0.00447879 0.00416054 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - k6_frac_N10_40nm.xml mult_4x4.blif common 0.55 vpr 60.55 MiB -1 -1 -1 -1 4 0.08 -1 -1 35668 -1 -1 2 8 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 62004 8 8 29 37 0 21 18 4 4 16 clb auto 22.0 MiB 0.02 74 64 20 44 0 60.6 MiB 0.00 0.00 2.04839 -11.7951 -2.04839 nan 0.00 0.000135237 0.000115292 0.00112979 0.00104286 -1 -1 -1 -1 -1 53 12 215576 107788 99039.1 6189.95 0.01 0.00691358 0.00626039 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - k6_frac_N10_40nm.xml mult_5x5.blif common 0.61 vpr 60.96 MiB -1 -1 -1 -1 4 0.10 -1 -1 36048 -1 -1 4 10 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 62424 10 10 47 57 0 39 24 4 4 16 clb auto 22.1 MiB 0.02 149 92 35 57 0 61.0 MiB 0.00 0.00 2.73035 -18.1288 -2.73035 nan 0.00 0.000225575 0.000203726 0.00149243 0.00139063 -1 -1 -1 -1 -1 123 10 215576 215576 99039.1 6189.95 0.01 0.00763482 0.00712644 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - k6_frac_N10_40nm.xml mult_5x6.blif common 0.83 vpr 60.83 MiB -1 -1 -1 -1 5 0.15 -1 -1 36408 -1 -1 5 11 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 62288 11 11 61 72 0 51 27 5 5 25 clb auto 21.9 MiB 0.03 192 547 116 431 0 60.8 MiB 0.01 0.00 3.17925 -21.2667 -3.17925 nan 0.00 0.000354484 0.000320379 0.00678629 0.00617992 -1 -1 -1 -1 -1 163 16 485046 269470 186194. 7447.77 0.02 0.0240229 0.0219824 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - k6_frac_N10_40nm.xml rca_1bit.blif common 0.49 vpr 60.46 MiB -1 -1 -1 -1 1 0.06 -1 -1 34452 -1 -1 1 3 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 61912 3 2 5 7 0 5 6 3 3 9 -1 auto 22.0 MiB 0.00 15 15 9 5 1 60.5 MiB 0.00 0.00 0.67231 -1.34462 -0.67231 nan 0.00 3.2064e-05 2.4155e-05 0.000200579 0.000160863 -1 -1 -1 -1 -1 6 12 53894 53894 38783.3 4309.26 0.00 0.00242941 0.00220554 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - k6_frac_N10_40nm.xml rca_2bit.blif common 0.46 vpr 60.28 MiB -1 -1 -1 -1 1 0.06 -1 -1 35352 -1 -1 1 5 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 61728 5 3 8 11 0 8 9 3 3 9 -1 auto 21.9 MiB 0.00 24 27 21 6 0 60.3 MiB 0.00 0.00 0.67231 -2.01693 -0.67231 nan 0.00 3.5791e-05 2.5977e-05 0.000240831 0.000201092 -1 -1 -1 -1 -1 10 16 53894 53894 38783.3 4309.26 0.00 0.00270512 0.00243979 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - k6_frac_N10_40nm.xml rca_3bit.blif common 0.52 vpr 60.61 MiB -1 -1 -1 -1 2 0.06 -1 -1 35400 -1 -1 1 7 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 62060 7 4 12 16 0 11 12 3 3 9 -1 auto 22.3 MiB 0.01 33 38 24 11 3 60.6 MiB 0.00 0.00 1.08437 -4.00246 -1.08437 nan 0.00 4.7612e-05 3.9433e-05 0.000326091 0.000287024 -1 -1 -1 -1 -1 17 4 53894 53894 38783.3 4309.26 0.00 0.00528941 0.00513278 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - k6_frac_N10_40nm.xml rca_4bit.blif common 0.64 vpr 60.55 MiB -1 -1 -1 -1 2 0.07 -1 -1 35520 -1 -1 1 9 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 62008 9 5 15 20 0 14 15 3 3 9 -1 auto 22.2 MiB 0.01 42 51 29 17 5 60.6 MiB 0.00 0.00 1.00731 -4.36655 -1.00731 nan 0.00 8.1588e-05 7.0424e-05 0.000516653 0.000461489 -1 -1 -1 -1 -1 17 14 53894 53894 38783.3 4309.26 0.01 0.00432254 0.00385687 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - k6_frac_N10_40nm.xml rca_5bit.blif common 0.56 vpr 60.67 MiB -1 -1 -1 -1 3 0.07 -1 -1 35440 -1 -1 1 11 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 62124 11 6 19 25 0 17 18 3 3 9 -1 auto 22.1 MiB 0.01 51 64 33 24 7 60.7 MiB 0.00 0.00 1.34231 -6.71386 -1.34231 nan 0.00 5.6728e-05 4.4391e-05 0.000433977 0.000387108 -1 -1 -1 -1 -1 25 11 53894 53894 38783.3 4309.26 0.00 0.00412344 0.0036326 -1 -1 -1 -1 -1 -1 -1 -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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +k6_frac_N10_40nm.xml const_true.blif common 0.34 vpr 58.67 MiB -1 -1 -1 -1 0 0.02 -1 -1 29684 -1 -1 1 0 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 60076 -1 1 1 2 0 1 2 3 3 9 -1 auto 20.2 MiB 0.00 0 0 3 0 0 3 58.7 MiB 0.00 0.00 nan nan 0 0 nan 0.00 7.089e-06 3.317e-06 5.6683e-05 3.778e-05 -1 -1 -1 -1 -1 0 1 53894 53894 38783.3 4309.26 0.00 0.000889494 0.000836499 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6_frac_N10_40nm.xml const_false.blif common 0.34 vpr 59.04 MiB -1 -1 -1 -1 0 0.02 -1 -1 29676 -1 -1 1 0 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 60460 -1 1 1 2 0 1 2 3 3 9 -1 auto 20.2 MiB 0.00 0 0 3 0 0 3 59.0 MiB 0.00 0.00 nan nan 0 0 nan 0.00 7.199e-06 3.438e-06 5.6499e-05 3.6758e-05 -1 -1 -1 -1 -1 0 1 53894 53894 38783.3 4309.26 0.00 0.00086748 0.000809475 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6_frac_N10_40nm.xml always_true.blif common 0.35 vpr 58.36 MiB -1 -1 -1 -1 0 0.02 -1 -1 29952 -1 -1 1 0 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 59760 6 1 1 8 0 1 8 3 3 9 -1 auto 19.5 MiB 0.00 0 0 21 0 10 11 58.4 MiB 0.00 0.00 nan nan 0 0 nan 0.00 7.125e-06 3.333e-06 5.6385e-05 3.6627e-05 -1 -1 -1 -1 -1 0 1 53894 53894 38783.3 4309.26 0.00 0.000917244 0.000850516 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6_frac_N10_40nm.xml always_false.blif common 0.34 vpr 58.55 MiB -1 -1 -1 -1 0 0.02 -1 -1 29952 -1 -1 1 0 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 59956 6 1 1 8 0 1 8 3 3 9 -1 auto 19.7 MiB 0.00 0 0 21 0 10 11 58.6 MiB 0.00 0.00 nan nan 0 0 nan 0.00 7.243e-06 3.368e-06 5.7388e-05 3.8084e-05 -1 -1 -1 -1 -1 0 1 53894 53894 38783.3 4309.26 0.00 0.000924173 0.000870894 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6_frac_N10_40nm.xml and.blif common 0.34 vpr 59.04 MiB -1 -1 -1 -1 1 0.02 -1 -1 29952 -1 -1 1 2 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 60460 2 1 3 4 0 3 4 3 3 9 -1 auto 20.6 MiB 0.00 9 9 9 3 3 3 59.0 MiB 0.00 0.00 0.749366 0.67231 -0.67231 -0.67231 nan 0.00 8.568e-06 5.408e-06 7.134e-05 5.2207e-05 -1 -1 -1 -1 -1 4 1 53894 53894 38783.3 4309.26 0.00 0.000943335 0.000884471 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6_frac_N10_40nm.xml multiconnected_lut.blif common 0.40 vpr 58.47 MiB -1 -1 -1 -1 1 0.03 -1 -1 31872 -1 -1 1 5 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 59876 5 1 6 7 0 6 7 3 3 9 -1 auto 20.0 MiB 0.00 18 18 18 13 5 0 58.5 MiB 0.00 0.00 0.749366 0.67231 -0.67231 -0.67231 nan 0.00 1.1859e-05 8.393e-06 9.4908e-05 7.4463e-05 -1 -1 -1 -1 -1 7 12 53894 53894 38783.3 4309.26 0.00 0.00118215 0.00106723 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6_frac_N10_40nm.xml multiconnected_lut2.blif common 0.38 vpr 58.44 MiB -1 -1 -1 -1 1 0.03 -1 -1 31456 -1 -1 1 5 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 59840 5 1 6 7 0 6 7 3 3 9 -1 auto 19.6 MiB 0.00 18 18 18 13 5 0 58.4 MiB 0.00 0.00 0.749366 0.67231 -0.67231 -0.67231 nan 0.00 1.1739e-05 8.203e-06 0.000106965 8.6112e-05 -1 -1 -1 -1 -1 7 12 53894 53894 38783.3 4309.26 0.00 0.0011722 0.00105647 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6_frac_N10_40nm.xml and_latch.blif common 0.31 vpr 58.76 MiB -1 -1 -1 -1 1 0.02 -1 -1 29888 -1 -1 1 3 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 60172 3 1 5 6 1 4 5 3 3 9 -1 auto 20.3 MiB 0.00 9 9 12 7 1 4 58.8 MiB 0.00 0.00 0.603526 0.52647 -0.88231 -0.52647 0.52647 0.00 1.1008e-05 7.698e-06 8.9061e-05 6.8418e-05 -1 -1 -1 -1 -1 4 1 53894 53894 38783.3 4309.26 0.00 0.00102668 0.000965951 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6_frac_N10_40nm.xml false_path_mux.blif common 0.39 vpr 59.05 MiB -1 -1 -1 -1 1 0.03 -1 -1 31816 -1 -1 1 3 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 60464 4 1 4 6 0 4 6 3 3 9 -1 auto 20.2 MiB 0.00 12 12 15 9 3 3 59.0 MiB 0.00 0.00 0.749366 0.67231 -0.67231 -0.67231 nan 0.00 1.0053e-05 6.686e-06 8.6436e-05 6.5007e-05 -1 -1 -1 -1 -1 6 12 53894 53894 38783.3 4309.26 0.00 0.00107231 0.000965027 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6_frac_N10_40nm.xml mult_2x2.blif common 0.40 vpr 59.06 MiB -1 -1 -1 -1 1 0.03 -1 -1 31488 -1 -1 1 4 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 60476 4 4 8 12 0 8 9 3 3 9 -1 auto 20.6 MiB 0.00 24 24 27 18 6 3 59.1 MiB 0.00 0.00 0.749366 0.67231 -2.68924 -0.67231 nan 0.00 1.9318e-05 1.3972e-05 0.000158654 0.000133247 -1 -1 -1 -1 -1 12 10 53894 53894 38783.3 4309.26 0.00 0.00140163 0.00127272 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6_frac_N10_40nm.xml mult_3x3.blif common 0.37 vpr 59.46 MiB -1 -1 -1 -1 1 0.04 -1 -1 31964 -1 -1 1 6 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 60884 6 6 12 18 0 12 13 3 3 9 -1 auto 20.6 MiB 0.00 36 36 43 32 7 4 59.5 MiB 0.00 0.00 0.775365 0.69831 -4.13786 -0.69831 nan 0.00 2.7042e-05 2.2564e-05 0.000247601 0.000221527 -1 -1 -1 -1 -1 15 12 53894 53894 38783.3 4309.26 0.00 0.00183205 0.00165112 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6_frac_N10_40nm.xml mult_3x4.blif common 0.44 vpr 58.50 MiB -1 -1 -1 -1 2 0.04 -1 -1 32092 -1 -1 3 7 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 59908 7 8 22 30 0 15 18 4 4 16 clb auto 19.9 MiB 0.01 62 51 64 26 37 1 58.5 MiB 0.00 0.00 1.24888 1.24888 -7.62396 -1.24888 nan 0.00 4.8704e-05 4.2552e-05 0.000465724 0.000435078 -1 -1 -1 -1 -1 37 6 215576 161682 99039.1 6189.95 0.00 0.0025176 0.00234313 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6_frac_N10_40nm.xml mult_4x4.blif common 0.43 vpr 58.89 MiB -1 -1 -1 -1 4 0.04 -1 -1 32472 -1 -1 2 8 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 60308 8 8 29 37 0 21 18 4 4 16 clb auto 20.2 MiB 0.01 82 74 64 20 44 0 58.9 MiB 0.00 0.00 2.04839 2.04839 -11.7951 -2.04839 nan 0.00 6.6449e-05 5.7293e-05 0.000651925 0.000612325 -1 -1 -1 -1 -1 53 12 215576 107788 99039.1 6189.95 0.00 0.00383257 0.00350913 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6_frac_N10_40nm.xml mult_5x5.blif common 0.48 vpr 59.43 MiB -1 -1 -1 -1 4 0.06 -1 -1 32828 -1 -1 4 10 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 60860 10 10 47 57 0 39 24 4 4 16 clb auto 20.2 MiB 0.01 161 149 92 35 57 0 59.4 MiB 0.00 0.00 2.80144 2.73035 -18.1288 -2.73035 nan 0.00 9.807e-05 8.8114e-05 0.000986347 0.000939221 -1 -1 -1 -1 -1 120 10 215576 215576 99039.1 6189.95 0.01 0.00527492 0.00488366 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6_frac_N10_40nm.xml mult_5x6.blif common 0.55 vpr 59.18 MiB -1 -1 -1 -1 5 0.07 -1 -1 32492 -1 -1 5 11 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 60604 11 11 61 72 0 49 27 5 5 25 clb auto 20.2 MiB 0.02 227 192 427 90 337 0 59.2 MiB 0.00 0.00 3.28962 3.19291 -21.0185 -3.19291 nan 0.00 0.000132308 0.000120709 0.00247373 0.00230808 -1 -1 -1 -1 -1 193 14 485046 269470 186194. 7447.77 0.01 0.00907418 0.0082901 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6_frac_N10_40nm.xml rca_1bit.blif common 0.39 vpr 58.82 MiB -1 -1 -1 -1 1 0.03 -1 -1 31076 -1 -1 1 3 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 60236 3 2 5 7 0 5 6 3 3 9 -1 auto 20.0 MiB 0.00 15 15 15 9 5 1 58.8 MiB 0.00 0.00 0.749366 0.67231 -1.34462 -0.67231 nan 0.00 1.2937e-05 9.527e-06 0.000111053 8.9028e-05 -1 -1 -1 -1 -1 6 12 53894 53894 38783.3 4309.26 0.00 0.00124373 0.00111746 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6_frac_N10_40nm.xml rca_2bit.blif common 0.37 vpr 59.06 MiB -1 -1 -1 -1 1 0.03 -1 -1 32248 -1 -1 1 5 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 60476 5 3 8 11 0 8 9 3 3 9 -1 auto 20.6 MiB 0.00 24 24 27 21 6 0 59.1 MiB 0.00 0.00 0.749366 0.67231 -2.01693 -0.67231 nan 0.00 1.8848e-05 1.3648e-05 0.000147542 0.000123211 -1 -1 -1 -1 -1 10 16 53894 53894 38783.3 4309.26 0.00 0.00160521 0.0014395 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6_frac_N10_40nm.xml rca_3bit.blif common 0.40 vpr 59.07 MiB -1 -1 -1 -1 2 0.03 -1 -1 32248 -1 -1 1 7 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 60488 7 4 12 16 0 11 12 3 3 9 -1 auto 20.3 MiB 0.00 33 33 38 24 11 3 59.1 MiB 0.00 0.00 1.08437 1.08437 -4.00246 -1.08437 nan 0.00 2.2911e-05 1.8441e-05 0.000197494 0.000174107 -1 -1 -1 -1 -1 17 4 53894 53894 38783.3 4309.26 0.00 0.00143759 0.00133696 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6_frac_N10_40nm.xml rca_4bit.blif common 0.39 vpr 58.84 MiB -1 -1 -1 -1 2 0.04 -1 -1 32248 -1 -1 1 9 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 60252 9 5 15 20 0 14 15 3 3 9 -1 auto 20.0 MiB 0.00 42 42 51 29 17 5 58.8 MiB 0.00 0.00 1.08437 1.00731 -4.36655 -1.00731 nan 0.00 2.7047e-05 2.2343e-05 0.000265248 0.00023853 -1 -1 -1 -1 -1 17 14 53894 53894 38783.3 4309.26 0.00 0.00193659 0.00174421 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6_frac_N10_40nm.xml rca_5bit.blif common 0.41 vpr 58.64 MiB -1 -1 -1 -1 3 0.03 -1 -1 32248 -1 -1 1 11 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 60048 11 6 19 25 0 17 18 3 3 9 -1 auto 19.8 MiB 0.00 51 51 64 36 21 7 58.6 MiB 0.00 0.00 1.41937 1.34231 -6.71386 -1.34231 nan 0.00 3.3381e-05 2.6743e-05 0.000296707 0.000268415 -1 -1 -1 -1 -1 21 11 53894 53894 38783.3 4309.26 0.00 0.00209724 0.00191061 -1 -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_strong_odin/strong_func_formal_vpr/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_func_formal_vpr/config/golden_results.txt index 33183dc0a9f..9c8f24bb57f 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_func_formal_vpr/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_func_formal_vpr/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 ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - k6_frac_N10_40nm.xml const_true.blif common 0.33 vpr 60.57 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1 0 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 62024 -1 1 1 2 0 1 2 3 3 9 -1 auto 22.3 MiB 0.00 0 3 0 0 3 60.6 MiB 0.00 0.00 nan 0 0 nan 0.00 1.3821e-05 7.858e-06 8.9635e-05 6.0426e-05 -1 -1 -1 -1 -1 0 1 53894 53894 20487.3 2276.37 0.00 0.00127569 0.00120513 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - k6_frac_N10_40nm.xml const_false.blif common 0.27 vpr 60.31 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1 0 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 61760 -1 1 1 2 0 1 2 3 3 9 -1 auto 22.0 MiB 0.00 0 3 0 0 3 60.3 MiB 0.00 0.00 nan 0 0 nan 0.00 1.2203e-05 6.662e-06 7.9048e-05 5.258e-05 -1 -1 -1 -1 -1 0 1 53894 53894 20487.3 2276.37 0.00 0.00167909 0.00160437 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - k6_frac_N10_40nm.xml always_true.blif common 0.30 vpr 60.27 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1 6 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 61712 6 1 7 8 0 7 8 3 3 9 -1 auto 22.1 MiB 0.00 21 21 14 7 0 60.3 MiB 0.00 0.00 0.69831 -0.69831 -0.69831 nan 0.00 3.2696e-05 2.3426e-05 0.000197822 0.000159059 -1 -1 -1 -1 -1 10 1 53894 53894 20487.3 2276.37 0.00 0.0018336 0.0017293 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - k6_frac_N10_40nm.xml always_false.blif common 0.27 vpr 60.58 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1 6 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 62036 6 1 7 8 0 7 8 3 3 9 -1 auto 22.3 MiB 0.00 21 21 14 7 0 60.6 MiB 0.00 0.00 0.69831 -0.69831 -0.69831 nan 0.00 2.7376e-05 1.9376e-05 0.000172772 0.000138442 -1 -1 -1 -1 -1 10 1 53894 53894 20487.3 2276.37 0.00 0.00173443 0.0016423 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - k6_frac_N10_40nm.xml multiconnected_lut.blif common 0.26 vpr 60.36 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1 5 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 61804 5 1 6 7 0 6 7 3 3 9 -1 auto 22.1 MiB 0.00 18 18 13 5 0 60.4 MiB 0.00 0.00 0.69831 -0.69831 -0.69831 nan 0.00 2.1966e-05 1.6158e-05 0.000132177 0.000102284 -1 -1 -1 -1 -1 7 1 53894 53894 20487.3 2276.37 0.00 0.00191949 0.00184253 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - k6_frac_N10_40nm.xml multiconnected_lut2.blif common 0.34 vpr 60.59 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1 5 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 62040 5 1 6 7 0 6 7 3 3 9 -1 auto 22.1 MiB 0.00 18 18 13 5 0 60.6 MiB 0.00 0.00 0.69831 -0.69831 -0.69831 nan 0.00 2.5373e-05 1.8911e-05 0.000175189 0.000138808 -1 -1 -1 -1 -1 7 1 53894 53894 20487.3 2276.37 0.00 0.00175813 0.00166803 -1 -1 -1 -1 -1 -1 -1 -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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +k6_frac_N10_40nm.xml const_true.blif common 0.23 vpr 58.66 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1 0 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 60072 -1 1 1 2 0 1 2 3 3 9 -1 auto 20.2 MiB 0.00 0 0 3 0 0 3 58.7 MiB 0.00 0.00 nan nan 0 0 nan 0.00 7.41e-06 3.582e-06 5.4963e-05 3.5971e-05 -1 -1 -1 -1 -1 0 1 53894 53894 20487.3 2276.37 0.00 0.000865124 0.000812185 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6_frac_N10_40nm.xml const_false.blif common 0.21 vpr 59.04 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1 0 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 60460 -1 1 1 2 0 1 2 3 3 9 -1 auto 20.2 MiB 0.00 0 0 3 0 0 3 59.0 MiB 0.00 0.00 nan nan 0 0 nan 0.00 7.345e-06 3.614e-06 5.5264e-05 3.6499e-05 -1 -1 -1 -1 -1 0 1 53894 53894 20487.3 2276.37 0.00 0.000882878 0.000829048 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6_frac_N10_40nm.xml always_true.blif common 0.23 vpr 59.04 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1 6 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 60460 6 1 7 8 0 7 8 3 3 9 -1 auto 20.2 MiB 0.00 21 21 21 14 7 0 59.0 MiB 0.00 0.00 0.775365 0.69831 -0.69831 -0.69831 nan 0.00 1.3883e-05 9.097e-06 9.7954e-05 7.7169e-05 -1 -1 -1 -1 -1 10 1 53894 53894 20487.3 2276.37 0.00 0.00101724 0.000957538 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6_frac_N10_40nm.xml always_false.blif common 0.22 vpr 59.05 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1 6 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 60464 6 1 7 8 0 7 8 3 3 9 -1 auto 20.2 MiB 0.00 21 21 21 14 7 0 59.0 MiB 0.00 0.00 0.775365 0.69831 -0.69831 -0.69831 nan 0.00 1.4054e-05 9.237e-06 0.000103459 8.117e-05 -1 -1 -1 -1 -1 10 1 53894 53894 20487.3 2276.37 0.00 0.00100695 0.000945272 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6_frac_N10_40nm.xml multiconnected_lut.blif common 0.24 vpr 58.32 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1 5 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 59720 5 1 6 7 0 6 7 3 3 9 -1 auto 19.5 MiB 0.00 18 18 18 13 5 0 58.3 MiB 0.00 0.00 0.775365 0.69831 -0.69831 -0.69831 nan 0.00 1.2891e-05 9.225e-06 0.000102343 8.0654e-05 -1 -1 -1 -1 -1 7 1 53894 53894 20487.3 2276.37 0.00 0.00102367 0.000961224 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6_frac_N10_40nm.xml multiconnected_lut2.blif common 0.25 vpr 59.42 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1 5 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 60844 5 1 6 7 0 6 7 3 3 9 -1 auto 20.7 MiB 0.00 18 18 18 13 5 0 59.4 MiB 0.00 0.00 0.775365 0.69831 -0.69831 -0.69831 nan 0.00 1.213e-05 8.696e-06 0.000106784 8.1447e-05 -1 -1 -1 -1 -1 7 1 53894 53894 20487.3 2276.37 0.00 0.000983793 0.000910586 -1 -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_strong_odin/strong_global_nonuniform/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_global_nonuniform/config/golden_results.txt index eaf5555874c..049137ed642 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_global_nonuniform/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_global_nonuniform/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 ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - x_gaussian_y_uniform.xml stereovision3.v common 1.83 vpr 66.90 MiB 0.07 10496 -1 -1 4 0.18 -1 -1 36452 -1 -1 13 11 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 68504 11 30 262 292 2 110 54 7 7 49 clb auto 28.0 MiB 0.20 415 2196 413 1711 72 66.9 MiB 0.04 0.00 1.91988 -135.359 -1.91988 1.85222 0.01 0.0007561 0.000646489 0.0218848 0.0192021 -1 -1 -1 -1 12 302 11 1.07788e+06 700622 -1 -1 0.20 0.128028 0.113742 2680 3516 -1 297 3 164 241 11232 5767 1.91988 1.85222 -135.359 -1.91988 0 0 -1 -1 0.00 0.03 0.01 -1 -1 0.00 0.0191965 0.0182163 - x_uniform_y_gaussian.xml stereovision3.v common 1.88 vpr 67.18 MiB 0.07 10624 -1 -1 4 0.21 -1 -1 36664 -1 -1 13 11 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 68792 11 30 262 292 2 110 54 7 7 49 clb auto 28.1 MiB 0.13 404 2298 458 1774 66 67.2 MiB 0.03 0.00 1.91988 -135.359 -1.91988 1.85222 0.00 0.000687045 0.000583062 0.0174363 0.0155371 -1 -1 -1 -1 12 308 8 1.07788e+06 700622 -1 -1 0.31 0.110517 0.0976349 2680 3516 -1 297 3 168 247 11340 5786 1.91988 1.85222 -135.359 -1.91988 0 0 -1 -1 0.00 0.03 0.01 -1 -1 0.00 0.0178597 0.0169935 - x_gaussian_y_gaussian.xml stereovision3.v common 1.87 vpr 66.84 MiB 0.06 10496 -1 -1 4 0.16 -1 -1 36536 -1 -1 13 11 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 68444 11 30 262 292 2 110 54 7 7 49 clb auto 27.9 MiB 0.18 410 2298 443 1773 82 66.8 MiB 0.05 0.00 1.91988 -135.359 -1.91988 1.85222 0.01 0.000756768 0.000647761 0.0255781 0.0225686 -1 -1 -1 -1 14 303 4 1.07788e+06 700622 -1 -1 0.40 0.162052 0.141633 2680 3516 -1 295 3 165 244 11438 5780 1.91988 1.85222 -135.359 -1.91988 0 0 -1 -1 0.00 0.03 0.00 -1 -1 0.00 0.0211596 0.0200797 - x_delta_y_uniform.xml stereovision3.v common 1.95 vpr 67.15 MiB 0.06 10496 -1 -1 4 0.21 -1 -1 36504 -1 -1 13 11 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 68764 11 30 262 292 2 110 54 7 7 49 clb auto 28.2 MiB 0.14 450 3012 620 2301 91 67.2 MiB 0.05 0.00 1.91988 -135.359 -1.91988 1.85222 0.01 0.000754694 0.000686961 0.028 0.0247412 -1 -1 -1 -1 48 342 3 1.07788e+06 700622 -1 -1 0.49 0.268135 0.232895 2680 3516 -1 342 3 170 251 11060 5468 1.91988 1.85222 -135.359 -1.91988 0 0 -1 -1 0.00 0.03 0.01 -1 -1 0.00 0.0196307 0.0186303 - x_delta_y_delta.xml stereovision3.v common 2.11 vpr 67.59 MiB 0.07 10496 -1 -1 4 0.22 -1 -1 36664 -1 -1 13 11 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 69212 11 30 262 292 2 110 54 7 7 49 clb auto 28.0 MiB 0.13 519 3012 615 2292 105 67.6 MiB 0.05 0.00 1.91988 -135.359 -1.91988 1.85222 0.01 0.000782235 0.000651544 0.0273675 0.0237579 -1 -1 -1 -1 54 442 17 1.07788e+06 700622 -1 -1 0.52 0.268766 0.234157 2680 3516 -1 431 4 215 308 16404 8615 1.91988 1.85222 -135.359 -1.91988 0 0 -1 -1 0.00 0.04 0.01 -1 -1 0.00 0.0214181 0.0202532 - x_uniform_y_delta.xml stereovision3.v common 2.05 vpr 67.14 MiB 0.07 10496 -1 -1 4 0.21 -1 -1 36668 -1 -1 13 11 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 68756 11 30 262 292 2 110 54 7 7 49 clb auto 28.2 MiB 0.15 435 2502 457 1952 93 67.1 MiB 0.05 0.00 1.91988 -135.359 -1.91988 1.85222 0.01 0.000965335 0.000843275 0.027473 0.0239971 -1 -1 -1 -1 34 323 16 1.07788e+06 700622 -1 -1 0.51 0.30529 0.26214 2680 3516 -1 317 16 376 682 28098 12512 1.91988 1.85222 -135.359 -1.91988 0 0 -1 -1 0.00 0.06 0.01 -1 -1 0.00 0.0352499 0.0319547 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +x_gaussian_y_uniform.xml stereovision3.v common 3.79 odin 167.62 MiB 2.53 171648 -1 -1 4 0.12 -1 -1 33076 -1 -1 13 11 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 67216 11 30 262 292 2 107 54 7 7 49 clb auto 26.7 MiB 0.06 616 394 1788 342 1398 48 65.6 MiB 0.02 0.00 1.85341 1.85341 -135.015 -1.85341 1.81987 0.00 0.000394558 0.000343514 0.00983066 0.00882096 -1 -1 -1 -1 10 309 8 1.07788e+06 700622 -1 -1 0.14 0.0540553 0.0467468 2680 3516 -1 281 3 216 332 13740 6540 1.85341 1.81987 -135.015 -1.85341 0 0 -1 -1 0.00 0.02 0.00 -1 -1 0.00 0.0110537 0.0104942 +x_uniform_y_gaussian.xml stereovision3.v common 3.74 odin 167.25 MiB 2.55 171264 -1 -1 4 0.12 -1 -1 33232 -1 -1 13 11 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 67052 11 30 262 292 2 107 54 7 7 49 clb auto 26.5 MiB 0.06 616 416 1584 291 1249 44 65.5 MiB 0.02 0.00 1.85341 1.85341 -135.015 -1.85341 1.81987 0.00 0.000398166 0.000347484 0.00915684 0.00820103 -1 -1 -1 -1 14 315 2 1.07788e+06 700622 -1 -1 0.07 0.0511739 0.044167 2680 3516 -1 312 2 155 239 9997 5015 1.85341 1.81987 -135.015 -1.85341 0 0 -1 -1 0.00 0.01 0.00 -1 -1 0.00 0.0106007 0.0101553 +x_gaussian_y_gaussian.xml stereovision3.v common 4.09 odin 167.62 MiB 2.87 171648 -1 -1 4 0.12 -1 -1 33092 -1 -1 13 11 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66724 11 30 262 292 2 107 54 7 7 49 clb auto 26.2 MiB 0.07 616 414 2094 382 1620 92 65.2 MiB 0.02 0.00 1.85341 1.85341 -135.015 -1.85341 1.81987 0.00 0.000407004 0.00035303 0.0114405 0.0101707 -1 -1 -1 -1 14 297 3 1.07788e+06 700622 -1 -1 0.07 0.0544621 0.0470729 2680 3516 -1 298 16 183 323 13761 7064 1.85341 1.81987 -135.015 -1.85341 0 0 -1 -1 0.00 0.03 0.00 -1 -1 0.00 0.0194151 0.0174723 +x_delta_y_uniform.xml stereovision3.v common 3.79 odin 167.62 MiB 2.50 171648 -1 -1 4 0.12 -1 -1 33076 -1 -1 13 11 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 67272 11 30 262 292 2 107 54 7 7 49 clb auto 26.4 MiB 0.06 616 433 2604 491 2026 87 65.7 MiB 0.02 0.00 1.85341 1.85341 -135.015 -1.85341 1.81987 0.00 0.000398035 0.000342425 0.013054 0.0115899 -1 -1 -1 -1 38 323 9 1.07788e+06 700622 -1 -1 0.15 0.0912421 0.0775499 2680 3516 -1 318 3 165 251 11417 5738 1.85341 1.81987 -135.015 -1.85341 0 0 -1 -1 0.00 0.02 0.00 -1 -1 0.00 0.0116648 0.0110807 +x_delta_y_delta.xml stereovision3.v common 3.94 odin 167.62 MiB 2.63 171648 -1 -1 4 0.13 -1 -1 33080 -1 -1 13 11 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 67316 11 30 262 292 2 107 54 7 7 49 clb auto 26.4 MiB 0.06 616 488 3114 640 2376 98 65.7 MiB 0.03 0.00 1.85341 1.85341 -135.015 -1.85341 1.81987 0.00 0.000397581 0.000346847 0.0150194 0.0132722 -1 -1 -1 -1 54 378 8 1.07788e+06 700622 -1 -1 0.15 0.0912923 0.077708 2680 3516 -1 377 4 186 272 12468 6162 1.85341 1.81987 -135.015 -1.85341 0 0 -1 -1 0.00 0.02 0.00 -1 -1 0.00 0.0121325 0.0114634 +x_uniform_y_delta.xml stereovision3.v common 3.83 odin 167.62 MiB 2.54 171648 -1 -1 4 0.12 -1 -1 33108 -1 -1 13 11 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 67272 11 30 262 292 2 107 54 7 7 49 clb auto 26.4 MiB 0.07 616 423 2196 403 1708 85 65.7 MiB 0.02 0.00 1.85341 1.85341 -135.015 -1.85341 1.81987 0.00 0.000402032 0.0003504 0.0118642 0.0105316 -1 -1 -1 -1 38 306 15 1.07788e+06 700622 -1 -1 0.15 0.0944893 0.0801165 2680 3516 -1 305 15 191 335 14110 6670 1.85341 1.81987 -135.015 -1.85341 0 0 -1 -1 0.00 0.03 0.00 -1 -1 0.00 0.018365 0.0165829 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_global_routing/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_global_routing/config/golden_results.txt index a4fce4cf22f..3cbac41fce1 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_global_routing/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_global_routing/config/golden_results.txt @@ -1,4 +1,4 @@ - arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - timing/k6_N10_mem32K_40nm.xml stereovision3.v common 2.02 vpr 67.00 MiB 0.08 10496 -1 -1 4 0.20 -1 -1 36452 -1 -1 19 11 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 68608 11 30 262 292 2 99 60 7 7 49 clb auto 27.4 MiB 0.11 419 1815 318 1436 61 67.0 MiB 0.04 0.00 1.93141 -140.772 -1.93141 1.88461 0.01 0.000706488 0.000606458 0.0228093 0.0209659 -1 -1 -1 -1 8 283 18 1.07788e+06 1.02399e+06 -1 -1 0.38 0.186498 0.171178 2100 3116 -1 280 18 572 1139 59841 29637 1.93141 1.88461 -140.772 -1.93141 0 0 -1 -1 0.00 0.07 0.00 -1 -1 0.00 0.0346595 0.0310733 - nonuniform_chan_width/k6_N10_mem32K_40nm_nonuniform.xml stereovision3.v common 2.04 vpr 66.32 MiB 0.07 10496 -1 -1 4 0.26 -1 -1 36580 -1 -1 19 11 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 67916 11 30 262 292 2 99 60 7 7 49 clb auto 27.3 MiB 0.08 428 1698 248 1401 49 66.3 MiB 0.04 0.00 1.93141 -140.772 -1.93141 1.88461 0.01 0.000764131 0.000648712 0.0183265 0.0161998 -1 -1 -1 -1 10 297 21 1.07788e+06 1.02399e+06 -1 -1 0.45 0.176554 0.15406 2100 3116 -1 286 18 539 1058 53794 27022 1.93141 1.88461 -140.772 -1.93141 0 0 -1 -1 0.00 0.08 0.00 -1 -1 0.00 0.0402826 0.0356284 - nonuniform_chan_width/k6_N10_mem32K_40nm_pulse.xml stereovision3.v common 1.99 vpr 66.21 MiB 0.09 10368 -1 -1 4 0.24 -1 -1 36668 -1 -1 19 11 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 67800 11 30 262 292 2 99 60 7 7 49 clb auto 27.1 MiB 0.09 447 1815 292 1481 42 66.2 MiB 0.07 0.00 1.93141 -140.772 -1.93141 1.88461 0.01 0.00090328 0.000782565 0.0181809 0.0161296 -1 -1 -1 -1 16 296 17 1.07788e+06 1.02399e+06 -1 -1 0.25 0.115099 0.100427 2100 3116 -1 300 17 545 1102 57605 27890 1.93141 1.88461 -140.772 -1.93141 0 0 -1 -1 0.00 0.12 0.01 -1 -1 0.00 0.0397962 0.0356125 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +timing/k6_N10_mem32K_40nm.xml stereovision3.v common 3.96 odin 167.25 MiB 2.71 171264 -1 -1 4 0.12 -1 -1 33208 -1 -1 20 11 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 67264 11 30 262 292 2 99 61 7 7 49 clb auto 26.0 MiB 0.04 688 439 1981 340 1577 64 65.7 MiB 0.02 0.00 2.02388 2.02388 -140.31 -2.02388 1.9292 0.00 0.000388075 0.000339041 0.00890656 0.00797424 -1 -1 -1 -1 8 310 17 1.07788e+06 1.07788e+06 -1 -1 0.15 0.0572597 0.0490883 2100 3116 -1 300 19 436 776 44386 23435 2.02388 1.9292 -140.31 -2.02388 0 0 -1 -1 0.00 0.03 0.00 -1 -1 0.00 0.018872 0.0167477 +nonuniform_chan_width/k6_N10_mem32K_40nm_nonuniform.xml stereovision3.v common 4.23 odin 167.25 MiB 2.96 171264 -1 -1 4 0.13 -1 -1 33100 -1 -1 20 11 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 67188 11 30 262 292 2 99 61 7 7 49 clb auto 26.2 MiB 0.05 688 420 1741 256 1424 61 65.6 MiB 0.02 0.00 2.02388 2.02388 -140.31 -2.02388 1.9292 0.00 0.000396128 0.000345351 0.00833909 0.00744772 -1 -1 -1 -1 14 287 20 1.07788e+06 1.07788e+06 -1 -1 0.11 0.0588694 0.0501538 2100 3116 -1 283 20 516 944 48724 24190 2.02388 1.9292 -140.31 -2.02388 0 0 -1 -1 0.00 0.04 0.00 -1 -1 0.00 0.0200585 0.0177613 +nonuniform_chan_width/k6_N10_mem32K_40nm_pulse.xml stereovision3.v common 3.74 odin 167.25 MiB 2.53 171264 -1 -1 4 0.12 -1 -1 33080 -1 -1 20 11 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 67648 11 30 262 292 2 99 61 7 7 49 clb auto 26.0 MiB 0.04 688 446 2341 306 1971 64 66.1 MiB 0.02 0.00 2.02388 2.02388 -140.31 -2.02388 1.9292 0.00 0.000390978 0.000340979 0.0100418 0.00894967 -1 -1 -1 -1 16 306 15 1.07788e+06 1.07788e+06 -1 -1 0.10 0.0586835 0.0503287 2100 3116 -1 315 15 490 966 53909 27396 2.02388 1.9292 -140.31 -2.02388 0 0 -1 -1 0.00 0.03 0.00 -1 -1 0.00 0.0167801 0.0150028 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_graphics_commands/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_graphics_commands/config/golden_results.txt index e6884fa004e..d1fcdc4c422 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_graphics_commands/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_graphics_commands/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 total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - k6_N10_mem32K_40nm.xml stereovision3.v common 6.17 vpr 66.89 MiB 0.08 10368 -1 -1 4 0.22 -1 -1 36612 -1 -1 19 11 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 68492 11 30 262 292 2 99 60 7 7 49 clb auto 27.3 MiB 0.11 425 2283 406 1804 73 66.9 MiB 2.36 0.00 2.45115 -182.341 -2.45115 2.3368 0.00 0.00076202 0.000633481 0.0213386 0.0169977 -1 -1 -1 -1 -1 414 20 1.07788e+06 1.02399e+06 207176. 4228.08 1.35 0.0886305 0.079884 -1 -1 -1 -1 -1 -1 -1 -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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +k6_N10_mem32K_40nm.xml stereovision3.v common 5.87 odin 167.62 MiB 2.55 171648 -1 -1 4 0.12 -1 -1 33104 -1 -1 20 11 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 67040 11 30 262 292 2 99 61 7 7 49 clb auto 25.4 MiB 0.04 688 437 2341 384 1888 69 65.5 MiB 1.26 0.00 2.91853 2.7389 -178.372 -2.7389 2.43544 0.00 0.00040053 0.000347422 0.0103465 0.00915139 -1 -1 -1 -1 -1 434 23 1.07788e+06 1.07788e+06 207176. 4228.08 0.64 0.0330431 0.0289561 -1 -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_strong_odin/strong_manual_annealing/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_manual_annealing/config/golden_results.txt index b4a9052cd04..931ceee65ba 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_manual_annealing/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_manual_annealing/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 total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - k6_frac_N10_40nm.xml stereovision3.v common 2.01 vpr 61.71 MiB 0.06 10112 -1 -1 4 0.22 -1 -1 36708 -1 -1 13 11 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 63196 11 30 262 292 2 110 54 6 6 36 clb auto 22.9 MiB 0.13 442 4182 3410 664 108 61.7 MiB 0.07 0.00 2.55648 -171.707 -2.55648 2.31607 0.04 0.000697499 0.000590032 0.035108 0.0301305 -1 -1 -1 -1 36 688 16 862304 700622 64877.6 1802.15 0.32 0.199199 0.171554 2900 12076 -1 568 12 312 493 15436 6065 2.62572 2.28031 -177.78 -2.62572 0 0 80896.3 2247.12 0.00 0.04 0.02 -1 -1 0.00 0.0300653 0.0274931 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +k6_frac_N10_40nm.xml stereovision3.v common 2.73 odin 151.50 MiB 1.45 155136 -1 -1 4 0.12 -1 -1 33076 -1 -1 13 11 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 61812 11 30 262 292 2 107 54 6 6 36 clb auto 21.0 MiB 0.06 561 417 4182 3406 658 118 60.4 MiB 0.04 0.00 2.44705 2.32039 -170.792 -2.32039 2.20653 0.01 0.000401205 0.0003469 0.019576 0.0171142 -1 -1 -1 -1 36 788 25 862304 700622 64877.6 1802.15 0.19 0.107302 0.0903116 2900 12076 -1 552 14 362 618 15589 5868 2.33898 2.20362 -179.305 -2.33898 0 0 80896.3 2247.12 0.00 0.02 0.01 -1 -1 0.00 0.0188673 0.0170516 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_mcnc/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_mcnc/config/golden_results.txt index 8d2903c2d48..a50dd42d5d8 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_mcnc/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_mcnc/config/golden_results.txt @@ -1,4 +1,4 @@ - arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - k4_N4_90nm.xml diffeq.blif common 18.17 vpr 71.04 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 438 64 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 72740 64 39 1935 1974 1 1077 541 23 23 529 clb auto 31.4 MiB 0.53 10472 141533 36950 100839 3744 71.0 MiB 1.46 0.02 7.46482 -1369.01 -7.46482 7.46482 0.64 0.00605549 0.00528423 0.429203 0.364085 -1 -1 -1 -1 24 13068 28 983127 976439 797780. 1508.09 11.91 2.29628 1.96589 39018 137339 -1 11478 18 6600 23331 1479297 381870 7.27304 7.27304 -1454.66 -7.27304 0 0 1.04508e+06 1975.57 0.03 0.83 0.15 -1 -1 0.03 0.252853 0.225541 - k4_N4_90nm.xml ex5p.blif common 20.35 vpr 67.02 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 366 8 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 68624 8 63 1072 1135 0 894 437 22 22 484 clb auto 27.6 MiB 0.32 12004 99857 28319 69545 1993 67.0 MiB 1.07 0.02 6.86459 -313.968 -6.86459 nan 0.52 0.0035933 0.00315668 0.2475 0.211473 -1 -1 -1 -1 32 16530 34 891726 815929 949946. 1962.70 14.36 0.89434 0.759948 43920 162796 -1 14048 22 8455 31174 3329435 847924 6.8764 nan -316.234 -6.8764 0 0 1.22393e+06 2528.78 0.08 1.43 0.30 -1 -1 0.08 0.237816 0.212077 - k4_N4_90nm.xml s298.blif common 19.44 vpr 73.23 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 580 4 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 74984 4 6 1942 1948 1 1169 590 27 27 729 clb auto 33.0 MiB 0.49 13813 156389 45768 109723 898 73.2 MiB 1.80 0.03 12.2682 -96.384 -12.2682 12.2682 0.93 0.0106993 0.00945176 0.491739 0.389383 -1 -1 -1 -1 26 17490 32 1.39333e+06 1.29301e+06 1.22387e+06 1678.84 10.93 1.63745 1.34189 57250 204657 -1 16420 17 8603 42614 3232268 684840 12.0598 12.0598 -95.4975 -12.0598 0 0 1.55812e+06 2137.34 0.10 1.48 0.31 -1 -1 0.10 0.297955 0.263351 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +k4_N4_90nm.xml diffeq.blif common 4.83 vpr 71.35 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 439 64 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 73060 64 39 1935 1974 1 1075 542 23 23 529 clb auto 31.1 MiB 0.17 24088 10407 135291 36283 95683 3325 71.3 MiB 0.54 0.01 23.0912 7.70338 -1562.28 -7.70338 7.70338 0.20 0.00206649 0.00175858 0.139723 0.120994 -1 -1 -1 -1 24 13067 26 983127 978669 797780. 1508.09 2.40 0.433146 0.377372 39018 137339 -1 11571 16 6466 23559 1530116 397333 7.70338 7.70338 -1636.85 -7.70338 0 0 1.04508e+06 1975.57 0.02 0.30 0.07 -1 -1 0.02 0.0892118 0.0808294 +k4_N4_90nm.xml ex5p.blif common 6.43 vpr 66.13 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 362 8 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 67716 8 63 1072 1135 0 892 433 22 22 484 clb auto 26.3 MiB 0.13 20089 11891 97016 28068 66779 2169 66.1 MiB 0.40 0.01 11.9965 7.14697 -323.69 -7.14697 nan 0.18 0.00134043 0.00119147 0.0897746 0.080448 -1 -1 -1 -1 32 16897 50 891726 807012 949946. 1962.70 4.19 0.334258 0.292305 43920 162796 -1 13798 21 8357 30046 2938323 715872 6.93884 nan -322.607 -6.93884 0 0 1.22393e+06 2528.78 0.04 0.44 0.09 -1 -1 0.04 0.0716204 0.0648027 +k4_N4_90nm.xml s298.blif common 8.54 vpr 73.06 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 579 4 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 74816 4 6 1942 1948 1 1135 589 27 27 729 clb auto 33.1 MiB 0.18 26761 13173 158541 45950 111660 931 73.1 MiB 0.66 0.01 27.8284 12.5893 -95.8017 -12.5893 12.5893 0.28 0.00244424 0.00207476 0.168219 0.145073 -1 -1 -1 -1 24 18368 39 1.39333e+06 1.29078e+06 1.12265e+06 1539.99 5.30 0.547643 0.470994 54650 192211 -1 15957 20 8308 43971 3554658 708435 12.1943 12.1943 -92.9601 -12.1943 0 0 1.47093e+06 2017.74 0.02 0.60 0.11 -1 -1 0.02 0.121878 0.109788 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_minimax_budgets/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_minimax_budgets/config/golden_results.txt index 4db936a1dd3..542dfe84888 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_minimax_budgets/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_minimax_budgets/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 total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time 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 - k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision3.v common 1.78 vpr 69.28 MiB 0.09 10496 -1 -1 5 0.19 -1 -1 36448 -1 -1 14 11 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 70944 11 30 313 321 2 114 55 7 7 49 clb auto 29.8 MiB 0.39 459 2031 574 1374 83 69.3 MiB 0.03 0.00 4.6413 0 0 4.31525 0.00 0.000635584 0.000552586 0.0173645 0.0155707 -1 -1 -1 -1 570 5.27778 228 2.11111 239 439 10467 3202 1.07788e+06 754516 219490. 4479.39 8 5100 32136 -1 4.62935 4.30491 0 0 -165.142 -1.707 0.05 -1 -1 69.3 MiB 0.14 0.147679 0.140851 69.3 MiB -1 0.01 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time 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 +k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision3.v common 4.04 odin 157.12 MiB 2.89 160896 -1 -1 5 0.11 -1 -1 33304 -1 -1 14 11 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 69500 11 30 313 321 2 115 55 7 7 49 clb auto 28.6 MiB 0.17 671 430 3071 674 1846 551 67.9 MiB 0.03 0.00 4.73611 4.6413 0 0 4.32062 0.00 0.000385155 0.000350825 0.0148038 0.0136631 -1 -1 -1 -1 568 5.21101 230 2.11009 310 604 14151 4248 1.07788e+06 754516 219490. 4479.39 9 5100 32136 -1 4.69675 4.35776 0 0 -164.736 -1.707 0.02 -1 -1 67.9 MiB 0.08 0.0926108 0.0891897 67.9 MiB -1 0.00 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_multiclock/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_multiclock/config/golden_results.txt index 19fe5d4556f..bcb0b5d161b 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_multiclock/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_multiclock/config/golden_results.txt @@ -1,2 +1,2 @@ - arch circuit script_params crit_path_delay_mcw clk_to_clk_cpd clk_to_clk2_cpd clk_to_input_cpd clk_to_output_cpd clk2_to_clk2_cpd clk2_to_clk_cpd clk2_to_input_cpd clk2_to_output_cpd input_to_input_cpd input_to_clk_cpd input_to_clk2_cpd input_to_output_cpd output_to_output_cpd output_to_clk_cpd output_to_clk2_cpd output_to_input_cpd clk_to_clk_setup_slack clk_to_clk2_setup_slack clk_to_input_setup_slack clk_to_output_setup_slack clk2_to_clk2_setup_slack clk2_to_clk_setup_slack clk2_to_input_setup_slack clk2_to_output_setup_slack input_to_input_setup_slack input_to_clk_setup_slack input_to_clk2_setup_slack input_to_output_setup_slack output_to_output_setup_slack output_to_clk_setup_slack output_to_clk2_setup_slack output_to_input_setup_slack clk_to_clk_hold_slack clk_to_clk2_hold_slack clk_to_input_hold_slack clk_to_output_hold_slack clk2_to_clk2_hold_slack clk2_to_clk_hold_slack clk2_to_input_hold_slack clk2_to_output_hold_slack input_to_input_hold_slack input_to_clk_hold_slack input_to_clk2_hold_slack input_to_output_hold_slack output_to_output_hold_slack output_to_clk_hold_slack output_to_clk2_hold_slack output_to_input_hold_slack - k6_frac_N10_mem32K_40nm.xml multiclock.blif common 1.59919 0.595 0.841581 -1 -1 0.57 0.814813 -1 1.59919 -1 1.1662 -1 1.8371 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0.243 1.71958 -1 -1 0.268 3.24281 -1 1.44782 -1 3.4042 -1 -1.40928 -1 -1 -1 -1 +arch circuit script_params crit_path_delay_mcw clk_to_clk_cpd clk_to_clk2_cpd clk_to_input_cpd clk_to_output_cpd clk2_to_clk2_cpd clk2_to_clk_cpd clk2_to_input_cpd clk2_to_output_cpd input_to_input_cpd input_to_clk_cpd input_to_clk2_cpd input_to_output_cpd output_to_output_cpd output_to_clk_cpd output_to_clk2_cpd output_to_input_cpd clk_to_clk_setup_slack clk_to_clk2_setup_slack clk_to_input_setup_slack clk_to_output_setup_slack clk2_to_clk2_setup_slack clk2_to_clk_setup_slack clk2_to_input_setup_slack clk2_to_output_setup_slack input_to_input_setup_slack input_to_clk_setup_slack input_to_clk2_setup_slack input_to_output_setup_slack output_to_output_setup_slack output_to_clk_setup_slack output_to_clk2_setup_slack output_to_input_setup_slack clk_to_clk_hold_slack clk_to_clk2_hold_slack clk_to_input_hold_slack clk_to_output_hold_slack clk2_to_clk2_hold_slack clk2_to_clk_hold_slack clk2_to_input_hold_slack clk2_to_output_hold_slack input_to_input_hold_slack input_to_clk_hold_slack input_to_clk2_hold_slack input_to_output_hold_slack output_to_output_hold_slack output_to_clk_hold_slack output_to_clk2_hold_slack output_to_input_hold_slack +k6_frac_N10_mem32K_40nm.xml multiclock.blif common 1.59919 0.595 0.841581 -1 -1 0.57 0.814813 -1 1.59919 -1 1.1662 -1 1.8371 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0.243 1.71958 -1 -1 0.268 3.24281 -1 1.44782 -1 3.4042 -1 -1.40928 -1 -1 -1 -1 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_no_timing/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_no_timing/config/golden_results.txt index 8285cf5d7b5..2a360b9ec50 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_no_timing/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_no_timing/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 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 - k6_frac_N10_frac_chain_depop50_mem32K_40nm.xml ch_intrinsics.v common 2.66 vpr 68.27 MiB 0.06 9984 -1 -1 3 0.36 -1 -1 39780 -1 -1 66 99 1 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 69908 99 130 363 493 1 250 296 12 12 144 clb auto 29.2 MiB 0.21 805 57484 15208 21002 21274 68.3 MiB 0.11 0.00 40 1774 10 5.66058e+06 4.105e+06 360333. 2502.31 0.52 +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 initial_placed_wirelength_est 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 +k6_frac_N10_frac_chain_depop50_mem32K_40nm.xml ch_intrinsics.v common 4.11 odin 100.88 MiB 2.60 103296 -1 -1 3 0.20 -1 -1 34072 -1 -1 66 99 1 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 67788 99 130 363 493 1 256 296 12 12 144 clb auto 26.8 MiB 0.09 2010 809 75232 21521 28755 24956 66.2 MiB 0.06 0.00 48 1681 14 5.66058e+06 4.105e+06 424682. 2949.18 0.24 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_pack/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_pack/config/golden_results.txt index 735a18dab2b..0b6e20be258 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_pack/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_pack/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 total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - k6_N10_mem32K_40nm.xml stereovision3.v common 1.45 vpr 66.93 MiB 0.09 10368 -1 -1 4 0.22 -1 -1 36756 -1 -1 19 11 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 68532 11 30 262 292 2 99 60 7 7 49 clb auto 27.3 MiB 0.12 -1 -1 -1 -1 -1 -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.00571426 0.00556672 -1 -1 -1 -1 -1 -1 -1 -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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +k6_N10_mem32K_40nm.xml stereovision3.v common 3.38 odin 167.25 MiB 2.52 171264 -1 -1 4 0.12 -1 -1 33292 -1 -1 20 11 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66508 11 30 262 292 2 99 61 7 7 49 clb auto 25.3 MiB 0.04 -1 -1 -1 -1 -1 -1 -1 -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.00122021 0.00115346 -1 -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_strong_odin/strong_pack_and_place/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_pack_and_place/config/golden_results.txt index 402ade22624..630005b88fb 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_pack_and_place/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_pack_and_place/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 total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - k6_N10_mem32K_40nm.xml stereovision3.v common 1.29 vpr 66.33 MiB 0.06 10368 -1 -1 4 0.21 -1 -1 36632 -1 -1 19 11 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 67920 11 30 262 292 2 99 60 7 7 49 clb auto 27.4 MiB 0.08 427 1815 293 1474 48 66.3 MiB 0.04 0.00 2.45489 -180.219 -2.45489 2.30757 0.05 0.000892007 0.00076546 0.0179963 0.0157273 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0.0202445 0.0178347 -1 -1 -1 -1 -1 -1 -1 -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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +k6_N10_mem32K_40nm.xml stereovision3.v common 3.62 odin 167.25 MiB 2.66 171264 -1 -1 4 0.12 -1 -1 33108 -1 -1 20 11 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 67268 11 30 262 292 2 99 61 7 7 49 clb auto 25.6 MiB 0.04 688 430 2821 451 2299 71 65.7 MiB 0.02 0.00 2.92675 2.74423 -180.089 -2.74423 2.44742 0.02 0.000405286 0.000352219 0.0118962 0.0104836 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0.0130883 0.0116044 -1 -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_strong_odin/strong_pack_disable/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_pack_disable/config/golden_results.txt index 8bf865796ba..93796b474f2 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_pack_disable/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_pack_disable/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 ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - k6_frac_N10_40nm.xml mult_5x6.blif common 0.57 vpr 60.99 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 4 11 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 62456 11 11 59 70 0 48 26 4 4 16 clb auto 22.0 MiB 0.04 179 862 260 602 0 61.0 MiB 0.01 0.00 2.46139 -19.889 -2.46139 nan 0.01 0.000234107 0.000208327 0.0069198 0.00625105 -1 -1 -1 -1 28 244 41 215576 215576 17602.3 1100.14 0.10 0.0507337 0.0443992 984 2821 -1 165 13 220 476 6314 3099 2.61613 nan -21.1174 -2.61613 0 0 21084.5 1317.78 0.00 0.02 0.00 -1 -1 0.00 0.0119559 0.010883 - k6_frac_N10_40nm_disable_packing.xml mult_5x6.blif common 0.07 vpr 23.38 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 exited with return code 1 v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 23940 11 11 59 70 0 -1 -1 -1 -1 -1 -1 -1 22.0 MiB 0.00 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +k6_frac_N10_40nm.xml mult_5x6.blif common 0.38 vpr 59.62 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 4 11 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 61048 11 11 59 70 0 48 26 4 4 16 clb auto 20.2 MiB 0.02 205 178 672 211 461 0 59.6 MiB 0.01 0.00 2.48509 2.46139 -19.889 -2.46139 nan 0.00 0.000113648 0.000103358 0.00299057 0.00277639 -1 -1 -1 -1 30 215 23 215576 215576 18771.3 1173.21 0.04 0.0197788 0.0170591 1016 3020 -1 186 15 222 505 8959 4790 2.75695 nan -23.0631 -2.75695 0 0 22855.5 1428.47 0.00 0.01 0.00 -1 -1 0.00 0.00593139 0.0053815 +k6_frac_N10_40nm_disable_packing.xml mult_5x6.blif common 0.05 vpr 21.36 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 exited with return code 1 v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 21872 11 11 59 70 0 -1 -1 -1 -1 -1 -1 -1 19.9 MiB 0.00 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -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_strong_odin/strong_place/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_place/config/golden_results.txt index af7706738c0..60a3dab3584 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_place/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_place/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 total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - k6_N10_mem32K_40nm.xml multiclock.blif common 0.24 vpr 64.79 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 5 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 66340 5 3 11 14 2 9 10 4 4 16 clb auto -1 -1 21 30 9 19 2 64.8 MiB 0.01 0.00 0.646042 -3.51892 -0.646042 0.571 0.01 6.4699e-05 4.5848e-05 0.00182479 0.00174439 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0.00182479 0.00174439 -1 -1 -1 -1 -1 -1 -1 -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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +k6_N10_mem32K_40nm.xml multiclock.blif common 0.16 vpr 63.27 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 5 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 64788 5 3 11 14 2 9 10 4 4 16 clb auto -1 -1 24 21 30 9 19 2 63.3 MiB 0.00 0.00 0.739166 0.646042 -3.51892 -0.646042 0.571 0.00 2.3495e-05 1.6333e-05 0.000928287 0.000887308 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0.000928287 0.000887308 -1 -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_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 25609b75a68..b70afe597bd 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 total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - stratixiv_arch.timing.xml styr.blif common_--place_delay_model_delta_--place_delta_delay_matrix_calculation_method_astar 40.74 vpr 978.46 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 1001944 10 10 168 178 1 68 30 11 8 88 io auto 955.5 MiB 0.61 385 628 76 517 35 978.5 MiB 0.06 0.00 6.37842 -68.9926 -6.37842 6.37842 2.79 0.000585035 0.000506509 0.0125856 0.0113967 -1 -1 -1 -1 28 740 24 0 0 134428. 1527.59 1.17 0.202681 0.177336 11590 29630 -1 638 15 260 898 57405 28552 6.7547 6.7547 -73.7765 -6.7547 0 0 173354. 1969.93 0.01 0.09 0.08 -1 -1 0.01 0.0322374 0.0298184 - stratixiv_arch.timing.xml styr.blif common_--place_delay_model_delta_override_--place_delta_delay_matrix_calculation_method_astar 42.57 vpr 978.19 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 1001668 10 10 168 178 1 68 30 11 8 88 io auto 955.1 MiB 0.58 356 628 86 501 41 978.2 MiB 0.08 0.00 6.32784 -69.1369 -6.32784 6.32784 2.79 0.00106817 0.000941606 0.0173949 0.0157097 -1 -1 -1 -1 26 696 13 0 0 125464. 1425.72 1.41 0.24274 0.212439 11500 28430 -1 625 14 346 1342 78096 38981 6.62332 6.62332 -73.8789 -6.62332 0 0 163463. 1857.53 0.01 0.08 0.08 -1 -1 0.01 0.0393492 0.0368597 - stratixiv_arch.timing.xml styr.blif common_--place_delay_model_delta_--place_delta_delay_matrix_calculation_method_dijkstra 41.18 vpr 978.46 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 1001944 10 10 168 178 1 68 30 11 8 88 io auto 955.2 MiB 0.77 378 628 92 504 32 978.5 MiB 0.06 0.00 6.37842 -68.9795 -6.37842 6.37842 3.93 0.000461318 0.000398366 0.0135017 0.0123478 -1 -1 -1 -1 30 740 27 0 0 144567. 1642.81 1.27 0.212409 0.18717 11730 32605 -1 579 10 219 802 50034 22946 6.80801 6.80801 -73.0986 -6.80801 0 0 194014. 2204.70 0.01 0.06 0.10 -1 -1 0.01 0.0272644 0.0255028 - stratixiv_arch.timing.xml styr.blif common_--place_delay_model_delta_override_--place_delta_delay_matrix_calculation_method_dijkstra 43.49 vpr 978.56 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 1002044 10 10 168 178 1 68 30 11 8 88 io auto 955.6 MiB 0.67 353 582 71 475 36 978.6 MiB 0.10 0.00 6.2342 -69.2052 -6.2342 6.2342 4.26 0.00126519 0.00120018 0.0174025 0.0162066 -1 -1 -1 -1 22 762 19 0 0 110609. 1256.92 0.57 0.121021 0.108951 11258 24748 -1 710 14 413 1547 91286 47129 6.80216 6.80216 -76.023 -6.80216 0 0 134428. 1527.59 0.01 0.08 0.05 -1 -1 0.01 0.0301878 0.0279201 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +stratixiv_arch.timing.xml styr.blif common_--place_delay_model_delta_--place_delta_delay_matrix_calculation_method_astar 22.09 vpr 980.14 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 1003660 10 10 168 178 1 65 30 11 8 88 io auto 953.7 MiB 0.32 530 354 766 109 603 54 980.1 MiB 0.05 0.00 6.8164 6.25965 -69.3407 -6.25965 6.25965 0.98 0.00031125 0.000282067 0.00812631 0.00755584 -1 -1 -1 -1 20 842 24 0 0 100248. 1139.18 0.28 0.0526186 0.0466377 11180 23751 -1 740 16 428 1793 101987 51614 6.72979 6.72979 -75.9114 -6.72979 0 0 125464. 1425.72 0.00 0.05 0.03 -1 -1 0.00 0.0174048 0.0160478 +stratixiv_arch.timing.xml styr.blif common_--place_delay_model_delta_override_--place_delta_delay_matrix_calculation_method_astar 22.04 vpr 980.16 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 1003680 10 10 168 178 1 65 30 11 8 88 io auto 953.7 MiB 0.32 530 359 766 97 619 50 980.2 MiB 0.05 0.00 6.8164 6.26487 -69.3105 -6.26487 6.26487 0.99 0.000319106 0.000291575 0.0081832 0.0076106 -1 -1 -1 -1 22 829 20 0 0 110609. 1256.92 0.27 0.0523685 0.0465314 11258 24748 -1 771 17 378 1439 87505 45574 6.83905 6.83905 -76.8941 -6.83905 0 0 134428. 1527.59 0.00 0.05 0.03 -1 -1 0.00 0.0173368 0.0159174 +stratixiv_arch.timing.xml styr.blif common_--place_delay_model_delta_--place_delta_delay_matrix_calculation_method_dijkstra 22.55 vpr 980.44 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 1003972 10 10 168 178 1 65 30 11 8 88 io auto 954.0 MiB 0.32 530 349 674 94 530 50 980.4 MiB 0.05 0.00 6.77016 6.47558 -68.8469 -6.47558 6.47558 1.38 0.000298307 0.000270422 0.00750644 0.00701996 -1 -1 -1 -1 20 861 19 0 0 100248. 1139.18 0.29 0.050198 0.0445509 11180 23751 -1 680 16 330 1259 70362 36922 6.87801 6.87801 -76.1492 -6.87801 0 0 125464. 1425.72 0.00 0.05 0.03 -1 -1 0.00 0.0169506 0.0156205 +stratixiv_arch.timing.xml styr.blif common_--place_delay_model_delta_override_--place_delta_delay_matrix_calculation_method_dijkstra 22.55 vpr 979.88 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 1003392 10 10 168 178 1 65 30 11 8 88 io auto 953.4 MiB 0.33 530 348 720 100 579 41 979.9 MiB 0.05 0.00 6.77016 6.34606 -69.0457 -6.34606 6.34606 1.41 0.000302169 0.000275003 0.00785604 0.00733066 -1 -1 -1 -1 20 851 21 0 0 100248. 1139.18 0.27 0.0516757 0.0458386 11180 23751 -1 743 16 380 1503 81107 41070 6.53785 6.53785 -75.082 -6.53785 0 0 125464. 1425.72 0.00 0.05 0.03 -1 -1 0.00 0.0170992 0.0157992 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 de612c1c661..ee5d462d98b 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 total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - stratixiv_arch.timing.xml styr.blif common_--place_delay_model_delta 41.99 vpr 978.21 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 1001688 10 10 168 178 1 68 30 11 8 88 io auto 955.2 MiB 0.85 385 628 76 517 35 978.2 MiB 0.09 0.00 6.37842 -68.9926 -6.37842 6.37842 2.49 0.000740479 0.000647957 0.0145497 0.0133659 -1 -1 -1 -1 28 740 24 0 0 134428. 1527.59 1.45 0.22055 0.192568 11590 29630 -1 638 15 260 898 57405 28552 6.7547 6.7547 -73.7765 -6.7547 0 0 173354. 1969.93 0.01 0.11 0.10 -1 -1 0.01 0.0358167 0.033477 - stratixiv_arch.timing.xml styr.blif common_--place_delay_model_delta_override 41.03 vpr 978.36 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 1001836 10 10 168 178 1 68 30 11 8 88 io auto 955.3 MiB 0.66 356 628 86 501 41 978.4 MiB 0.10 0.00 6.32784 -69.1369 -6.32784 6.32784 2.55 0.000491141 0.000429611 0.0148781 0.0136279 -1 -1 -1 -1 26 696 13 0 0 125464. 1425.72 1.47 0.229896 0.203057 11500 28430 -1 625 14 346 1342 78096 38981 6.62332 6.62332 -73.8789 -6.62332 0 0 163463. 1857.53 0.01 0.11 0.09 -1 -1 0.01 0.0316333 0.0293122 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +stratixiv_arch.timing.xml styr.blif common_--place_delay_model_delta 22.15 vpr 979.75 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 1003264 10 10 168 178 1 65 30 11 8 88 io auto 953.3 MiB 0.33 530 354 766 109 603 54 979.8 MiB 0.05 0.00 6.8164 6.25965 -69.3407 -6.25965 6.25965 0.97 0.000321472 0.000271532 0.00806108 0.00747147 -1 -1 -1 -1 20 842 24 0 0 100248. 1139.18 0.28 0.05278 0.0466501 11180 23751 -1 740 16 428 1793 101987 51614 6.72979 6.72979 -75.9114 -6.72979 0 0 125464. 1425.72 0.00 0.05 0.03 -1 -1 0.00 0.0173118 0.0159829 +stratixiv_arch.timing.xml styr.blif common_--place_delay_model_delta_override 22.13 vpr 979.64 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 1003148 10 10 168 178 1 65 30 11 8 88 io auto 953.4 MiB 0.32 530 359 766 97 619 50 979.6 MiB 0.06 0.00 6.8164 6.26487 -69.3105 -6.26487 6.26487 0.99 0.000295946 0.000268265 0.00820091 0.00762383 -1 -1 -1 -1 22 829 20 0 0 110609. 1256.92 0.27 0.0515235 0.045775 11258 24748 -1 771 17 378 1439 87505 45574 6.83905 6.83905 -76.8941 -6.83905 0 0 134428. 1527.59 0.00 0.05 0.03 -1 -1 0.00 0.0174113 0.0159753 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_place_effort_scaling/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_place_effort_scaling/config/golden_results.txt index be79764ceb1..fa723315ce7 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_place_effort_scaling/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_place_effort_scaling/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 ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - EArch.xml ex5p.blif common_--place_effort_scaling_circuit 4.26 vpr 76.45 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 64 8 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 78288 8 63 1072 1135 0 619 135 12 12 144 clb auto 36.4 MiB 2.83 6246 12245 2336 8854 1055 76.5 MiB 0.39 0.01 4.93521 -218.151 -4.93521 nan 0.27 0.00393519 0.00333322 0.167205 0.141172 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0.170495 0.143929 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - EArch.xml ex5p.blif common_--place_effort_scaling_device_circuit 3.34 vpr 76.57 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 64 8 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 78408 8 63 1072 1135 0 619 135 12 12 144 clb auto 36.4 MiB 2.32 6248 12409 2316 9051 1042 76.6 MiB 0.27 0.01 5.00015 -217.921 -5.00015 nan 0.18 0.00183948 0.00156955 0.109821 0.0973753 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0.11472 0.101715 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - EArch.xml ex5p.blif common_--place_effort_scaling_circuit_--target_utilization_0.1 6.81 vpr 76.72 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 64 8 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 78560 8 63 1072 1135 0 619 135 27 27 729 -1 auto 36.7 MiB 2.45 6557 16051 3559 11939 553 76.7 MiB 0.47 0.01 5.39652 -231.823 -5.39652 nan 1.67 0.00368316 0.00300979 0.191413 0.165252 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0.196386 0.169658 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - EArch.xml ex5p.blif common_--place_effort_scaling_device_circuit_--target_utilization_0.1 7.69 vpr 76.65 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 64 8 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 78492 8 63 1072 1135 0 619 135 27 27 729 -1 auto 36.4 MiB 2.51 6642 53385 10847 39555 2983 76.7 MiB 1.06 0.02 5.30857 -236.309 -5.30857 nan 1.91 0.00201874 0.00161249 0.24975 0.219272 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0.258981 0.227848 -1 -1 -1 -1 -1 -1 -1 -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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +EArch.xml ex5p.blif common_--place_effort_scaling_circuit 1.80 vpr 75.86 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 62 8 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 77676 8 63 1072 1135 0 611 133 11 11 121 clb auto 35.8 MiB 1.19 7518 6082 8947 1533 6815 599 75.9 MiB 0.13 0.00 5.94011 5.07653 -213.869 -5.07653 nan 0.08 0.00138085 0.00120833 0.0557598 0.0510581 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0.058042 0.0530968 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +EArch.xml ex5p.blif common_--place_effort_scaling_device_circuit 1.84 vpr 75.77 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 62 8 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 77592 8 63 1072 1135 0 611 133 11 11 121 clb auto 36.1 MiB 1.21 7518 6142 9355 1631 7067 657 75.8 MiB 0.15 0.00 5.94011 4.97625 -208.188 -4.97625 nan 0.08 0.00138735 0.00121011 0.0616278 0.0561673 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0.0639105 0.0582109 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +EArch.xml ex5p.blif common_--place_effort_scaling_circuit_--target_utilization_0.1 3.02 vpr 75.50 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 62 8 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 77316 8 63 1072 1135 0 611 133 27 27 729 -1 auto 35.8 MiB 1.16 17047 6704 22507 6724 13850 1933 75.5 MiB 0.27 0.00 9.03576 5.62812 -248.555 -5.62812 nan 0.63 0.00138573 0.00121317 0.11031 0.0991692 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0.112545 0.10117 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +EArch.xml ex5p.blif common_--place_effort_scaling_device_circuit_--target_utilization_0.1 3.29 vpr 75.50 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 62 8 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 77316 8 63 1072 1135 0 611 133 27 27 729 -1 auto 35.8 MiB 1.17 17047 6681 64488 18508 41026 4954 75.5 MiB 0.52 0.01 9.03576 5.51074 -242.103 -5.51074 nan 0.64 0.00137865 0.00122309 0.103759 0.0934135 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0.105985 0.0954026 -1 -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_strong_odin/strong_place_quench_slack/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_place_quench_slack/config/golden_results.txt index b0056cc1abc..3c0cb5f8c63 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_place_quench_slack/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_place_quench_slack/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 total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - k6_N10_mem32K_40nm.xml stereovision3.v common 1.86 vpr 66.93 MiB 0.06 10496 -1 -1 4 0.21 -1 -1 36668 -1 -1 19 11 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 68536 11 30 262 292 2 99 60 7 7 49 clb auto 27.3 MiB 0.08 427 1815 293 1474 48 66.9 MiB 0.03 0.00 2.45489 -180.219 -2.45489 2.30757 0.06 0.00072366 0.000614909 0.0157761 0.0136171 -1 -1 -1 -1 18 637 26 1.07788e+06 1.02399e+06 45686.6 932.380 0.27 0.140412 0.11741 2616 8308 -1 528 22 686 1665 42264 14116 2.57724 2.36372 -184.812 -2.57724 0 0 59124.6 1206.62 0.00 0.06 0.01 -1 -1 0.00 0.0578011 0.0529737 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +k6_N10_mem32K_40nm.xml stereovision3.v common 3.92 odin 167.25 MiB 2.63 171264 -1 -1 4 0.12 -1 -1 33088 -1 -1 20 11 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 67040 11 30 262 292 2 99 61 7 7 49 clb auto 25.8 MiB 0.04 688 430 2821 451 2299 71 65.5 MiB 0.02 0.00 2.92675 2.74423 -180.089 -2.74423 2.44742 0.02 0.000396362 0.000343176 0.0120084 0.0105776 -1 -1 -1 -1 18 673 35 1.07788e+06 1.07788e+06 45686.6 932.380 0.18 0.073831 0.0622022 2616 8308 -1 591 24 845 2121 68310 27246 2.65985 2.3922 -190.754 -2.65985 0 0 59124.6 1206.62 0.00 0.04 0.00 -1 -1 0.00 0.0227802 0.0197882 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_post_routing_sync/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_post_routing_sync/config/golden_results.txt index c15f8828261..cd20352a239 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_post_routing_sync/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_post_routing_sync/config/golden_results.txt @@ -1,21 +1,21 @@ - arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml const_true.blif common 0.38 vpr 62.46 MiB -1 -1 -1 -1 0 0.02 -1 -1 33172 -1 -1 1 0 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 63964 -1 1 1 2 0 1 2 3 3 9 -1 auto 24.2 MiB 0.00 0 3 0 0 3 62.5 MiB 0.00 0.00 nan 0 0 nan 0.00 1.4078e-05 8.305e-06 7.897e-05 5.195e-05 -1 -1 -1 -1 -1 0 1 3900 3900 7855.82 872.868 0.00 0.00158662 0.00151514 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml const_false.blif common 0.40 vpr 62.46 MiB -1 -1 -1 -1 0 0.02 -1 -1 32980 -1 -1 1 0 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 63964 -1 1 1 2 0 1 2 3 3 9 -1 auto 24.2 MiB 0.00 0 3 0 0 3 62.5 MiB 0.00 0.00 nan 0 0 nan 0.00 1.1945e-05 6.486e-06 7.545e-05 4.8841e-05 -1 -1 -1 -1 -1 0 1 3900 3900 7855.82 872.868 0.00 0.00148797 0.00142035 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml always_true.blif common 0.44 vpr 62.59 MiB -1 -1 -1 -1 0 0.02 -1 -1 32992 -1 -1 1 0 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 64096 6 1 1 8 0 1 8 3 3 9 -1 auto 24.3 MiB 0.00 0 21 0 11 10 62.6 MiB 0.00 0.00 nan 0 0 nan 0.00 2.0091e-05 1.2082e-05 0.000201085 0.000162772 -1 -1 -1 -1 -1 0 1 3900 3900 7855.82 872.868 0.00 0.00181183 0.00172223 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml always_false.blif common 0.43 vpr 62.71 MiB -1 -1 -1 -1 0 0.02 -1 -1 33076 -1 -1 1 0 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 64216 6 1 1 8 0 1 8 3 3 9 -1 auto 24.3 MiB 0.00 0 21 0 11 10 62.7 MiB 0.00 0.00 nan 0 0 nan 0.00 1.9557e-05 1.1746e-05 0.00010411 6.6917e-05 -1 -1 -1 -1 -1 0 1 3900 3900 7855.82 872.868 0.00 0.0019441 0.00185632 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml and.blif common 0.39 vpr 62.59 MiB -1 -1 -1 -1 1 0.02 -1 -1 33300 -1 -1 1 2 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 64092 2 1 3 4 0 3 4 3 3 9 -1 auto 24.3 MiB 0.00 9 9 5 0 4 62.6 MiB 0.00 0.00 0.443777 -0.443777 -0.443777 nan 0.00 1.6008e-05 1.0878e-05 0.0001005 7.3545e-05 -1 -1 -1 -1 -1 6 9 3900 3900 7855.82 872.868 0.00 0.00172772 0.00159734 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml multiconnected_lut.blif common 0.62 vpr 62.37 MiB -1 -1 -1 -1 2 0.06 -1 -1 35272 -1 -1 1 5 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 63864 5 1 7 8 0 7 7 3 3 9 -1 auto 24.0 MiB 0.00 20 18 12 0 6 62.4 MiB 0.00 0.00 0.70303 -0.70303 -0.70303 nan 0.00 2.4824e-05 1.9123e-05 0.000151781 0.000121494 -1 -1 -1 -1 -1 8 6 3900 3900 7855.82 872.868 0.00 0.00207121 0.00193926 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml multiconnected_lut2.blif common 0.55 vpr 62.58 MiB -1 -1 -1 -1 2 0.06 -1 -1 35192 -1 -1 1 5 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 64080 5 1 7 8 0 7 7 3 3 9 -1 auto 24.2 MiB 0.00 20 18 13 0 5 62.6 MiB 0.00 0.00 0.70303 -0.70303 -0.70303 nan 0.00 2.4985e-05 1.9224e-05 0.000155624 0.000125459 -1 -1 -1 -1 -1 11 12 3900 3900 7855.82 872.868 0.00 0.002084 0.00190667 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml and_latch.blif common 0.39 vpr 62.40 MiB -1 -1 -1 -1 1 0.02 -1 -1 33452 -1 -1 1 3 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 63896 3 1 5 6 1 4 5 3 3 9 -1 auto 24.0 MiB 0.01 9 12 9 0 3 62.4 MiB 0.00 0.00 0.274843 -0.536407 -0.274843 0.274843 0.00 2.7938e-05 2.0741e-05 0.000161269 0.000123343 -1 -1 -1 -1 -1 5 8 3900 3900 7855.82 872.868 0.00 0.00690521 0.00673198 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml false_path_mux.blif common 0.54 vpr 62.71 MiB -1 -1 -1 -1 1 0.06 -1 -1 35264 -1 -1 1 3 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 64220 4 1 4 6 0 4 6 3 3 9 -1 auto 24.3 MiB 0.00 12 15 11 0 4 62.7 MiB 0.00 0.00 0.443777 -0.443777 -0.443777 nan 0.00 2.0012e-05 1.4214e-05 0.000118365 8.8919e-05 -1 -1 -1 -1 -1 7 16 3900 3900 7855.82 872.868 0.00 0.00202452 0.00176056 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml mult_2x2.blif common 0.51 vpr 62.46 MiB -1 -1 -1 -1 1 0.08 -1 -1 34880 -1 -1 1 4 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 63964 4 4 8 12 0 8 9 3 3 9 -1 auto 24.2 MiB 0.00 25 27 23 0 4 62.5 MiB 0.00 0.00 0.443777 -1.77511 -0.443777 nan 0.00 3.8658e-05 3.1532e-05 0.000235114 0.000199067 -1 -1 -1 -1 -1 27 13 3900 3900 7855.82 872.868 0.00 0.00269657 0.00228426 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml mult_3x3.blif common 0.56 vpr 62.49 MiB -1 -1 -1 -1 3 0.07 -1 -1 36176 -1 -1 3 6 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 63992 6 6 28 34 0 28 15 5 5 25 clb auto 24.1 MiB 0.01 107 51 16 35 0 62.5 MiB 0.00 0.00 1.19848 -5.43061 -1.19848 nan 0.00 0.000106199 9.3249e-05 0.000698618 0.000636787 -1 -1 -1 -1 -1 194 14 23400 11700 33739.5 1349.58 0.01 0.00549119 0.00492459 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml mult_3x4.blif common 0.64 vpr 62.82 MiB -1 -1 -1 -1 4 0.07 -1 -1 35824 -1 -1 5 7 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 64332 7 8 39 47 0 39 20 5 5 25 clb auto 24.4 MiB 0.01 166 236 59 163 14 62.8 MiB 0.00 0.00 1.46514 -7.47508 -1.46514 nan 0.00 0.000146261 0.000128099 0.00141428 0.00126077 -1 -1 -1 -1 -1 357 19 23400 19500 33739.5 1349.58 0.03 0.00881496 0.00775097 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml mult_4x4.blif common 0.66 vpr 62.64 MiB -1 -1 -1 -1 8 0.08 -1 -1 35884 -1 -1 7 8 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 64144 8 8 51 59 0 51 23 6 6 36 clb auto 24.2 MiB 0.01 202 311 50 255 6 62.6 MiB 0.01 0.00 2.65433 -12.8801 -2.65433 nan 0.00 0.000163326 0.000141298 0.0022585 0.00201925 -1 -1 -1 -1 -1 478 20 165600 27300 61410.5 1705.85 0.05 0.0161231 0.0141988 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml mult_5x5.blif common 0.78 vpr 63.07 MiB -1 -1 -1 -1 7 0.11 -1 -1 36308 -1 -1 11 10 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 64584 10 10 95 105 0 95 31 6 6 36 clb auto 24.3 MiB 0.02 440 559 101 432 26 63.1 MiB 0.01 0.00 2.57669 -18.1473 -2.57669 nan 0.00 0.000305872 0.000268646 0.00468964 0.00413893 -1 -1 -1 -1 -1 952 23 165600 42900 61410.5 1705.85 0.09 0.0216848 0.0191066 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml mult_5x6.blif common 0.82 vpr 63.20 MiB -1 -1 -1 -1 8 0.12 -1 -1 36408 -1 -1 11 11 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 64712 11 11 94 105 0 94 33 6 6 36 clb auto 24.3 MiB 0.02 429 397 56 319 22 63.2 MiB 0.01 0.00 2.82654 -21.1346 -2.82654 nan 0.00 0.000368486 0.00033885 0.00425976 0.00387815 -1 -1 -1 -1 -1 949 23 165600 42900 61410.5 1705.85 0.12 0.0234069 0.0208436 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml rca_1bit.blif common 0.50 vpr 62.71 MiB -1 -1 -1 -1 1 0.06 -1 -1 34248 -1 -1 1 3 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 64216 3 2 5 7 0 5 6 3 3 9 -1 auto 24.3 MiB 0.00 15 15 11 0 4 62.7 MiB 0.00 0.00 0.443777 -0.887553 -0.443777 nan 0.00 2.285e-05 1.7069e-05 0.000143404 0.000113483 -1 -1 -1 -1 -1 12 16 3900 3900 7855.82 872.868 0.00 0.00212307 0.00191369 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml rca_2bit.blif common 0.50 vpr 62.46 MiB -1 -1 -1 -1 2 0.06 -1 -1 35352 -1 -1 1 5 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 63964 5 3 9 12 0 9 9 3 3 9 -1 auto 24.1 MiB 0.00 26 27 24 0 3 62.5 MiB 0.00 0.00 0.70303 -1.84984 -0.70303 nan 0.00 3.6475e-05 2.9691e-05 0.000225871 0.000190222 -1 -1 -1 -1 -1 19 17 3900 3900 7855.82 872.868 0.00 0.00267106 0.00239617 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml rca_3bit.blif common 0.53 vpr 62.62 MiB -1 -1 -1 -1 3 0.06 -1 -1 35524 -1 -1 1 7 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 64120 7 4 13 17 0 13 12 3 3 9 -1 auto 24.4 MiB 0.01 37 38 34 0 4 62.6 MiB 0.00 0.00 0.962283 -3.07137 -0.962283 nan 0.00 4.8534e-05 4.0443e-05 0.000296152 0.000254964 -1 -1 -1 -1 -1 42 19 3900 3900 7855.82 872.868 0.01 0.00354561 0.00315615 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml rca_4bit.blif common 0.53 vpr 62.46 MiB -1 -1 -1 -1 4 0.07 -1 -1 35528 -1 -1 1 9 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 63964 9 5 17 22 0 17 15 3 3 9 -1 auto 24.2 MiB 0.00 48 51 43 0 8 62.5 MiB 0.00 0.00 1.22154 -4.55216 -1.22154 nan 0.00 5.6881e-05 4.8307e-05 0.000354972 0.000312399 -1 -1 -1 -1 -1 65 18 3900 3900 7855.82 872.868 0.01 0.00368757 0.00327372 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml rca_5bit.blif common 0.55 vpr 62.61 MiB -1 -1 -1 -1 4 0.07 -1 -1 35636 -1 -1 2 11 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 64116 11 6 24 30 0 24 19 4 4 16 clb auto 24.1 MiB 0.01 81 219 59 138 22 62.6 MiB 0.00 0.00 1.3375 -6.59285 -1.3375 nan 0.00 7.8708e-05 6.7934e-05 0.000977373 0.000845935 -1 -1 -1 -1 -1 132 15 7800 7800 17482.0 1092.63 0.01 0.0049914 0.00443452 -1 -1 -1 -1 -1 -1 -1 -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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml const_true.blif common 0.33 vpr 61.18 MiB -1 -1 -1 -1 0 0.02 -1 -1 29676 -1 -1 1 0 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 62648 -1 1 1 2 0 1 2 3 3 9 -1 auto 22.5 MiB 0.00 0 0 3 0 0 3 61.2 MiB 0.00 0.00 nan nan 0 0 nan 0.00 6.931e-06 3.198e-06 5.4047e-05 3.4432e-05 -1 -1 -1 -1 -1 0 1 3900 3900 7855.82 872.868 0.00 0.000881502 0.000822057 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml const_false.blif common 0.35 vpr 60.57 MiB -1 -1 -1 -1 0 0.02 -1 -1 29724 -1 -1 1 0 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 62024 -1 1 1 2 0 1 2 3 3 9 -1 auto 21.9 MiB 0.00 0 0 3 0 0 3 60.6 MiB 0.00 0.00 nan nan 0 0 nan 0.00 7.004e-06 3.225e-06 5.3462e-05 3.4011e-05 -1 -1 -1 -1 -1 0 1 3900 3900 7855.82 872.868 0.00 0.000862472 0.000807716 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml always_true.blif common 0.36 vpr 60.48 MiB -1 -1 -1 -1 0 0.02 -1 -1 29952 -1 -1 1 0 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 61932 6 1 1 8 0 1 8 3 3 9 -1 auto 21.8 MiB 0.00 0 0 21 0 11 10 60.5 MiB 0.00 0.00 nan nan 0 0 nan 0.00 6.93e-06 3.156e-06 5.4548e-05 3.5204e-05 -1 -1 -1 -1 -1 0 1 3900 3900 7855.82 872.868 0.00 0.000937091 0.000881019 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml always_false.blif common 0.33 vpr 61.18 MiB -1 -1 -1 -1 0 0.02 -1 -1 29952 -1 -1 1 0 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 62644 6 1 1 8 0 1 8 3 3 9 -1 auto 22.5 MiB 0.00 0 0 21 0 11 10 61.2 MiB 0.00 0.00 nan nan 0 0 nan 0.00 7.209e-06 3.322e-06 5.5767e-05 3.6412e-05 -1 -1 -1 -1 -1 0 1 3900 3900 7855.82 872.868 0.00 0.000875748 0.00082056 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml and.blif common 0.35 vpr 61.55 MiB -1 -1 -1 -1 1 0.02 -1 -1 29952 -1 -1 1 2 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 63028 2 1 3 4 0 3 4 3 3 9 -1 auto 22.9 MiB 0.00 9 9 9 5 0 4 61.6 MiB 0.00 0.00 0.443777 0.443777 -0.443777 -0.443777 nan 0.00 8.997e-06 5.729e-06 7.0755e-05 5.1719e-05 -1 -1 -1 -1 -1 6 9 3900 3900 7855.82 872.868 0.00 0.00101687 0.000926241 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml multiconnected_lut.blif common 0.36 vpr 61.17 MiB -1 -1 -1 -1 2 0.03 -1 -1 31488 -1 -1 1 5 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 62640 5 1 7 8 0 7 7 3 3 9 -1 auto 22.5 MiB 0.00 20 20 18 12 0 6 61.2 MiB 0.00 0.00 0.70303 0.70303 -0.70303 -0.70303 nan 0.00 1.26e-05 9.183e-06 9.8941e-05 7.9399e-05 -1 -1 -1 -1 -1 8 6 3900 3900 7855.82 872.868 0.00 0.00107734 0.000987986 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml multiconnected_lut2.blif common 0.41 vpr 61.18 MiB -1 -1 -1 -1 2 0.05 -1 -1 31460 -1 -1 1 5 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 62644 5 1 7 8 0 7 7 3 3 9 -1 auto 22.5 MiB 0.00 20 20 18 13 0 5 61.2 MiB 0.00 0.00 0.70303 0.70303 -0.70303 -0.70303 nan 0.00 1.2562e-05 9.128e-06 0.000100257 8.0833e-05 -1 -1 -1 -1 -1 11 12 3900 3900 7855.82 872.868 0.00 0.00112653 0.00101108 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml and_latch.blif common 0.32 vpr 61.18 MiB -1 -1 -1 -1 1 0.02 -1 -1 29972 -1 -1 1 3 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 62644 3 1 5 6 1 4 5 3 3 9 -1 auto 22.5 MiB 0.00 9 9 12 9 0 3 61.2 MiB 0.00 0.00 0.274843 0.274843 -0.536407 -0.274843 0.274843 0.00 1.6058e-05 1.2667e-05 8.7915e-05 6.761e-05 -1 -1 -1 -1 -1 5 8 3900 3900 7855.82 872.868 0.00 0.00110022 0.000978035 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml false_path_mux.blif common 0.41 vpr 61.18 MiB -1 -1 -1 -1 1 0.03 -1 -1 31808 -1 -1 1 3 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 62648 4 1 4 6 0 4 6 3 3 9 -1 auto 22.6 MiB 0.00 12 12 15 11 0 4 61.2 MiB 0.00 0.00 0.443777 0.443777 -0.443777 -0.443777 nan 0.00 1.0319e-05 6.951e-06 7.5732e-05 5.7277e-05 -1 -1 -1 -1 -1 7 16 3900 3900 7855.82 872.868 0.00 0.00115846 0.00103589 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml mult_2x2.blif common 0.40 vpr 61.18 MiB -1 -1 -1 -1 1 0.03 -1 -1 31872 -1 -1 1 4 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 62644 4 4 8 12 0 8 9 3 3 9 -1 auto 22.9 MiB 0.00 25 25 27 23 0 4 61.2 MiB 0.00 0.00 0.443777 0.443777 -1.77511 -0.443777 nan 0.00 1.7573e-05 1.3738e-05 0.000134702 0.000112478 -1 -1 -1 -1 -1 30 13 3900 3900 7855.82 872.868 0.00 0.00139893 0.00124994 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml mult_3x3.blif common 0.41 vpr 61.21 MiB -1 -1 -1 -1 3 0.04 -1 -1 32352 -1 -1 3 6 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 62680 6 6 28 34 0 28 15 5 5 25 clb auto 22.5 MiB 0.00 113 107 51 16 35 0 61.2 MiB 0.00 0.00 1.19848 1.19848 -5.43061 -1.19848 nan 0.00 4.9548e-05 4.359e-05 0.000386615 0.000355713 -1 -1 -1 -1 -1 190 16 23400 11700 33739.5 1349.58 0.01 0.00300051 0.00265436 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml mult_3x4.blif common 0.45 vpr 61.29 MiB -1 -1 -1 -1 4 0.04 -1 -1 32088 -1 -1 5 7 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 62760 7 8 39 47 0 39 20 5 5 25 clb auto 22.9 MiB 0.01 182 166 236 59 163 14 61.3 MiB 0.00 0.00 1.48602 1.46514 -7.47508 -1.46514 nan 0.00 6.7215e-05 5.9185e-05 0.00094307 0.000857338 -1 -1 -1 -1 -1 326 19 23400 19500 33739.5 1349.58 0.02 0.00469121 0.0041336 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml mult_4x4.blif common 0.46 vpr 61.34 MiB -1 -1 -1 -1 8 0.05 -1 -1 32088 -1 -1 6 8 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 62808 8 8 51 59 0 51 22 5 5 25 clb auto 22.7 MiB 0.01 241 211 352 90 254 8 61.3 MiB 0.00 0.00 2.56944 2.55689 -12.2592 -2.55689 nan 0.00 8.608e-05 7.7986e-05 0.0014657 0.0013411 -1 -1 -1 -1 -1 432 21 23400 23400 33739.5 1349.58 0.02 0.00627483 0.00552861 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml mult_5x5.blif common 0.54 vpr 61.46 MiB -1 -1 -1 -1 7 0.06 -1 -1 32828 -1 -1 11 10 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 62936 10 10 95 105 0 95 31 6 6 36 clb auto 22.3 MiB 0.01 521 440 511 77 404 30 61.5 MiB 0.01 0.00 2.69967 2.57044 -18.1695 -2.57044 nan 0.00 0.000151539 0.000138116 0.00236646 0.00218357 -1 -1 -1 -1 -1 938 24 165600 42900 61410.5 1705.85 0.05 0.0108678 0.00957908 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml mult_5x6.blif common 0.55 vpr 61.65 MiB -1 -1 -1 -1 8 0.07 -1 -1 32920 -1 -1 11 11 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 63132 11 11 94 105 0 94 33 6 6 36 clb auto 22.9 MiB 0.01 523 447 709 77 581 51 61.7 MiB 0.01 0.00 2.83651 2.78731 -20.9698 -2.78731 nan 0.00 0.000146348 0.000133771 0.00278277 0.00255985 -1 -1 -1 -1 -1 978 22 165600 42900 61410.5 1705.85 0.05 0.010858 0.00961707 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml rca_1bit.blif common 0.38 vpr 60.83 MiB -1 -1 -1 -1 1 0.03 -1 -1 30680 -1 -1 1 3 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 62288 3 2 5 7 0 5 6 3 3 9 -1 auto 22.2 MiB 0.00 15 15 15 11 0 4 60.8 MiB 0.00 0.00 0.443777 0.443777 -0.887553 -0.443777 nan 0.00 1.209e-05 8.732e-06 9.1869e-05 7.2945e-05 -1 -1 -1 -1 -1 12 16 3900 3900 7855.82 872.868 0.00 0.00124012 0.00110096 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml rca_2bit.blif common 0.38 vpr 61.18 MiB -1 -1 -1 -1 2 0.03 -1 -1 31868 -1 -1 1 5 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 62648 5 3 9 12 0 9 9 3 3 9 -1 auto 22.5 MiB 0.00 26 26 27 24 0 3 61.2 MiB 0.00 0.00 0.70303 0.70303 -1.84984 -0.70303 nan 0.00 1.7006e-05 1.3134e-05 0.000130625 0.000109922 -1 -1 -1 -1 -1 19 17 3900 3900 7855.82 872.868 0.00 0.00148586 0.00131377 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml rca_3bit.blif common 0.40 vpr 61.18 MiB -1 -1 -1 -1 3 0.03 -1 -1 31864 -1 -1 1 7 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 62648 7 4 13 17 0 13 12 3 3 9 -1 auto 22.5 MiB 0.00 37 37 38 34 0 4 61.2 MiB 0.00 0.00 0.962283 0.962283 -3.07137 -0.962283 nan 0.00 2.1905e-05 1.7808e-05 0.000171216 0.000147331 -1 -1 -1 -1 -1 39 18 3900 3900 7855.82 872.868 0.00 0.00170731 0.00150491 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml rca_4bit.blif common 0.41 vpr 61.19 MiB -1 -1 -1 -1 4 0.03 -1 -1 31864 -1 -1 1 9 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 62656 9 5 17 22 0 17 15 3 3 9 -1 auto 22.9 MiB 0.00 48 48 51 43 0 8 61.2 MiB 0.00 0.00 1.22154 1.22154 -4.55216 -1.22154 nan 0.00 2.6838e-05 2.2089e-05 0.000214843 0.000189834 -1 -1 -1 -1 -1 65 18 3900 3900 7855.82 872.868 0.00 0.00202953 0.00177973 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml rca_5bit.blif common 0.41 vpr 61.20 MiB -1 -1 -1 -1 4 0.03 -1 -1 31868 -1 -1 2 11 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 62664 11 6 24 30 0 24 19 4 4 16 clb auto 22.5 MiB 0.00 96 81 219 61 139 19 61.2 MiB 0.00 0.00 1.37337 1.3375 -6.59285 -1.3375 nan 0.00 3.5886e-05 3.0342e-05 0.000510299 0.000442952 -1 -1 -1 -1 -1 131 14 7800 7800 17482.0 1092.63 0.01 0.00251022 0.00221932 -1 -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_strong_odin/strong_power/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_power/config/golden_results.txt index 1f6be016ab1..4ad63c55fd1 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_power/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_power/config/golden_results.txt @@ -1,3 +1,3 @@ - arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time total_power routing_power_perc clock_power_perc tile_power_perc - k6_frac_N10_mem32K_40nm.xml ch_intrinsics.v common 4.79 vpr 67.81 MiB 0.06 9856 -1 -1 3 0.37 -1 -1 39772 -1 54808 68 99 1 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 69436 99 130 363 493 1 251 298 12 12 144 clb auto 28.7 MiB 0.13 821 70943 24958 34400 11585 67.8 MiB 0.24 0.00 2.51136 -219.195 -2.51136 2.51136 0.28 0.000896235 0.000803075 0.0731146 0.0664864 -1 -1 -1 -1 40 1499 25 5.66058e+06 4.21279e+06 333335. 2314.82 1.63 0.35542 0.319058 12666 64609 -1 1442 10 553 749 42115 14455 2.64494 2.64494 -235.699 -2.64494 0 0 419432. 2912.72 0.02 0.06 0.11 -1 -1 0.02 0.0374155 0.0350957 0.008441 0.2001 0.06777 0.7321 - k6_frac_N10_mem32K_40nm.xml diffeq1.v common 16.21 vpr 71.75 MiB 0.06 9856 -1 -1 15 0.50 -1 -1 38288 -1 56228 38 162 0 5 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 73476 162 96 999 932 1 689 301 16 16 256 mult_36 auto 32.3 MiB 0.49 5426 96061 33445 54809 7807 71.8 MiB 1.03 0.02 21.3991 -1811.48 -21.3991 21.3991 0.51 0.00504368 0.00468153 0.493175 0.461597 -1 -1 -1 -1 56 11482 33 1.21132e+07 4.02797e+06 870502. 3400.40 8.42 2.47741 2.31569 26504 172068 -1 9223 22 3083 6041 811453 269172 22.8885 22.8885 -1951.66 -22.8885 0 0 1.11200e+06 4343.75 0.07 0.47 0.29 -1 -1 0.07 0.221232 0.208061 0.007874 0.3571 0.01689 0.626 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time total_power routing_power_perc clock_power_perc tile_power_perc +k6_frac_N10_mem32K_40nm.xml ch_intrinsics.v common 4.21 odin 100.12 MiB 2.22 102528 -1 -1 3 0.20 -1 -1 34100 -1 52224 68 99 1 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 68248 99 130 363 493 1 251 298 12 12 144 clb auto 27.9 MiB 0.07 2086 873 75918 23929 39390 12599 66.6 MiB 0.13 0.00 2.81842 2.17528 -220.25 -2.17528 2.17528 0.09 0.00057296 0.000536541 0.045254 0.042348 -1 -1 -1 -1 32 1783 21 5.66058e+06 4.21279e+06 281316. 1953.58 0.21 0.115911 0.106856 11950 52952 -1 1569 8 475 592 37949 12971 2.62567 2.62567 -236.989 -2.62567 0 0 345702. 2400.71 0.01 0.02 0.03 -1 -1 0.01 0.0148651 0.0139996 0.008359 0.1947 0.06177 0.7435 +k6_frac_N10_mem32K_40nm.xml diffeq1.v common 7.33 odin 87.38 MiB 2.02 89472 -1 -1 15 0.28 -1 -1 34648 -1 54320 39 162 0 5 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 72896 162 96 999 932 1 692 302 16 16 256 mult_36 auto 31.6 MiB 0.22 9298 5609 93406 28941 57235 7230 71.2 MiB 0.37 0.01 25.0935 21.2697 -1792.21 -21.2697 21.2697 0.17 0.00167786 0.00157594 0.166256 0.156124 -1 -1 -1 -1 42 13435 49 1.21132e+07 4.08187e+06 666210. 2602.38 1.63 0.455209 0.425126 24208 131534 -1 10212 18 3382 6827 1034510 307036 22.5724 22.5724 -1934.15 -22.5724 0 0 835850. 3265.04 0.02 0.20 0.07 -1 -1 0.02 0.0801778 0.0759457 0.00765 0.3347 0.01582 0.6495 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_route_only/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_route_only/config/golden_results.txt index d6f9144a21f..91c650b7642 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_route_only/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_route_only/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 ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_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 - k6_N10_mem32K_40nm.xml stereovision3.v common 1.32 vpr 66.34 MiB 0.08 10496 -1 -1 4 0.22 -1 -1 36740 -1 -1 19 11 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 67936 11 30 262 292 2 99 60 7 7 49 clb auto 27.3 MiB 0.07 425 2283 406 1804 73 66.3 MiB 0.04 0.00 2.45115 -182.341 -2.45115 2.3368 0.00 0.000792071 0.00065667 0.0233552 0.0207856 -1 -1 -1 -1 414 4.35789 166 1.74737 630 1427 58282 13907 1.07788e+06 1.02399e+06 207176. 4228.08 20 4440 29880 -1 2.3823 2.2863 -180.577 -2.3823 0 0 0.05 -1 -1 66.3 MiB 0.07 0.0694098 0.0624777 66.3 MiB -1 0.01 - k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision3.v common 1.84 vpr 69.28 MiB 0.07 10496 -1 -1 5 0.19 -1 -1 36360 -1 -1 14 11 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 70940 11 30 313 321 2 115 55 7 7 49 clb auto 29.8 MiB 0.48 448 1927 352 1502 73 69.3 MiB 0.05 0.00 2.6627 -173.06 -2.6627 2.30313 0.00 0.00080657 0.000690329 0.0283624 0.0258806 -1 -1 -1 -1 595 5.45872 228 2.09174 234 449 14202 4622 1.07788e+06 754516 219490. 4479.39 8 5100 32136 -1 2.70461 2.28805 -176.84 -2.70461 0 0 0.06 -1 -1 69.3 MiB 0.04 0.0633117 0.0585851 69.3 MiB -1 0.01 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time 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 +k6_N10_mem32K_40nm.xml stereovision3.v common 3.89 odin 167.25 MiB 2.94 171264 -1 -1 4 0.12 -1 -1 33084 -1 -1 20 11 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 67268 11 30 262 292 2 99 61 7 7 49 clb auto 25.6 MiB 0.04 688 437 2341 384 1888 69 65.7 MiB 0.02 0.00 2.91853 2.7389 -178.372 -2.7389 2.43544 0.00 0.00039432 0.000341138 0.0102726 0.00907409 -1 -1 -1 -1 434 4.56842 177 1.86316 730 1655 64750 15779 1.07788e+06 1.07788e+06 207176. 4228.08 23 4440 29880 -1 2.44651 2.32748 -175.142 -2.44651 0 0 0.02 -1 -1 65.7 MiB 0.03 0.0322281 0.0281216 65.7 MiB -1 0.00 +k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision3.v common 3.73 odin 156.75 MiB 2.62 160512 -1 -1 5 0.11 -1 -1 33288 -1 -1 14 11 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 69568 11 30 313 321 2 114 55 7 7 49 clb auto 28.6 MiB 0.19 671 455 1719 301 1356 62 67.9 MiB 0.02 0.00 2.73611 2.6413 -165.526 -2.6413 2.31106 0.00 0.000431787 0.000378246 0.0113226 0.0102357 -1 -1 -1 -1 571 5.28704 218 2.01852 192 380 9910 2908 1.07788e+06 754516 219490. 4479.39 12 5100 32136 -1 2.66069 2.29553 -166.559 -2.66069 0 0 0.02 -1 -1 67.9 MiB 0.02 0.031952 0.0291815 67.9 MiB -1 0.00 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_route_reconverge/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_route_reconverge/config/golden_results.txt index 9c4fd28b84b..ced6ee7cc83 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_route_reconverge/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_route_reconverge/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 total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - k6_frac_N10_frac_chain_depop50_mem32K_40nm.xml mkSMAdapter4B.v common 29.83 vpr 86.25 MiB 0.45 29568 -1 -1 4 2.98 -1 -1 43168 -1 -1 169 193 5 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 88324 193 205 2863 2789 1 1374 572 20 20 400 memory auto 45.0 MiB 2.27 10985 240245 81936 130873 27436 86.3 MiB 2.86 0.03 4.42447 -2617.73 -4.42447 4.42447 0.89 0.00871072 0.007701 1.03653 0.893245 -1 -1 -1 -1 78 21148 33 2.07112e+07 1.18481e+07 2.06176e+06 5154.39 13.92 4.09327 3.61448 52874 439520 -1 19015 17 5137 14374 1050969 231484 5.06231 5.06231 -2806.44 -5.06231 -11.1461 -0.341744 2.60035e+06 6500.87 0.19 0.98 0.77 -1 -1 0.19 0.584807 0.525478 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +k6_frac_N10_frac_chain_depop50_mem32K_40nm.xml mkSMAdapter4B.v common 21.80 odin 1.01 GiB 10.99 1063152 -1 -1 4 1.51 -1 -1 40168 -1 -1 165 193 5 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 87924 193 205 2863 2789 1 1378 568 20 20 400 memory auto 45.9 MiB 1.01 22943 10817 247423 86121 133897 27405 85.9 MiB 1.12 0.01 6.47551 5.02579 -2678.97 -5.02579 5.02579 0.32 0.00374808 0.00338021 0.423272 0.380582 -1 -1 -1 -1 76 21112 34 2.07112e+07 1.16325e+07 2.02110e+06 5052.76 3.91 1.38132 1.25049 52074 423490 -1 19105 17 5044 13854 1088699 242536 5.48145 5.48145 -2895.27 -5.48145 -14.3689 -0.360359 2.51807e+06 6295.18 0.07 0.33 0.24 -1 -1 0.07 0.214376 0.201156 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_router_init_timing/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_router_init_timing/config/golden_results.txt index 812f4d3bdb5..63f396f9727 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_router_init_timing/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_router_init_timing/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 ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_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 - k6_N10_mem32K_40nm.xml ex5p.blif common_--router_initial_timing_all_critical 1.96 vpr 71.51 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 89 8 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 73224 8 63 748 811 0 455 160 14 14 196 clb auto 31.8 MiB 0.52 4992 14048 2664 10357 1027 71.5 MiB 0.35 0.02 4.19211 -186.67 -4.19211 nan 0.00 0.00713555 0.00269028 0.139755 0.114328 -1 -1 -1 -1 6642 14.5978 1787 3.92747 3214 12750 489499 77791 9.20055e+06 4.79657e+06 867065. 4423.80 16 18088 133656 -1 4.47188 nan -188.808 -4.47188 0 0 0.22 -1 -1 71.5 MiB 0.32 0.294582 0.254721 71.5 MiB -1 0.05 - k6_N10_mem32K_40nm.xml ex5p.blif common_--router_initial_timing_lookahead 2.24 vpr 71.62 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 89 8 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 73336 8 63 748 811 0 455 160 14 14 196 clb auto 32.0 MiB 0.64 4992 14048 2664 10357 1027 71.6 MiB 0.33 0.01 4.19211 -186.67 -4.19211 nan 0.00 0.00345084 0.002875 0.154792 0.13937 -1 -1 -1 -1 6701 14.7275 1794 3.94286 3137 12291 459530 73860 9.20055e+06 4.79657e+06 867065. 4423.80 18 18088 133656 -1 4.41143 nan -186.654 -4.41143 0 0 0.26 -1 -1 71.6 MiB 0.37 0.334856 0.303047 71.6 MiB -1 0.08 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time 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 +k6_N10_mem32K_40nm.xml ex5p.blif common_--router_initial_timing_all_critical 0.96 vpr 70.31 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 90 8 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 71996 8 63 748 811 0 451 161 14 14 196 clb auto 31.2 MiB 0.24 7035 5048 13708 2494 10216 998 70.3 MiB 0.12 0.00 6.16893 4.25044 -184.802 -4.25044 nan 0.00 0.0012361 0.00107738 0.0505529 0.0454928 -1 -1 -1 -1 6826 15.1353 1836 4.07095 3768 15421 585680 92261 9.20055e+06 4.85046e+06 867065. 4423.80 21 18088 133656 -1 4.17836 nan -185.935 -4.17836 0 0 0.08 -1 -1 70.3 MiB 0.19 0.141694 0.128755 70.3 MiB -1 0.02 +k6_N10_mem32K_40nm.xml ex5p.blif common_--router_initial_timing_lookahead 0.91 vpr 69.93 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 90 8 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 71608 8 63 748 811 0 451 161 14 14 196 clb auto 30.9 MiB 0.23 7035 5048 13708 2494 10216 998 69.9 MiB 0.12 0.00 6.16893 4.25044 -184.802 -4.25044 nan 0.00 0.00117606 0.00102769 0.0494933 0.0444045 -1 -1 -1 -1 6906 15.3126 1853 4.10865 3897 16323 609528 97595 9.20055e+06 4.85046e+06 867065. 4423.80 21 18088 133656 -1 4.17947 nan -185.454 -4.17947 0 0 0.08 -1 -1 69.9 MiB 0.16 0.127311 0.115445 69.9 MiB -1 0.02 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_router_lookahead/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_router_lookahead/config/golden_results.txt index ca94c478175..a43902b89ef 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_router_lookahead/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_router_lookahead/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 ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_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 - k6_N10_mem32K_40nm.xml ex5p.blif common_--router_lookahead_classic 2.33 vpr 71.47 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 89 8 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 73184 8 63 748 811 0 455 160 14 14 196 clb auto 31.9 MiB 0.53 4993 17086 3593 12286 1207 71.5 MiB 0.39 0.01 3.65588 -160.421 -3.65588 nan 0.05 0.00324947 0.00265148 0.171741 0.145172 -1 -1 -1 -1 7077 15.5538 1900 4.17582 3821 15130 1125339 197021 9.20055e+06 4.79657e+06 701736. 3580.29 19 16332 105598 -1 4.24547 nan -186.357 -4.24547 0 0 0.19 -1 -1 71.5 MiB 0.65 0.403427 0.354208 -1 -1 -1 - k6_N10_mem32K_40nm.xml ex5p.blif common_--router_lookahead_map 2.06 vpr 71.19 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 89 8 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 72900 8 63 748 811 0 455 160 14 14 196 clb auto 31.8 MiB 0.61 4933 15350 2970 11325 1055 71.2 MiB 0.33 0.01 4.27873 -192.837 -4.27873 nan 0.00 0.00354772 0.00306723 0.134491 0.114487 -1 -1 -1 -1 7099 15.6022 1898 4.17143 3600 14045 536072 90036 9.20055e+06 4.79657e+06 701736. 3580.29 22 16332 105598 -1 4.46795 nan -200.148 -4.46795 0 0 0.16 -1 -1 71.2 MiB 0.37 0.342443 0.304101 71.2 MiB -1 0.04 - k6_N10_mem32K_40nm.xml ex5p.blif common_--router_lookahead_extended_map 4.12 vpr 71.37 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 89 8 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 73084 8 63 748 811 0 455 160 14 14 196 clb auto 31.9 MiB 0.46 5048 17520 3917 12196 1407 71.4 MiB 0.41 0.01 3.77945 -168.167 -3.77945 nan 0.08 0.0055915 0.00450451 0.174816 0.150375 -1 -1 -1 -1 7182 15.7846 1920 4.21978 4190 17148 1255046 221662 9.20055e+06 4.79657e+06 701736. 3580.29 29 16332 105598 -1 4.52207 nan -194.42 -4.52207 0 0 0.22 -1 -1 71.4 MiB 0.70 0.438594 0.389856 -1 -1 -1 - k6_N10_mem32K_40nm.xml ex5p.blif common_--router_lookahead_extended_map_--reorder_rr_graph_nodes_algorithm_random_shuffle 3.79 vpr 71.38 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 89 8 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 73092 8 63 748 811 0 455 160 14 14 196 clb auto 31.8 MiB 0.50 5048 17520 3917 12196 1407 71.4 MiB 0.34 0.01 3.77945 -168.167 -3.77945 nan 0.08 0.00371073 0.00310746 0.151921 0.128885 -1 -1 -1 -1 7182 15.7846 1920 4.21978 4190 17148 1255046 221662 9.20055e+06 4.79657e+06 701736. 3580.29 29 16332 105598 -1 4.52207 nan -194.42 -4.52207 0 0 0.16 -1 -1 71.4 MiB 0.65 0.390878 0.342895 -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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time 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 +k6_N10_mem32K_40nm.xml ex5p.blif common_--router_lookahead_classic 1.01 vpr 70.42 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 90 8 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 72112 8 63 748 811 0 451 161 14 14 196 clb auto 31.2 MiB 0.23 7019 5149 19389 4557 13188 1644 70.4 MiB 0.16 0.00 5.27085 3.74489 -168.03 -3.74489 nan 0.02 0.00126033 0.00109349 0.0665406 0.0595916 -1 -1 -1 -1 7151 15.8559 1918 4.25277 4270 17535 1282134 224677 9.20055e+06 4.85046e+06 701736. 3580.29 23 16332 105598 -1 4.37015 nan -196.64 -4.37015 0 0 0.06 -1 -1 70.4 MiB 0.22 0.146899 0.133127 -1 -1 -1 +k6_N10_mem32K_40nm.xml ex5p.blif common_--router_lookahead_map 0.92 vpr 69.92 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 90 8 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 71600 8 63 748 811 0 451 161 14 14 196 clb auto 30.9 MiB 0.23 7019 5029 15019 2779 11014 1226 69.9 MiB 0.13 0.00 5.64572 4.2713 -188.25 -4.2713 nan 0.00 0.00124937 0.00108276 0.0545594 0.0488954 -1 -1 -1 -1 7035 15.5987 1894 4.19956 3783 16134 598321 102284 9.20055e+06 4.85046e+06 701736. 3580.29 20 16332 105598 -1 4.48059 nan -193.333 -4.48059 0 0 0.06 -1 -1 69.9 MiB 0.19 0.141965 0.128041 69.9 MiB -1 0.02 +k6_N10_mem32K_40nm.xml ex5p.blif common_--router_lookahead_extended_map 1.71 vpr 70.30 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 90 8 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 71984 8 63 748 811 0 451 161 14 14 196 clb auto 31.2 MiB 0.24 7019 5066 19826 4740 13454 1632 70.3 MiB 0.16 0.00 5.43885 3.72182 -172.204 -3.72182 nan 0.03 0.00121598 0.00106627 0.0675193 0.0602983 -1 -1 -1 -1 7315 16.2195 1982 4.39468 4173 17201 1263136 226328 9.20055e+06 4.85046e+06 701736. 3580.29 22 16332 105598 -1 4.28324 nan -195.438 -4.28324 0 0 0.06 -1 -1 70.3 MiB 0.22 0.145124 0.131162 -1 -1 -1 +k6_N10_mem32K_40nm.xml ex5p.blif common_--router_lookahead_extended_map_--reorder_rr_graph_nodes_algorithm_random_shuffle 1.68 vpr 70.29 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 90 8 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 71980 8 63 748 811 0 451 161 14 14 196 clb auto 30.9 MiB 0.23 7019 5066 19826 4740 13454 1632 70.3 MiB 0.16 0.00 5.43885 3.72182 -172.204 -3.72182 nan 0.03 0.00119569 0.00104348 0.0665483 0.0593856 -1 -1 -1 -1 7315 16.2195 1982 4.39468 4173 17201 1263136 226328 9.20055e+06 4.85046e+06 701736. 3580.29 22 16332 105598 -1 4.28324 nan -195.438 -4.28324 0 0 0.06 -1 -1 70.3 MiB 0.22 0.143597 0.129548 -1 -1 -1 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_router_update_lb_delays/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_router_update_lb_delays/config/golden_results.txt index 73afad51c48..fecff9d091a 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_router_update_lb_delays/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_router_update_lb_delays/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 ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_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 - k6_N10_mem32K_40nm.xml ex5p.blif common_--router_update_lower_bound_delays_off 2.09 vpr 71.32 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 89 8 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 73036 8 63 748 811 0 455 160 14 14 196 clb auto 31.9 MiB 0.54 5066 14916 2828 10927 1161 71.3 MiB 0.32 0.01 4.20607 -183.516 -4.20607 nan 0.00 0.00299665 0.00251735 0.139481 0.119628 -1 -1 -1 -1 6988 15.3582 1874 4.11868 3892 16491 596262 97679 9.20055e+06 4.79657e+06 787177. 4016.21 23 17112 118924 -1 4.23403 nan -187.789 -4.23403 0 0 0.17 -1 -1 71.3 MiB 0.42 0.337391 0.298836 71.3 MiB -1 0.06 - k6_N10_mem32K_40nm.xml ex5p.blif common_--router_update_lower_bound_delays_on 2.37 vpr 71.40 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 89 8 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 73112 8 63 748 811 0 455 160 14 14 196 clb auto 31.9 MiB 0.54 5066 14916 2828 10927 1161 71.4 MiB 0.36 0.01 4.20607 -183.516 -4.20607 nan 0.00 0.00287338 0.00244407 0.145055 0.130505 -1 -1 -1 -1 6949 15.2725 1858 4.08352 3794 15906 573229 94207 9.20055e+06 4.79657e+06 787177. 4016.21 23 17112 118924 -1 4.30087 nan -188.544 -4.30087 0 0 0.23 -1 -1 71.4 MiB 0.57 0.403361 0.368877 71.4 MiB -1 0.07 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time 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 +k6_N10_mem32K_40nm.xml ex5p.blif common_--router_update_lower_bound_delays_off 0.93 vpr 69.92 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 90 8 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 71600 8 63 748 811 0 451 161 14 14 196 clb auto 30.9 MiB 0.24 7035 5098 13271 2309 10001 961 69.9 MiB 0.12 0.00 6.18121 4.10809 -187.168 -4.10809 nan 0.00 0.00119598 0.00104626 0.0485432 0.0437081 -1 -1 -1 -1 7155 15.8647 1916 4.24834 4312 18456 674497 110334 9.20055e+06 4.85046e+06 787177. 4016.21 21 17112 118924 -1 4.03206 nan -187.889 -4.03206 0 0 0.07 -1 -1 69.9 MiB 0.18 0.128344 0.116744 69.9 MiB -1 0.02 +k6_N10_mem32K_40nm.xml ex5p.blif common_--router_update_lower_bound_delays_on 0.91 vpr 70.30 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 90 8 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 71984 8 63 748 811 0 451 161 14 14 196 clb auto 31.2 MiB 0.23 7035 5098 13271 2309 10001 961 70.3 MiB 0.12 0.00 6.18121 4.10809 -187.168 -4.10809 nan 0.00 0.00124712 0.00108956 0.049401 0.0444125 -1 -1 -1 -1 7141 15.8337 1913 4.24168 4366 18775 685171 111801 9.20055e+06 4.85046e+06 787177. 4016.21 21 17112 118924 -1 4.03206 nan -187.889 -4.03206 0 0 0.07 -1 -1 70.3 MiB 0.17 0.12868 0.116884 70.3 MiB -1 0.02 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 d51a6534507..d1a8675565f 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 total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - slicem.xml carry_chain.blif common 1.14 vpr 59.68 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 61108 1 -1 48 34 1 35 6 5 5 25 BLK_IG-SLICEM auto 20.9 MiB 0.25 70 15 4 10 1 59.7 MiB 0.00 0.00 0.532448 -5.19346 -0.532448 0.532448 0.00 0.000126011 0.000111009 0.000872338 0.000798258 -1 -1 -1 -1 25 262 18 133321 74067 -1 -1 0.48 0.0703731 0.0607281 1252 5405 -1 274 13 122 122 23159 13821 1.78919 1.78919 -18.223 -1.78919 0 0 -1 -1 0.00 0.02 0.01 -1 -1 0.00 0.00593831 0.00529293 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +slicem.xml carry_chain.blif common 0.55 vpr 58.79 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 60200 1 -1 48 34 1 35 6 5 5 25 BLK_IG-SLICEM auto 19.9 MiB 0.14 70 70 15 4 10 1 58.8 MiB 0.00 0.00 0.552322 0.523836 -5.19346 -0.523836 0.523836 0.00 6.816e-05 6.1015e-05 0.000550461 0.000511682 -1 -1 -1 -1 27 337 26 133321 74067 -1 -1 0.09 0.0140307 0.0116797 1284 5874 -1 249 10 84 84 16544 9291 1.47622 1.47622 -16.7882 -1.47622 0 0 -1 -1 0.00 0.01 0.00 -1 -1 0.00 0.00286435 0.00259865 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_routing_modes/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_routing_modes/config/golden_results.txt index 2974b610be2..5dba66ce28c 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_routing_modes/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_routing_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 total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - arch.xml ndff.blif common 0.30 vpr 59.09 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 4 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 60508 4 4 10 14 1 10 11 4 4 16 ff_tile io_tile auto 20.6 MiB 0.00 31 59 13 43 3 59.1 MiB 0.00 0.00 0.247067 -2.25231 -0.247067 0.247067 0.00 3.5462e-05 2.8363e-05 0.000299521 0.0002448 -1 -1 -1 -1 3 28 27 59253.6 44440.2 -1 -1 0.01 0.00397217 0.00338578 160 440 -1 25 3 17 25 782 371 0.259819 0.259819 -2.4911 -0.259819 0 0 -1 -1 0.00 0.00 0.00 -1 -1 0.00 0.00197845 0.00188555 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +arch.xml ndff.blif common 0.28 vpr 57.55 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 4 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 58932 4 4 10 14 1 10 11 4 4 16 ff_tile io_tile auto 18.8 MiB 0.00 36 31 59 13 43 3 57.6 MiB 0.00 0.00 0.247067 0.247067 -2.25231 -0.247067 0.247067 0.00 1.8904e-05 1.4655e-05 0.00017596 0.000143236 -1 -1 -1 -1 3 28 27 59253.6 44440.2 -1 -1 0.01 0.00219197 0.00184136 160 440 -1 25 3 17 25 782 371 0.259819 0.259819 -2.4911 -0.259819 0 0 -1 -1 0.00 0.00 0.00 -1 -1 0.00 0.00106544 0.00100507 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_scale_delay_budgets/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_scale_delay_budgets/config/golden_results.txt index 936401071c3..b163155ac32 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_scale_delay_budgets/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_scale_delay_budgets/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 total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time 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 - k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision3.v common 1.54 vpr 68.95 MiB 0.06 10496 -1 -1 5 0.18 -1 -1 36448 -1 -1 14 11 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 70604 11 30 313 321 2 114 55 7 7 49 clb auto 29.5 MiB 0.39 459 2031 574 1374 83 68.9 MiB 0.04 0.00 4.6413 0 0 4.31525 0.00 0.000717512 0.000626394 0.019463 0.0174272 -1 -1 -1 -1 569 5.26852 227 2.10185 207 393 9602 2945 1.07788e+06 754516 219490. 4479.39 7 5100 32136 -1 4.62935 4.30491 0 0 -165.142 -1.707 0.05 -1 -1 68.9 MiB 0.06 0.0634405 0.0562085 68.9 MiB -1 0.01 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time 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 +k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision3.v common 3.58 odin 157.12 MiB 2.51 160896 -1 -1 5 0.11 -1 -1 33284 -1 -1 14 11 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 69888 11 30 313 321 2 115 55 7 7 49 clb auto 28.4 MiB 0.17 671 430 3071 674 1846 551 68.2 MiB 0.03 0.00 4.73611 4.6413 0 0 4.32062 0.00 0.000379979 0.000346033 0.014831 0.0136619 -1 -1 -1 -1 573 5.25688 232 2.12844 279 564 13433 4035 1.07788e+06 754516 219490. 4479.39 9 5100 32136 -1 4.69675 4.35776 0 0 -164.736 -1.707 0.02 -1 -1 68.2 MiB 0.02 0.0309486 0.0287174 68.2 MiB -1 0.00 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_sdc/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_sdc/config/golden_results.txt index f1ae2610488..e9412340705 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_sdc/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_sdc/config/golden_results.txt @@ -1,7 +1,7 @@ - arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - k6_N10_mem32K_40nm.xml multiclock.blif common_-sdc_file_sdc/samples/A.sdc 0.44 vpr 65.32 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 5 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 66884 5 3 11 14 2 9 10 4 4 16 clb auto 27.1 MiB 0.01 21 30 5 21 4 65.3 MiB 0.00 0.00 0.814658 -2.77132 -0.814658 0.571 0.01 3.9163e-05 3.0734e-05 0.00023521 0.000191167 -1 -1 -1 -1 8 19 2 107788 107788 4794.78 299.674 0.01 0.00213897 0.00197887 564 862 -1 18 4 13 13 306 148 0.739641 0.571 -2.62128 -0.739641 0 0 5401.54 337.596 0.00 0.00 0.00 -1 -1 0.00 0.00188153 0.00176769 - k6_N10_mem32K_40nm.xml multiclock.blif common_-sdc_file_sdc/samples/B.sdc 0.42 vpr 65.25 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 5 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 66820 5 3 11 14 2 9 10 4 4 16 clb auto 26.9 MiB 0.01 22 30 6 14 10 65.3 MiB 0.00 0.00 0.571 0 0 0.571 0.01 6.1332e-05 3.1443e-05 0.00028123 0.000216755 -1 -1 -1 -1 8 30 5 107788 107788 4794.78 299.674 0.01 0.00219985 0.00199813 564 862 -1 22 5 17 17 362 153 0.571 0.571 0 0 0 0 5401.54 337.596 0.00 0.00 0.00 -1 -1 0.00 0.0028018 0.00269609 - k6_N10_mem32K_40nm.xml multiclock.blif common_-sdc_file_sdc/samples/C.sdc 0.40 vpr 65.20 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 5 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 66764 5 3 11 14 2 9 10 4 4 16 clb auto 26.8 MiB 0.01 21 30 5 22 3 65.2 MiB 0.00 0.00 0.646297 -2.19033 -0.646297 0.571 0.01 3.8778e-05 3.099e-05 0.000214053 0.000176854 -1 -1 -1 -1 8 20 3 107788 107788 4794.78 299.674 0.01 0.00219902 0.00204346 564 862 -1 19 5 16 16 356 157 0.57241 0.571 -2.00713 -0.57241 0 0 5401.54 337.596 0.00 0.00 0.00 -1 -1 0.00 0.00216696 0.00200612 - k6_N10_mem32K_40nm.xml multiclock.blif common_-sdc_file_sdc/samples/D.sdc 0.40 vpr 65.30 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 5 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 66872 5 3 11 14 2 9 10 4 4 16 clb auto 27.0 MiB 0.01 21 30 7 16 7 65.3 MiB 0.00 0.00 1.6463 -5.31965 -1.6463 0.571 0.01 4.3301e-05 3.3225e-05 0.000258104 0.000204952 -1 -1 -1 -1 8 19 2 107788 107788 4794.78 299.674 0.01 0.00214578 0.0019473 564 862 -1 18 4 13 13 292 139 1.57153 0.571 -4.99677 -1.57153 0 0 5401.54 337.596 0.00 0.00 0.00 -1 -1 0.00 0.00224405 0.00207678 - k6_N10_mem32K_40nm.xml multiclock.blif common_-sdc_file_sdc/samples/E.sdc 0.38 vpr 65.41 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 5 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 66984 5 3 11 14 2 9 10 4 4 16 clb auto 27.0 MiB 0.01 22 30 8 15 7 65.4 MiB 0.00 0.00 1.44967 -2.9103 -1.44967 0.571 0.01 5.0024e-05 3.2956e-05 0.000205951 0.000157313 -1 -1 -1 -1 8 20 11 107788 107788 4794.78 299.674 0.01 0.00254156 0.00219599 564 862 -1 25 5 17 17 497 261 1.46961 0.571 -2.77989 -1.46961 0 0 5401.54 337.596 0.00 0.00 0.00 -1 -1 0.00 0.0022282 0.00180897 - k6_N10_mem32K_40nm.xml multiclock.blif common_-sdc_file_sdc/samples/F.sdc 0.40 vpr 65.41 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 5 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 66984 5 3 11 14 2 9 10 4 4 16 clb auto 27.0 MiB 0.00 21 30 5 23 2 65.4 MiB 0.00 0.00 0.146298 0 0 0.571 0.01 5.2455e-05 4.3444e-05 0.00030806 0.000256078 -1 -1 -1 -1 8 20 2 107788 107788 4794.78 299.674 0.01 0.00225516 0.00206503 564 862 -1 19 5 16 16 368 166 0.0724097 0.571 0 0 0 0 5401.54 337.596 0.00 0.00 0.00 -1 -1 0.00 0.00187829 0.00175106 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +k6_N10_mem32K_40nm.xml multiclock.blif common_-sdc_file_sdc/samples/A.sdc 0.31 vpr 63.87 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 5 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65404 5 3 11 14 2 9 10 4 4 16 clb auto 25.6 MiB 0.00 22 21 30 5 21 4 63.9 MiB 0.00 0.00 0.814658 0.814658 -2.77132 -0.814658 0.571 0.00 1.9532e-05 1.4985e-05 0.000133208 0.000107724 -1 -1 -1 -1 8 19 2 107788 107788 4794.78 299.674 0.00 0.00115214 0.00105112 564 862 -1 18 4 13 13 306 148 0.739641 0.571 -2.62128 -0.739641 0 0 5401.54 337.596 0.00 0.00 0.00 -1 -1 0.00 0.00103168 0.000957693 +k6_N10_mem32K_40nm.xml multiclock.blif common_-sdc_file_sdc/samples/B.sdc 0.33 vpr 63.88 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 5 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65408 5 3 11 14 2 9 10 4 4 16 clb auto 25.3 MiB 0.00 22 22 30 6 14 10 63.9 MiB 0.00 0.00 0.571 0.571 0 0 0.571 0.00 1.7929e-05 1.4042e-05 0.000128716 0.000105881 -1 -1 -1 -1 8 30 5 107788 107788 4794.78 299.674 0.01 0.00119508 0.00109064 564 862 -1 22 5 17 17 362 153 0.571 0.571 0 0 0 0 5401.54 337.596 0.00 0.00 0.00 -1 -1 0.00 0.00110004 0.00102934 +k6_N10_mem32K_40nm.xml multiclock.blif common_-sdc_file_sdc/samples/C.sdc 0.31 vpr 64.25 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 5 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65792 5 3 11 14 2 9 10 4 4 16 clb auto 25.6 MiB 0.00 22 21 30 5 22 3 64.2 MiB 0.00 0.00 0.646297 0.646297 -2.19033 -0.646297 0.571 0.00 2.1502e-05 1.6408e-05 0.000150491 0.000121289 -1 -1 -1 -1 8 20 3 107788 107788 4794.78 299.674 0.01 0.00123245 0.00111483 564 862 -1 19 5 16 16 356 157 0.57241 0.571 -2.00713 -0.57241 0 0 5401.54 337.596 0.00 0.00 0.00 -1 -1 0.00 0.00112413 0.00104219 +k6_N10_mem32K_40nm.xml multiclock.blif common_-sdc_file_sdc/samples/D.sdc 0.33 vpr 63.81 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 5 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65340 5 3 11 14 2 9 10 4 4 16 clb auto 25.2 MiB 0.00 22 21 30 7 16 7 63.8 MiB 0.00 0.00 1.64604 1.6463 -5.31965 -1.6463 0.571 0.00 2.3243e-05 1.7592e-05 0.000161496 0.000129112 -1 -1 -1 -1 8 19 2 107788 107788 4794.78 299.674 0.00 0.00125222 0.00112683 564 862 -1 18 4 13 13 292 139 1.57153 0.571 -4.99677 -1.57153 0 0 5401.54 337.596 0.00 0.00 0.00 -1 -1 0.00 0.00115066 0.00105296 +k6_N10_mem32K_40nm.xml multiclock.blif common_-sdc_file_sdc/samples/E.sdc 0.30 vpr 64.25 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 5 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65788 5 3 11 14 2 9 10 4 4 16 clb auto 25.6 MiB 0.00 22 22 30 8 15 7 64.2 MiB 0.00 0.00 1.44967 1.44967 -2.9103 -1.44967 0.571 0.00 2.7152e-05 1.8078e-05 0.000163344 0.000129482 -1 -1 -1 -1 8 20 11 107788 107788 4794.78 299.674 0.01 0.0014976 0.00130776 564 862 -1 25 5 17 17 497 261 1.46961 0.571 -2.77989 -1.46961 0 0 5401.54 337.596 0.00 0.00 0.00 -1 -1 0.00 0.00117943 0.00108545 +k6_N10_mem32K_40nm.xml multiclock.blif common_-sdc_file_sdc/samples/F.sdc 0.33 vpr 63.87 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 5 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65404 5 3 11 14 2 9 10 4 4 16 clb auto 25.6 MiB 0.00 22 21 30 5 23 2 63.9 MiB 0.00 0.00 0.146298 0.146298 0 0 0.571 0.00 2.1693e-05 1.7097e-05 0.000167017 0.000140121 -1 -1 -1 -1 8 20 2 107788 107788 4794.78 299.674 0.00 0.00122871 0.00112733 564 862 -1 19 5 16 16 368 166 0.0724097 0.571 0 0 0 0 5401.54 337.596 0.00 0.00 0.00 -1 -1 0.00 0.00114705 0.00106508 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 5a4eb2784da..99931973f06 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 ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time num_le num_luts num_add_blocks max_add_chain_length num_sub_blocks max_sub_chain_length - k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml mult_4x4.v common 1.55 vpr 66.09 MiB 0.01 7168 -1 -1 1 0.03 -1 -1 33640 -1 -1 3 9 0 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 67672 9 8 75 70 1 36 20 5 5 25 clb auto 27.1 MiB 0.69 94 695 228 460 7 66.1 MiB 0.01 0.00 2.48207 -26.1618 -2.48207 2.48207 0.03 0.000181733 0.000161557 0.00585234 0.0052913 -1 -1 -1 -1 52 134 15 151211 75605.7 63348.9 2533.96 0.11 0.0432562 0.0374575 2316 10503 -1 114 8 106 124 3566 1793 2.40307 2.40307 -27.5996 -2.40307 0 0 82390.3 3295.61 0.00 0.01 0.02 -1 -1 0.00 0.0069119 0.0064541 13 18 19 7 0 0 - k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml mult_5x5.v common 4.05 vpr 66.50 MiB 0.01 7040 -1 -1 1 0.03 -1 -1 33588 -1 -1 2 11 0 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 68092 11 10 108 97 1 47 23 4 4 16 clb auto 27.2 MiB 3.14 125 439 123 270 46 66.5 MiB 0.01 0.00 3.45122 -41.5692 -3.45122 3.45122 0.01 0.000220655 0.000197533 0.0046684 0.00428671 -1 -1 -1 -1 30 238 26 50403.8 50403.8 19887.8 1242.99 0.18 0.0734016 0.0633094 992 2748 -1 177 19 176 222 5882 3651 3.90204 3.90204 -49.9067 -3.90204 0 0 24232.7 1514.54 0.00 0.02 0.00 -1 -1 0.00 0.013296 0.0120352 15 27 29 8 0 0 - k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml mult_6x6.v common 5.44 vpr 66.68 MiB 0.01 7040 -1 -1 1 0.03 -1 -1 33700 -1 -1 7 13 0 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 68284 13 12 149 129 1 69 32 6 6 36 clb auto 27.4 MiB 4.03 199 682 229 444 9 66.7 MiB 0.02 0.00 3.51316 -53.1567 -3.51316 3.51316 0.06 0.000399911 0.000364812 0.00775114 0.00715794 -1 -1 -1 -1 40 438 24 403230 176413 88484.8 2457.91 0.50 0.147128 0.127344 3734 16003 -1 329 29 379 534 18280 7787 3.72931 3.72931 -57.4119 -3.72931 0 0 110337. 3064.92 0.00 0.02 0.01 -1 -1 0.00 0.0175574 0.0158074 25 38 42 9 0 0 - k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml mult_7x7.v common 3.95 vpr 66.76 MiB 0.02 7040 -1 -1 1 0.04 -1 -1 33776 -1 -1 6 15 0 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 68364 15 14 196 165 1 93 35 5 5 25 clb auto 27.2 MiB 2.85 306 947 216 708 23 66.8 MiB 0.02 0.00 3.70693 -62.6491 -3.70693 3.70693 0.02 0.000376121 0.000333163 0.00931262 0.00852228 -1 -1 -1 -1 44 480 22 151211 151211 54748.7 2189.95 0.20 0.0954411 0.083284 2196 9177 -1 392 18 349 466 14859 7098 4.20858 4.20858 -72.9456 -4.20858 0 0 71025.7 2841.03 0.00 0.03 0.01 -1 -1 0.00 0.0211201 0.0192846 36 51 57 11 0 0 - k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml mult_8x8.v common 8.23 vpr 67.12 MiB 0.01 7040 -1 -1 1 0.06 -1 -1 33688 -1 -1 5 17 0 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 68736 17 16 251 206 1 119 38 5 5 25 clb auto 27.6 MiB 7.05 397 2054 481 1553 20 67.1 MiB 0.04 0.00 3.86806 -74.2346 -3.86806 3.86806 0.03 0.00048716 0.000431817 0.0193024 0.0173986 -1 -1 -1 -1 50 602 24 151211 126010 61632.8 2465.31 0.24 0.130358 0.114428 2268 9834 -1 534 19 619 1012 32161 14755 4.95834 4.95834 -93.7979 -4.95834 0 0 77226.2 3089.05 0.00 0.04 0.01 -1 -1 0.00 0.0271021 0.0248239 44 66 75 13 0 0 - k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml mult_9x9.v common 7.16 vpr 67.18 MiB 0.02 7040 -1 -1 1 0.04 -1 -1 33916 -1 -1 8 19 0 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 68792 19 18 308 249 1 137 45 6 6 36 clb auto 27.7 MiB 5.92 455 2365 460 1885 20 67.2 MiB 0.03 0.00 4.8546 -99.6039 -4.8546 4.8546 0.03 0.000494067 0.000457319 0.0145592 0.0132203 -1 -1 -1 -1 62 737 27 403230 201615 131137. 3642.71 0.40 0.139917 0.121866 4226 23319 -1 634 19 613 910 31131 12187 5.08188 5.08188 -101.573 -5.08188 0 0 160622. 4461.73 0.00 0.04 0.02 -1 -1 0.00 0.0328006 0.0301511 55 83 93 14 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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time num_le num_luts num_add_blocks max_add_chain_length num_sub_blocks max_sub_chain_length +k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml mult_4x4.v common 2.20 vpr 64.73 MiB 1.09 63360 -1 -1 1 0.02 -1 -1 30140 -1 -1 3 9 0 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66284 9 8 75 70 1 34 20 5 5 25 clb auto 25.9 MiB 0.35 123 90 614 218 387 9 64.7 MiB 0.01 0.00 2.48207 2.48207 -27.847 -2.48207 2.48207 0.01 9.1142e-05 8.2526e-05 0.00284948 0.00263576 -1 -1 -1 -1 44 151 38 151211 75605.7 54748.7 2189.95 0.07 0.0244535 0.0205798 2196 9177 -1 119 9 90 109 2746 1383 2.64007 2.64007 -30.0799 -2.64007 0 0 71025.7 2841.03 0.00 0.01 0.01 -1 -1 0.00 0.00398542 0.00370067 13 18 19 7 0 0 +k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml mult_5x5.v common 3.56 vpr 64.87 MiB 1.21 64512 -1 -1 1 0.02 -1 -1 30152 -1 -1 2 11 0 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66424 11 10 108 97 1 49 23 4 4 16 clb auto 25.6 MiB 1.61 144 130 311 98 183 30 64.9 MiB 0.01 0.00 3.45122 3.45122 -42.5068 -3.45122 3.45122 0.01 0.000122211 0.00011105 0.00236027 0.00222968 -1 -1 -1 -1 38 205 31 50403.8 50403.8 23356.0 1459.75 0.07 0.0310065 0.0263469 1064 3436 -1 155 11 118 137 3972 2416 3.45122 3.45122 -47.4838 -3.45122 0 0 29887.0 1867.94 0.00 0.01 0.00 -1 -1 0.00 0.0060327 0.00557363 15 27 29 8 0 0 +k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml mult_6x6.v common 4.85 vpr 65.21 MiB 1.19 64896 -1 -1 1 0.02 -1 -1 29976 -1 -1 7 13 0 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66780 13 12 149 129 1 68 32 6 6 36 clb auto 25.9 MiB 2.80 259 213 732 224 501 7 65.2 MiB 0.01 0.00 3.50789 3.50789 -53.116 -3.50789 3.50789 0.02 0.000156429 0.000142731 0.00389953 0.0036633 -1 -1 -1 -1 56 371 18 403230 176413 117789. 3271.93 0.11 0.0381154 0.0327749 4086 21443 -1 348 11 215 316 13445 5456 3.49231 3.49231 -56.5872 -3.49231 0 0 149557. 4154.36 0.00 0.01 0.01 -1 -1 0.00 0.00764244 0.0070994 25 38 42 9 0 0 +k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml mult_7x7.v common 3.35 vpr 65.61 MiB 1.06 64896 -1 -1 1 0.02 -1 -1 30188 -1 -1 7 15 0 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 67184 15 14 196 165 1 92 36 6 6 36 clb auto 26.3 MiB 1.37 403 300 744 201 529 14 65.6 MiB 0.01 0.00 3.89713 3.62628 -64.1883 -3.62628 3.62628 0.02 0.000203778 0.000186501 0.00460964 0.00434602 -1 -1 -1 -1 36 756 35 403230 176413 82124.2 2281.23 0.15 0.0535333 0.0461786 3630 14583 -1 550 23 686 1034 36633 15919 4.66971 4.66971 -82.2718 -4.66971 0 0 100559. 2793.30 0.00 0.02 0.01 -1 -1 0.00 0.0134913 0.0122142 37 51 57 11 0 0 +k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml mult_8x8.v common 5.28 vpr 65.84 MiB 1.14 65664 -1 -1 1 0.03 -1 -1 30264 -1 -1 5 17 0 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 67420 17 16 251 206 1 120 38 5 5 25 clb auto 25.9 MiB 3.23 489 407 2495 683 1791 21 65.8 MiB 0.02 0.00 3.91442 3.88071 -74.5105 -3.88071 3.88071 0.01 0.000246257 0.000225884 0.0123032 0.011433 -1 -1 -1 -1 50 657 26 151211 126010 61632.8 2465.31 0.13 0.0697365 0.0608136 2268 9834 -1 542 20 727 1123 36489 16871 4.71841 4.71841 -93.0154 -4.71841 0 0 77226.2 3089.05 0.00 0.02 0.01 -1 -1 0.00 0.0149146 0.0135832 45 66 75 13 0 0 +k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml mult_9x9.v common 5.52 vpr 65.22 MiB 1.10 66432 -1 -1 1 0.03 -1 -1 30340 -1 -1 7 19 0 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 66784 19 18 308 249 1 134 44 6 6 36 clb auto 25.6 MiB 3.44 593 481 1815 377 1429 9 65.2 MiB 0.02 0.00 4.92231 4.8546 -99.9033 -4.8546 4.8546 0.02 0.000291676 0.00026758 0.00958251 0.00895714 -1 -1 -1 -1 68 826 27 403230 176413 143382. 3982.83 0.18 0.0751968 0.0658061 4366 25715 -1 720 17 520 914 34542 12871 4.61234 4.61234 -99.3851 -4.61234 0 0 176130. 4892.50 0.00 0.02 0.02 -1 -1 0.00 0.0164293 0.0151379 53 83 93 14 0 0 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_sub_tiles/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_sub_tiles/config/golden_results.txt index 8a6305788b3..3046d61aebd 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_sub_tiles/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_sub_tiles/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 total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - sub_tiles.xml sub_tiles.blif common 17.34 vpr 59.06 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 6 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 60480 6 7 19 26 0 19 26 3 3 9 -1 auto 20.6 MiB 0.00 51 216 43 63 110 59.1 MiB 0.00 0.00 3.682 -25.774 -3.682 nan 15.93 4.894e-05 4.1022e-05 0.00272802 0.000370563 -1 -1 -1 -1 6 19 3 14813.4 192574 -1 -1 0.13 0.00475066 0.00224296 1370 14749 -1 19 3 36 39 5813 2852 3.87729 nan -27.141 -3.87729 0 0 -1 -1 0.00 0.00 0.05 -1 -1 0.00 0.00235645 0.00226006 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +sub_tiles.xml sub_tiles.blif common 4.55 vpr 57.54 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 6 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 58916 6 7 19 26 0 19 26 3 3 9 -1 auto 19.4 MiB 0.00 51 51 216 43 63 110 57.5 MiB 0.00 0.00 3.92819 3.682 -25.774 -3.682 nan 3.82 2.1746e-05 1.7637e-05 0.000209106 0.000168705 -1 -1 -1 -1 6 19 3 14813.4 192574 -1 -1 0.06 0.00145582 0.00132483 1370 14749 -1 19 3 36 39 5813 2852 3.87729 nan -27.141 -3.87729 0 0 -1 -1 0.00 0.00 0.03 -1 -1 0.00 0.00105587 0.000992599 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_sub_tiles_directs/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_sub_tiles_directs/config/golden_results.txt index 518626ca870..792e122ceda 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_sub_tiles_directs/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_sub_tiles_directs/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 total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - heterogeneous_tile.xml sub_tile_directs.blif common 0.35 vpr 58.87 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 4 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 60280 2 2 4 5 0 4 5 3 3 9 -1 auto 20.6 MiB 0.00 8 12 0 0 12 58.9 MiB 0.00 0.00 1.899 -3.798 -1.899 nan 0.03 1.7797e-05 1.2853e-05 0.000104532 7.7041e-05 -1 -1 -1 -1 3 8 1 0 0 -1 -1 0.01 0.00210372 0.00170648 132 326 -1 8 1 4 4 200 164 2.09013 nan -4.05732 -2.09013 0 0 -1 -1 0.00 0.00 0.00 -1 -1 0.00 0.0014857 0.00144705 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +heterogeneous_tile.xml sub_tile_directs.blif common 0.28 vpr 56.75 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 4 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 58116 2 2 4 5 0 4 5 3 3 9 -1 auto 18.4 MiB 0.00 8 8 12 0 0 12 56.8 MiB 0.00 0.00 1.899 1.899 -3.798 -1.899 nan 0.01 9.975e-06 6.727e-06 7.0576e-05 5.1334e-05 -1 -1 -1 -1 3 8 1 0 0 -1 -1 0.00 0.00125353 0.00115577 132 326 -1 8 1 4 4 200 164 2.09013 nan -4.05732 -2.09013 0 0 -1 -1 0.00 0.00 0.00 -1 -1 0.00 0.000874998 0.000839109 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_sweep_constant_outputs/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_sweep_constant_outputs/config/golden_results.txt index 2adfcb2953c..06a46bcee1a 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_sweep_constant_outputs/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_sweep_constant_outputs/config/golden_results.txt @@ -1,2 +1,2 @@ - arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - k6_N10_mem32K_40nm.xml ch_intrinsics.v common 2.13 vpr 66.94 MiB 0.07 9984 -1 -1 3 0.37 -1 -1 39768 -1 -1 19 99 1 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 68544 99 74 307 381 1 199 193 8 8 64 io memory auto 27.3 MiB 0.07 869 22473 4565 15889 2019 66.9 MiB 0.09 0.00 2.15432 -215.614 -2.15432 2.15432 0.09 0.000919068 0.000833008 0.0321902 0.029066 -1 -1 -1 -1 32 1554 36 2.23746e+06 1.57199e+06 106908. 1670.44 0.41 0.172041 0.155343 4378 18911 -1 1152 12 699 1089 60199 20903 2.21433 2.21433 -220.084 -2.21433 0 0 130676. 2041.82 0.01 0.06 0.03 -1 -1 0.01 0.0316397 0.0293511 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +k6_N10_mem32K_40nm.xml ch_intrinsics.v common 3.49 odin 99.75 MiB 2.08 102144 -1 -1 3 0.21 -1 -1 34100 -1 -1 19 99 1 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 67276 99 74 307 381 1 197 193 8 8 64 io memory auto 25.6 MiB 0.03 1382 812 18574 3262 13483 1829 65.7 MiB 0.04 0.00 2.24422 2.11879 -214.824 -2.11879 2.11879 0.04 0.00043653 0.000403884 0.0169436 0.0157473 -1 -1 -1 -1 34 1407 30 2.23746e+06 1.57199e+06 111309. 1739.21 0.29 0.114174 0.102974 4442 19988 -1 1106 23 739 1099 89273 34816 2.38477 2.38477 -220.891 -2.38477 0 0 136889. 2138.88 0.00 0.04 0.01 -1 -1 0.00 0.0218706 0.0199682 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_target_pin_util/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_target_pin_util/config/golden_results.txt index b4f05d4d127..67c1e31e1bc 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_target_pin_util/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_target_pin_util/config/golden_results.txt @@ -1,14 +1,14 @@ - arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - EArch.xml styr.blif common_--target_ext_pin_util_1 1.31 vpr 68.68 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 11 10 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 70324 10 10 168 178 1 73 31 6 6 36 clb auto 29.0 MiB 0.20 399 703 140 536 27 68.7 MiB 0.02 0.00 2.34639 -26.9899 -2.34639 2.34639 0.04 0.000310541 0.000262563 0.00936798 0.00854482 -1 -1 -1 -1 30 794 18 646728 592834 55714.4 1547.62 0.46 0.175458 0.152388 2692 9921 -1 727 18 505 1726 58085 22424 2.63063 2.63063 -33.1038 -2.63063 0 0 68154.2 1893.17 0.00 0.04 0.01 -1 -1 0.00 0.0280432 0.0256776 - EArch.xml styr.blif common_--target_ext_pin_util_0.7 1.18 vpr 68.53 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 11 10 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 70172 10 10 168 178 1 73 31 6 6 36 clb auto 28.9 MiB 0.19 399 703 140 536 27 68.5 MiB 0.01 0.00 2.34639 -26.9899 -2.34639 2.34639 0.02 0.000328824 0.000280405 0.00830952 0.00754823 -1 -1 -1 -1 30 794 18 646728 592834 55714.4 1547.62 0.31 0.10752 0.0932813 2692 9921 -1 727 18 505 1726 58085 22424 2.63063 2.63063 -33.1038 -2.63063 0 0 68154.2 1893.17 0.00 0.05 0.01 -1 -1 0.00 0.0371511 0.0342602 - EArch.xml styr.blif common_--target_ext_pin_util_0.1,0.5 4.10 vpr 69.07 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 91 10 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 70728 10 10 168 178 1 162 111 14 14 196 clb auto 29.4 MiB 0.90 1467 5165 686 4267 212 69.1 MiB 0.05 0.00 2.95542 -36.8348 -2.95542 2.95542 0.39 0.000594399 0.00050939 0.0158932 0.0140866 -1 -1 -1 -1 24 2876 16 9.20055e+06 4.90435e+06 355930. 1815.97 1.49 0.204118 0.178235 18592 71249 -1 2738 14 605 2492 132798 29734 3.39858 3.39858 -42.8555 -3.39858 0 0 449262. 2292.15 0.04 0.10 0.10 -1 -1 0.04 0.0402804 0.0376719 - EArch.xml styr.blif common_--target_ext_pin_util_0.5,0.3 1.27 vpr 68.66 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 13 10 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 70312 10 10 168 178 1 75 33 7 7 49 clb auto 29.2 MiB 0.22 414 605 98 486 21 68.7 MiB 0.02 0.00 2.40687 -27.3475 -2.40687 2.40687 0.06 0.000598343 0.000517434 0.011833 0.0108149 -1 -1 -1 -1 26 1062 27 1.07788e+06 700622 75813.7 1547.22 0.28 0.112886 0.100348 3816 13734 -1 940 18 540 1691 67850 23781 2.86939 2.86939 -35.5441 -2.86939 0 0 91376.6 1864.83 0.00 0.05 0.02 -1 -1 0.00 0.0342617 0.0315172 - EArch.xml styr.blif common_--target_ext_pin_util_0.0 2.32 vpr 68.98 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 104 10 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 70636 10 10 168 178 1 163 124 14 14 196 clb auto 29.3 MiB 0.71 1526 7540 1144 6026 370 69.0 MiB 0.04 0.00 3.12689 -38.2571 -3.12689 3.12689 0.24 0.000341831 0.000287957 0.0139093 0.0123738 -1 -1 -1 -1 20 3129 15 9.20055e+06 5.60498e+06 295730. 1508.82 0.36 0.0484505 0.0438885 18004 60473 -1 3052 13 680 3211 188673 40435 3.88935 3.88935 -46.4141 -3.88935 0 0 387483. 1976.95 0.03 0.08 0.07 -1 -1 0.03 0.0262959 0.0240352 - EArch.xml styr.blif common_--target_ext_pin_util_clb_0.7 1.51 vpr 68.54 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 11 10 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 70184 10 10 168 178 1 73 31 6 6 36 clb auto 29.0 MiB 0.19 399 703 140 536 27 68.5 MiB 0.03 0.00 2.34639 -26.9899 -2.34639 2.34639 0.04 0.000592996 0.000513744 0.0148871 0.0136124 -1 -1 -1 -1 30 794 18 646728 592834 55714.4 1547.62 0.60 0.233947 0.201424 2692 9921 -1 727 18 505 1726 58085 22424 2.63063 2.63063 -33.1038 -2.63063 0 0 68154.2 1893.17 0.00 0.05 0.01 -1 -1 0.00 0.0337396 0.0309919 - EArch.xml styr.blif common_--target_ext_pin_util_clb_0.7_0.8 1.26 vpr 68.30 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 11 10 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 69936 10 10 168 178 1 73 31 6 6 36 clb auto 28.8 MiB 0.14 399 703 140 536 27 68.3 MiB 0.02 0.00 2.34639 -26.9899 -2.34639 2.34639 0.04 0.000607215 0.000528624 0.0138198 0.0125584 -1 -1 -1 -1 30 794 18 646728 592834 55714.4 1547.62 0.45 0.178959 0.157093 2692 9921 -1 727 18 505 1726 58085 22424 2.63063 2.63063 -33.1038 -2.63063 0 0 68154.2 1893.17 0.00 0.04 0.01 -1 -1 0.00 0.0299846 0.0274172 - EArch.xml styr.blif common_--target_ext_pin_util_clb_0.1_0.8 4.05 vpr 68.82 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 91 10 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 70468 10 10 168 178 1 162 111 14 14 196 clb auto 29.3 MiB 0.89 1467 5165 686 4267 212 68.8 MiB 0.05 0.00 2.95542 -36.8348 -2.95542 2.95542 0.31 0.000662054 0.000579378 0.0167691 0.0149922 -1 -1 -1 -1 24 2876 16 9.20055e+06 4.90435e+06 355930. 1815.97 1.58 0.235946 0.204687 18592 71249 -1 2738 14 605 2492 132798 29734 3.39858 3.39858 -42.8555 -3.39858 0 0 449262. 2292.15 0.03 0.07 0.12 -1 -1 0.03 0.0296338 0.0273566 - EArch.xml styr.blif common_--target_ext_pin_util_io_0.1,0.1_clb_0.7_0.8,1.0 1.49 vpr 68.34 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 11 10 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 69976 10 10 168 178 1 73 31 6 6 36 clb auto 28.8 MiB 0.21 399 703 140 536 27 68.3 MiB 0.02 0.00 2.34639 -26.9899 -2.34639 2.34639 0.04 0.000326035 0.000277526 0.0147842 0.0134826 -1 -1 -1 -1 30 794 18 646728 592834 55714.4 1547.62 0.61 0.214908 0.181228 2692 9921 -1 727 18 505 1726 58085 22424 2.63063 2.63063 -33.1038 -2.63063 0 0 68154.2 1893.17 0.00 0.04 0.02 -1 -1 0.00 0.0279877 0.0256826 - EArch.xml styr.blif common_--target_ext_pin_util_-0.1 0.10 vpr 29.91 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 exited with return code 1 v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 30628 10 10 168 178 1 -1 -1 -1 -1 -1 -1 -1 28.7 MiB 0.00 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - EArch.xml styr.blif common_--target_ext_pin_util_1.1 0.11 vpr 30.41 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 exited with return code 1 v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 31144 10 10 168 178 1 -1 -1 -1 -1 -1 -1 -1 28.9 MiB 0.00 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - EArch.xml styr.blif common_--target_ext_pin_util_io_0.1,0.1_clb_0.7_0.8,1.0_1.0 0.11 vpr 30.29 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 exited with return code 1 v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 31020 10 10 168 178 1 -1 -1 -1 -1 -1 -1 -1 29.2 MiB 0.00 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - EArch.xml styr.blif common_--target_ext_pin_util_io_0.1,0.1_clb_0.7_0.8,1.0_clb_1.0 0.11 vpr 30.00 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 exited with return code 1 v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 30716 10 10 168 178 1 -1 -1 -1 -1 -1 -1 -1 29.0 MiB 0.00 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +EArch.xml styr.blif common_--target_ext_pin_util_1 0.71 vpr 67.21 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 12 10 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 68820 10 10 168 178 1 75 32 6 6 36 clb auto 27.9 MiB 0.11 467 424 582 89 470 23 67.2 MiB 0.01 0.00 2.35562 2.31651 -27.9526 -2.31651 2.31651 0.01 0.000307944 0.000276032 0.00676594 0.00627534 -1 -1 -1 -1 30 842 27 646728 646728 55714.4 1547.62 0.12 0.0533675 0.0468966 2692 9921 -1 714 17 501 1525 53444 20549 2.38855 2.38855 -30.6143 -2.38855 0 0 68154.2 1893.17 0.00 0.03 0.01 -1 -1 0.00 0.0175152 0.0161192 +EArch.xml styr.blif common_--target_ext_pin_util_0.7 0.75 vpr 67.21 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 12 10 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 68820 10 10 168 178 1 75 32 6 6 36 clb auto 27.5 MiB 0.11 467 424 582 89 470 23 67.2 MiB 0.01 0.00 2.35562 2.31651 -27.9526 -2.31651 2.31651 0.02 0.00031604 0.000283289 0.00712143 0.00664783 -1 -1 -1 -1 30 842 27 646728 646728 55714.4 1547.62 0.13 0.0548186 0.0483415 2692 9921 -1 714 17 501 1525 53444 20549 2.38855 2.38855 -30.6143 -2.38855 0 0 68154.2 1893.17 0.00 0.03 0.01 -1 -1 0.00 0.020456 0.018652 +EArch.xml styr.blif common_--target_ext_pin_util_0.1,0.5 1.53 vpr 67.71 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 90 10 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 69336 10 10 168 178 1 162 110 14 14 196 clb auto 28.0 MiB 0.43 2218 1472 5633 779 4632 222 67.7 MiB 0.03 0.00 4.05086 3.03976 -37.3505 -3.03976 3.03976 0.15 0.000304349 0.000273692 0.0088502 0.00811274 -1 -1 -1 -1 26 2737 13 9.20055e+06 4.85046e+06 387483. 1976.95 0.27 0.0479021 0.0422392 18784 74779 -1 2724 12 481 1718 95989 21869 3.66555 3.66555 -44.1461 -3.66555 0 0 467681. 2386.13 0.02 0.03 0.04 -1 -1 0.02 0.013483 0.0124375 +EArch.xml styr.blif common_--target_ext_pin_util_0.5,0.3 0.77 vpr 67.28 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 14 10 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 68892 10 10 168 178 1 73 34 7 7 49 clb auto 27.5 MiB 0.13 556 403 749 133 594 22 67.3 MiB 0.01 0.00 2.47538 2.3678 -27.2356 -2.3678 2.3678 0.02 0.0003094 0.000282354 0.00717457 0.00670075 -1 -1 -1 -1 28 1121 29 1.07788e+06 754516 79600.7 1624.51 0.14 0.0552858 0.0488082 3864 14328 -1 1032 22 640 2278 94416 33063 2.98849 2.98849 -34.8096 -2.98849 0 0 95067.4 1940.15 0.00 0.04 0.01 -1 -1 0.00 0.0204833 0.0186535 +EArch.xml styr.blif common_--target_ext_pin_util_0.0 1.53 vpr 67.62 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 104 10 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 69248 10 10 168 178 1 163 124 14 14 196 clb auto 28.3 MiB 0.47 2325 1534 6922 992 5667 263 67.6 MiB 0.03 0.00 4.16044 3.06133 -37.5377 -3.06133 3.06133 0.16 0.000326442 0.000288594 0.0112173 0.010305 -1 -1 -1 -1 20 3156 16 9.20055e+06 5.60498e+06 295730. 1508.82 0.17 0.0294748 0.0269576 18004 60473 -1 3023 14 646 2892 171027 37325 3.649 3.649 -45.9039 -3.649 0 0 387483. 1976.95 0.01 0.04 0.03 -1 -1 0.01 0.0139433 0.0127176 +EArch.xml styr.blif common_--target_ext_pin_util_clb_0.7 0.71 vpr 67.20 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 12 10 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 68816 10 10 168 178 1 75 32 6 6 36 clb auto 27.9 MiB 0.11 467 424 582 89 470 23 67.2 MiB 0.01 0.00 2.35562 2.31651 -27.9526 -2.31651 2.31651 0.02 0.000314617 0.000282107 0.00692448 0.00646733 -1 -1 -1 -1 30 842 27 646728 646728 55714.4 1547.62 0.12 0.0534945 0.0471471 2692 9921 -1 714 17 501 1525 53444 20549 2.38855 2.38855 -30.6143 -2.38855 0 0 68154.2 1893.17 0.00 0.03 0.01 -1 -1 0.00 0.0176284 0.0162169 +EArch.xml styr.blif common_--target_ext_pin_util_clb_0.7_0.8 0.69 vpr 66.58 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 12 10 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 68176 10 10 168 178 1 75 32 6 6 36 clb auto 26.9 MiB 0.11 467 424 582 89 470 23 66.6 MiB 0.01 0.00 2.35562 2.31651 -27.9526 -2.31651 2.31651 0.01 0.000305919 0.000274687 0.00679179 0.00634009 -1 -1 -1 -1 30 842 27 646728 646728 55714.4 1547.62 0.12 0.0535061 0.0471986 2692 9921 -1 714 17 501 1525 53444 20549 2.38855 2.38855 -30.6143 -2.38855 0 0 68154.2 1893.17 0.00 0.03 0.01 -1 -1 0.00 0.0175573 0.0161405 +EArch.xml styr.blif common_--target_ext_pin_util_clb_0.1_0.8 1.49 vpr 67.57 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 90 10 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 69192 10 10 168 178 1 162 110 14 14 196 clb auto 28.3 MiB 0.41 2218 1472 5633 779 4632 222 67.6 MiB 0.03 0.00 4.05086 3.03976 -37.3505 -3.03976 3.03976 0.15 0.000318412 0.000287457 0.00903161 0.00829414 -1 -1 -1 -1 26 2737 13 9.20055e+06 4.85046e+06 387483. 1976.95 0.26 0.0468353 0.0413059 18784 74779 -1 2724 12 481 1718 95989 21869 3.66555 3.66555 -44.1461 -3.66555 0 0 467681. 2386.13 0.01 0.03 0.04 -1 -1 0.01 0.0128862 0.0118738 +EArch.xml styr.blif common_--target_ext_pin_util_io_0.1,0.1_clb_0.7_0.8,1.0 0.71 vpr 67.21 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 12 10 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 68824 10 10 168 178 1 75 32 6 6 36 clb auto 27.9 MiB 0.11 467 424 582 89 470 23 67.2 MiB 0.01 0.00 2.35562 2.31651 -27.9526 -2.31651 2.31651 0.01 0.000318255 0.000286123 0.00690877 0.00645849 -1 -1 -1 -1 30 842 27 646728 646728 55714.4 1547.62 0.12 0.0541523 0.0478013 2692 9921 -1 714 17 501 1525 53444 20549 2.38855 2.38855 -30.6143 -2.38855 0 0 68154.2 1893.17 0.00 0.03 0.01 -1 -1 0.00 0.0177266 0.0163392 +EArch.xml styr.blif common_--target_ext_pin_util_-0.1 0.09 vpr 28.26 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 exited with return code 1 v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 28936 10 10 168 178 1 -1 -1 -1 -1 -1 -1 -1 26.8 MiB 0.00 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +EArch.xml styr.blif common_--target_ext_pin_util_1.1 0.09 vpr 29.01 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 exited with return code 1 v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 29704 10 10 168 178 1 -1 -1 -1 -1 -1 -1 -1 27.5 MiB 0.00 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +EArch.xml styr.blif common_--target_ext_pin_util_io_0.1,0.1_clb_0.7_0.8,1.0_1.0 0.09 vpr 28.29 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 exited with return code 1 v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 28964 10 10 168 178 1 -1 -1 -1 -1 -1 -1 -1 27.2 MiB 0.00 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +EArch.xml styr.blif common_--target_ext_pin_util_io_0.1,0.1_clb_0.7_0.8,1.0_clb_1.0 0.09 vpr 28.63 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 exited with return code 1 v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 29320 10 10 168 178 1 -1 -1 -1 -1 -1 -1 -1 27.1 MiB 0.00 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -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_strong_odin/strong_tight_floorplan/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_tight_floorplan/config/golden_results.txt index 95f2081009b..97bcad685cb 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_tight_floorplan/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_tight_floorplan/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 total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - k6_frac_N10_40nm.xml bigkey.blif common_-read_vpr_constraints_tasks/regression_tests/vtr_reg_strong/strong_tight_floorplan/bigkey_tight.xml 9.08 vpr 75.28 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 150 229 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 77084 229 197 2152 2349 1 1013 576 16 16 256 io auto 35.8 MiB 4.29 8858 177806 51921 111135 14750 75.3 MiB 1.45 0.02 2.93018 -671.396 -2.93018 2.93018 0.00 0.00692729 0.00619106 0.572476 0.497763 -1 -1 -1 -1 -1 11350 10 1.05632e+07 8.0841e+06 4.24953e+06 16599.7 0.34 0.862195 0.757255 -1 -1 -1 -1 -1 -1 -1 -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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +k6_frac_N10_40nm.xml bigkey.blif common_-read_vpr_constraints_tasks/regression_tests/vtr_reg_strong/strong_tight_floorplan/bigkey_tight.xml 4.10 vpr 74.60 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 118 229 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 76392 229 197 2152 2349 1 1012 544 16 16 256 io auto 34.6 MiB 2.04 13816 8635 175845 51740 110676 13429 74.6 MiB 0.62 0.01 3.6187 2.93018 -676.548 -2.93018 2.93018 0.00 0.00285906 0.00253098 0.244304 0.219997 -1 -1 -1 -1 -1 11066 15 1.05632e+07 6.35949e+06 4.24953e+06 16599.7 0.18 0.389441 0.356177 -1 -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_strong_odin/strong_timing/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_timing/config/golden_results.txt index a285dc5eca4..86b1be0aab8 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_timing/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_timing/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 total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - k6_frac_N10_mem32K_40nm.xml ch_intrinsics.v common 3.34 vpr 67.74 MiB 0.06 9856 -1 -1 3 0.39 -1 -1 39776 -1 -1 68 99 1 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 69364 99 130 363 493 1 251 298 12 12 144 clb auto 28.5 MiB 0.15 804 66963 21682 33533 11748 67.7 MiB 0.29 0.00 2.23767 -220.613 -2.23767 2.23767 0.27 0.00107588 0.000959454 0.0879605 0.0803385 -1 -1 -1 -1 38 1665 16 5.66058e+06 4.21279e+06 319130. 2216.18 0.81 0.341856 0.310926 12522 62564 -1 1367 8 564 725 39208 13509 2.60043 2.60043 -237.701 -2.60043 0 0 406292. 2821.48 0.03 0.05 0.14 -1 -1 0.03 0.0261531 0.0245164 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +k6_frac_N10_mem32K_40nm.xml ch_intrinsics.v common 3.91 odin 100.12 MiB 2.20 102528 -1 -1 3 0.20 -1 -1 34288 -1 -1 68 99 1 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 68344 99 130 363 493 1 252 298 12 12 144 clb auto 27.5 MiB 0.07 2018 885 69948 23010 34855 12083 66.7 MiB 0.12 0.00 2.57832 2.17528 -217.156 -2.17528 2.17528 0.09 0.000560638 0.000524271 0.0428473 0.0401199 -1 -1 -1 -1 40 1646 17 5.66058e+06 4.21279e+06 333335. 2314.82 0.33 0.159079 0.1459 12666 64609 -1 1625 10 525 650 46110 15051 2.57635 2.57635 -244.199 -2.57635 0 0 419432. 2912.72 0.01 0.02 0.04 -1 -1 0.01 0.0167278 0.0157148 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_timing_fail/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_timing_fail/config/golden_results.txt index ddf76e6dee9..61db489ac85 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_timing_fail/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_timing_fail/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 total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - k6_frac_N10_mem32K_40nm.xml ch_intrinsics.v common_-sdc_file_sdc/samples/impossible_pass_timing.sdc 3.16 vpr 67.80 MiB 0.06 9984 -1 -1 3 0.37 -1 -1 39748 -1 -1 68 99 1 0 exited with return code 1 v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 69432 99 130 363 493 1 251 298 12 12 144 clb auto 28.7 MiB 0.14 877 59998 22493 27317 10188 67.8 MiB 0.17 0.00 2.17528 -133.517 -2.17528 2.17528 0.25 0.000598743 0.00053199 0.0416228 0.0366674 -1 -1 -1 -1 40 1685 15 5.66058e+06 4.21279e+06 333335. 2314.82 1.35 -1 -1 -1 -1 -1 -1 -1 -1 -1 -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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +k6_frac_N10_mem32K_40nm.xml ch_intrinsics.v common_-sdc_file_sdc/samples/impossible_pass_timing.sdc 3.61 odin 100.12 MiB 2.11 102528 -1 -1 3 0.19 -1 -1 34096 -1 -1 68 99 1 0 exited with return code 1 v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 67704 99 130 363 493 1 252 298 12 12 144 clb auto 27.3 MiB 0.06 2007 832 63978 23229 30524 10225 66.1 MiB 0.09 0.00 2.23767 2.17638 -131.403 -2.17638 2.17638 0.09 0.000333564 0.000306163 0.0239387 0.0220541 -1 -1 -1 -1 40 1539 8 5.66058e+06 4.21279e+06 333335. 2314.82 0.44 -1 -1 -1 -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_strong_odin/strong_timing_no_fail/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_timing_no_fail/config/golden_results.txt index 4503f0925f9..af9a878e7be 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_timing_no_fail/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_timing_no_fail/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 total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - k6_frac_N10_mem32K_40nm.xml ch_intrinsics.v common_-sdc_file_sdc/samples/easy_pass_timing.sdc 3.64 vpr 67.62 MiB 0.06 9856 -1 -1 3 0.30 -1 -1 39896 -1 -1 68 99 1 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 69248 99 130 363 493 1 252 298 12 12 144 clb auto 28.5 MiB 0.14 956 73928 27133 34341 12454 67.6 MiB 0.26 0.00 2.30557 0 0 2.30557 0.25 0.000962793 0.000867177 0.0597068 0.0524058 -1 -1 -1 -1 38 1840 8 5.66058e+06 4.21279e+06 319130. 2216.18 1.37 0.282428 0.244945 12522 62564 -1 1734 8 415 510 29213 8865 2.61298 2.61298 0 0 0 0 406292. 2821.48 0.02 0.03 0.09 -1 -1 0.02 0.0187719 0.0170722 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +k6_frac_N10_mem32K_40nm.xml ch_intrinsics.v common_-sdc_file_sdc/samples/easy_pass_timing.sdc 2.01 odin 99.38 MiB 0.18 101760 -1 -1 3 0.20 -1 -1 33348 -1 -1 68 99 1 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 67932 99 130 363 493 1 253 298 12 12 144 clb auto 27.5 MiB 0.07 1922 792 82883 30333 38996 13554 66.3 MiB 0.12 0.00 2.3756 2.31285 0 0 2.31285 0.09 0.000342166 0.000313838 0.0308764 0.0284297 -1 -1 -1 -1 38 1683 10 5.66058e+06 4.21279e+06 319130. 2216.18 0.44 0.205871 0.176164 12522 62564 -1 1509 8 399 488 29742 9782 3.03498 3.03498 0 0 0 0 406292. 2821.48 0.01 0.02 0.04 -1 -1 0.01 0.00956584 0.00877781 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_timing_report_detail/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_timing_report_detail/config/golden_results.txt index 0a5e59f0296..60debff32f8 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_timing_report_detail/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_timing_report_detail/config/golden_results.txt @@ -1,4 +1,4 @@ - arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - k6_frac_N10_frac_chain_mem32K_40nm.xml multiclock.blif common_--timing_report_detail_netlist 0.62 vpr 67.01 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 5 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 68616 5 3 11 14 2 9 10 4 4 16 clb auto 28.6 MiB 0.01 21 30 9 19 2 67.0 MiB 0.00 0.00 0.620042 -3.41492 -0.620042 0.545 0.01 4.8501e-05 3.4711e-05 0.00027851 0.000219913 -1 -1 -1 -1 20 24 1 107788 107788 10441.3 652.579 0.01 0.00215999 0.00198392 750 1675 -1 23 1 7 7 146 95 0.563256 0.545 -3.71515 -0.563256 0 0 13752.8 859.551 0.00 0.01 0.00 -1 -1 0.00 0.00181366 0.00173531 - k6_frac_N10_frac_chain_mem32K_40nm.xml multiclock.blif common_--timing_report_detail_aggregated 0.62 vpr 67.03 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 5 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 68636 5 3 11 14 2 9 10 4 4 16 clb auto 28.5 MiB 0.01 21 30 9 19 2 67.0 MiB 0.00 0.00 0.620042 -3.41492 -0.620042 0.545 0.01 5.1152e-05 3.666e-05 0.000287379 0.000227035 -1 -1 -1 -1 20 24 1 107788 107788 10441.3 652.579 0.03 0.0023614 0.00216487 750 1675 -1 23 1 7 7 146 95 0.563256 0.545 -3.71515 -0.563256 0 0 13752.8 859.551 0.00 0.01 0.00 -1 -1 0.00 0.0022135 0.00167838 - k6_frac_N10_frac_chain_mem32K_40nm.xml multiclock.blif common_--timing_report_detail_detailed 0.55 vpr 67.32 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 5 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 68936 5 3 11 14 2 9 10 4 4 16 clb auto 28.9 MiB 0.01 21 30 9 19 2 67.3 MiB 0.00 0.00 0.620042 -3.41492 -0.620042 0.545 0.01 5.7208e-05 4.2383e-05 0.000322556 0.000257546 -1 -1 -1 -1 20 24 1 107788 107788 10441.3 652.579 0.02 0.00215648 0.00197387 750 1675 -1 23 1 7 7 146 95 0.563256 0.545 -3.71515 -0.563256 0 0 13752.8 859.551 0.00 0.01 0.00 -1 -1 0.00 0.00181267 0.00173458 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +k6_frac_N10_frac_chain_mem32K_40nm.xml multiclock.blif common_--timing_report_detail_netlist 0.37 vpr 65.77 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 5 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 67352 5 3 11 14 2 9 10 4 4 16 clb auto 27.1 MiB 0.00 24 21 30 9 19 2 65.8 MiB 0.00 0.00 0.713166 0.620042 -3.41492 -0.620042 0.545 0.00 2.3433e-05 1.6316e-05 0.000167701 0.000131993 -1 -1 -1 -1 20 24 1 107788 107788 10441.3 652.579 0.01 0.00124098 0.00112929 750 1675 -1 23 1 7 7 146 95 0.563256 0.545 -3.71515 -0.563256 0 0 13752.8 859.551 0.00 0.00 0.00 -1 -1 0.00 0.00103978 0.000979331 +k6_frac_N10_frac_chain_mem32K_40nm.xml multiclock.blif common_--timing_report_detail_aggregated 0.38 vpr 66.16 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 5 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 67744 5 3 11 14 2 9 10 4 4 16 clb auto 27.5 MiB 0.00 24 21 30 9 19 2 66.2 MiB 0.00 0.00 0.713166 0.620042 -3.41492 -0.620042 0.545 0.00 2.4371e-05 1.7073e-05 0.000167678 0.000133091 -1 -1 -1 -1 20 24 1 107788 107788 10441.3 652.579 0.01 0.00122278 0.00111533 750 1675 -1 23 1 7 7 146 95 0.563256 0.545 -3.71515 -0.563256 0 0 13752.8 859.551 0.00 0.00 0.00 -1 -1 0.00 0.00104402 0.000992025 +k6_frac_N10_frac_chain_mem32K_40nm.xml multiclock.blif common_--timing_report_detail_detailed 0.41 vpr 65.78 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 5 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 67356 5 3 11 14 2 9 10 4 4 16 clb auto 27.5 MiB 0.00 24 21 30 9 19 2 65.8 MiB 0.00 0.00 0.713166 0.620042 -3.41492 -0.620042 0.545 0.00 2.3581e-05 1.6396e-05 0.000163408 0.000128983 -1 -1 -1 -1 20 24 1 107788 107788 10441.3 652.579 0.01 0.00126469 0.0011518 750 1675 -1 23 1 7 7 146 95 0.563256 0.545 -3.71515 -0.563256 0 0 13752.8 859.551 0.00 0.00 0.00 -1 -1 0.00 0.00112382 0.00106571 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_timing_update_diff/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_timing_update_diff/config/golden_results.txt index 9d457582f18..1814e2bfbd5 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_timing_update_diff/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_timing_update_diff/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 total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision3.v common 2.68 vpr 69.25 MiB 0.08 10496 -1 -1 5 0.17 -1 -1 36364 -1 -1 14 11 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 70908 11 30 313 321 2 115 55 7 7 49 clb auto 29.8 MiB 0.39 448 1927 352 1502 73 69.2 MiB 0.04 0.00 2.6627 -173.06 -2.6627 2.30313 0.00 0.000798161 0.000674358 0.0213182 0.0191108 -1 -1 -1 -1 -1 595 8 1.07788e+06 754516 219490. 4479.39 0.04 0.060298 0.0550487 -1 -1 -1 -1 -1 -1 -1 -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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision3.v common 4.79 odin 156.75 MiB 3.12 160512 -1 -1 5 0.11 -1 -1 33284 -1 -1 14 11 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 69568 11 30 313 321 2 114 55 7 7 49 clb auto 28.3 MiB 0.18 671 455 1719 301 1356 62 67.9 MiB 0.02 0.00 2.73611 2.6413 -165.526 -2.6413 2.31106 0.00 0.000433259 0.000381809 0.011092 0.0100284 -1 -1 -1 -1 -1 571 12 1.07788e+06 754516 219490. 4479.39 0.02 0.0308004 0.0280931 -1 -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_strong_odin/strong_timing_update_type/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_timing_update_type/config/golden_results.txt index 070113b9371..f78c9ca7563 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_timing_update_type/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_timing_update_type/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 ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - k6_N10_mem32K_40nm.xml stereovision3.v common_--timing_update_type_auto 1.31 vpr 66.76 MiB 0.06 10368 -1 -1 4 0.22 -1 -1 36924 -1 -1 19 11 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 68364 11 30 262 292 2 99 60 7 7 49 clb auto 27.3 MiB 0.08 425 2283 406 1804 73 66.8 MiB 0.04 0.00 2.45115 -182.341 -2.45115 2.3368 0.00 0.000550429 0.00044745 0.0205892 0.0175295 -1 -1 -1 -1 -1 414 20 1.07788e+06 1.02399e+06 207176. 4228.08 0.07 0.0715823 0.0554655 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - k6_N10_mem32K_40nm.xml stereovision3.v common_--timing_update_type_full 1.35 vpr 67.11 MiB 0.08 10368 -1 -1 4 0.22 -1 -1 36664 -1 -1 19 11 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 68720 11 30 262 292 2 99 60 7 7 49 clb auto 27.5 MiB 0.09 425 2283 406 1804 73 67.1 MiB 0.03 0.00 2.45115 -182.341 -2.45115 2.3368 0.00 0.000592669 0.000483133 0.0176652 0.0153201 -1 -1 -1 -1 -1 414 20 1.07788e+06 1.02399e+06 207176. 4228.08 0.08 0.0695138 0.0618702 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - k6_N10_mem32K_40nm.xml stereovision3.v common_--timing_update_type_incremental 1.40 vpr 66.21 MiB 0.07 10368 -1 -1 4 0.18 -1 -1 36668 -1 -1 19 11 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 67804 11 30 262 292 2 99 60 7 7 49 clb auto 27.1 MiB 0.09 425 2283 406 1804 73 66.2 MiB 0.03 0.00 2.45115 -182.341 -2.45115 2.3368 0.00 0.000259913 0.000168736 0.00804711 0.00632437 -1 -1 -1 -1 -1 414 20 1.07788e+06 1.02399e+06 207176. 4228.08 0.05 0.0326926 0.0257255 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - k6_N10_mem32K_40nm.xml stereovision3.v common_--timing_update_type_incremental_--quench_recompute_divider_999999999 1.40 vpr 66.24 MiB 0.07 10368 -1 -1 4 0.22 -1 -1 36412 -1 -1 19 11 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 67828 11 30 262 292 2 99 60 7 7 49 clb auto 27.3 MiB 0.09 425 2283 406 1804 73 66.2 MiB 0.03 0.00 2.45115 -182.341 -2.45115 2.3368 0.00 0.000820125 0.000270462 0.0105947 0.00836537 -1 -1 -1 -1 -1 414 20 1.07788e+06 1.02399e+06 207176. 4228.08 0.07 0.0358221 0.028376 -1 -1 -1 -1 -1 -1 -1 -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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +k6_N10_mem32K_40nm.xml stereovision3.v common_--timing_update_type_auto 3.52 odin 166.88 MiB 2.58 170880 -1 -1 4 0.12 -1 -1 33100 -1 -1 20 11 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 67268 11 30 262 292 2 99 61 7 7 49 clb auto 25.6 MiB 0.04 688 437 2341 384 1888 69 65.7 MiB 0.02 0.00 2.91853 2.7389 -178.372 -2.7389 2.43544 0.00 0.000407927 0.000352794 0.0103629 0.00913612 -1 -1 -1 -1 -1 434 23 1.07788e+06 1.07788e+06 207176. 4228.08 0.03 0.0329737 0.0288413 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6_N10_mem32K_40nm.xml stereovision3.v common_--timing_update_type_full 3.51 odin 167.25 MiB 2.59 171264 -1 -1 4 0.12 -1 -1 33100 -1 -1 20 11 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 67268 11 30 262 292 2 99 61 7 7 49 clb auto 25.6 MiB 0.04 688 437 2341 384 1888 69 65.7 MiB 0.02 0.00 2.91853 2.7389 -178.372 -2.7389 2.43544 0.00 0.000396579 0.000343532 0.0101806 0.00898166 -1 -1 -1 -1 -1 434 23 1.07788e+06 1.07788e+06 207176. 4228.08 0.03 0.0321781 0.0281256 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6_N10_mem32K_40nm.xml stereovision3.v common_--timing_update_type_incremental 3.92 odin 167.25 MiB 2.91 171264 -1 -1 4 0.12 -1 -1 33076 -1 -1 20 11 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 67276 11 30 262 292 2 99 61 7 7 49 clb auto 26.0 MiB 0.04 688 437 2341 384 1888 69 65.7 MiB 0.03 0.00 2.91853 2.7389 -178.372 -2.7389 2.43544 0.00 7.0829e-05 2.2318e-05 0.00621115 0.00447324 -1 -1 -1 -1 -1 434 23 1.07788e+06 1.07788e+06 207176. 4228.08 0.03 0.0212245 0.0160265 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6_N10_mem32K_40nm.xml stereovision3.v common_--timing_update_type_incremental_--quench_recompute_divider_999999999 3.38 odin 167.25 MiB 2.47 171264 -1 -1 4 0.12 -1 -1 33108 -1 -1 20 11 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 67268 11 30 262 292 2 99 61 7 7 49 clb auto 26.0 MiB 0.04 688 437 2341 384 1888 69 65.7 MiB 0.01 0.00 2.91853 2.7389 -178.372 -2.7389 2.43544 0.00 0.000417801 7.7923e-05 0.00452636 0.00335783 -1 -1 -1 -1 -1 434 23 1.07788e+06 1.07788e+06 207176. 4228.08 0.02 0.016299 0.0118717 -1 -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_strong_odin/strong_titan/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_titan/config/golden_results.txt index ec4372e5ea5..5ebdbecff03 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_titan/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_titan/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_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 ucsb_152_tap_fir_stratixiv_arch_timing.blif common 76.86 vpr 1.16 GiB 42 758 0 0 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 1215732 13 29 26295 20086 1 12439 800 39 29 1131 LAB auto 1063.5 MiB 14.49 75097 245792 47628 188491 9673 1158.4 MiB 19.32 0.31 4.99421 -5497.03 -3.99421 2.87584 0.01 0.0645942 0.0566793 4.57717 3.66743 87123 7.00515 21186 1.70347 25964 36365 9630576 1720385 0 0 2.05929e+07 18207.7 13 331560 3499109 -1 5.30154 2.77187 -5700.98 -4.30154 0 0 8.99 -1 -1 1158.4 MiB 6.77 7.11559 5.86421 1158.4 MiB -1 3.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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est 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 ucsb_152_tap_fir_stratixiv_arch_timing.blif common 32.94 vpr 1.16 GiB 42 749 0 0 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 1215300 13 29 26295 20086 1 12646 791 39 29 1131 LAB auto 1077.6 MiB 7.56 231619 75107 234775 43541 180854 10380 1154.8 MiB 5.78 0.08 5.55061 5.16398 -5504.03 -4.16398 2.86102 0.00 0.022899 0.0201602 1.65582 1.36851 87307 6.90501 21230 1.67906 25811 34329 9106433 1637889 0 0 2.05929e+07 18207.7 13 331560 3499109 -1 5.36451 2.98815 -5707.14 -4.36451 0 0 3.12 -1 -1 1154.8 MiB 2.51 2.68373 2.2771 1154.8 MiB -1 1.04 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_two_chains/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_two_chains/config/golden_results.txt index 9097fbde85d..ea5a62166c3 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_two_chains/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_two_chains/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 total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time num_le num_luts num_add_blocks max_add_chain_length num_sub_blocks max_sub_chain_length - k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml diffeq2.v common 18.00 vpr 70.38 MiB 0.05 10112 -1 -1 6 0.25 -1 -1 38052 -1 -1 15 66 0 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 72072 66 96 1000 687 1 578 192 18 18 324 mult_27 auto 31.1 MiB 2.15 5241 46091 14804 26339 4948 70.4 MiB 0.71 0.01 16.7702 -967.772 -16.7702 16.7702 0.75 0.00350611 0.00326694 0.374139 0.351063 -1 -1 -1 -1 54 12671 42 6.4517e+06 1.13409e+06 1.49609e+06 4617.55 10.37 1.47511 1.37701 50360 316156 -1 11227 19 3612 7762 1892477 579383 16.9221 16.9221 -1089.8 -16.9221 0 0 1.91711e+06 5917.01 0.13 0.79 0.45 -1 -1 0.13 0.185679 0.177041 133 202 146 33 66 33 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time num_le num_luts num_add_blocks max_add_chain_length num_sub_blocks max_sub_chain_length +k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml diffeq2.v common 8.84 odin 81.00 MiB 1.62 82944 -1 -1 6 0.10 -1 -1 34308 -1 -1 16 66 0 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 70700 66 96 1000 687 1 578 193 18 18 324 mult_27 auto 29.7 MiB 0.88 8817 5194 44753 13259 26140 5354 69.0 MiB 0.26 0.00 17.614 16.4128 -968.178 -16.4128 16.4128 0.28 0.00142532 0.00134186 0.124539 0.117372 -1 -1 -1 -1 56 13393 29 6.4517e+06 1.15929e+06 1.55150e+06 4788.57 3.94 0.460824 0.429459 50684 323660 -1 11784 18 3706 7635 1966406 594465 16.8068 16.8068 -1080.85 -16.8068 0 0 1.95585e+06 6036.58 0.05 0.30 0.16 -1 -1 0.05 0.0694977 0.0659629 133 202 146 33 66 33 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_unroute_analysis/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_unroute_analysis/config/golden_results.txt index 9b26c986ccf..ec7b2e0c03c 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_unroute_analysis/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_unroute_analysis/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 ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_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 - k6_N10_mem32K_40nm.xml traffic.blif common_--route_chan_width_20 0.53 vpr 65.10 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 3 6 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 66664 6 8 39 47 1 20 17 5 5 25 clb auto 26.9 MiB 0.03 88 59 31 28 0 65.1 MiB 0.01 0.00 1.35996 -15.7932 -1.35996 1.35996 0.00 0.00022667 0.0001997 0.00145978 0.00134015 -1 -1 -1 -1 77 4.05263 38 2.00000 131 232 5197 2020 323364 161682 20103.2 804.128 18 1140 2762 -1 1.30886 1.30886 -16.2255 -1.30886 0 0 0.01 -1 -1 65.1 MiB 0.01 0.0151269 0.0141345 65.1 MiB -1 0.00 - k6_N10_mem32K_40nm.xml traffic.blif common_--route_chan_width_20_--analysis 0.49 vpr 65.18 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 3 6 0 0 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 66748 6 8 39 47 1 20 17 5 5 25 clb auto 26.8 MiB 0.02 88 59 31 28 0 65.2 MiB 0.00 0.00 1.35996 -15.7932 -1.35996 1.35996 0.00 0.000166651 0.000146123 0.00118945 0.00110009 -1 -1 -1 -1 77 4.05263 38 2.00000 131 232 5197 2020 323364 161682 20103.2 804.128 18 1140 2762 -1 1.30886 1.30886 -16.2255 -1.30886 0 0 0.00 -1 -1 65.2 MiB 0.01 0.0110046 0.0100571 65.2 MiB -1 0.00 - k6_N10_mem32K_40nm.xml traffic.blif common_--route_chan_width_8 0.25 vpr 65.20 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 3 6 0 0 exited with return code 2 v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 66768 6 8 39 47 1 20 17 5 5 25 clb auto 26.9 MiB 0.02 88 59 31 28 0 65.2 MiB 0.00 0.00 1.36028 -15.8 -1.36028 1.36028 0.00 0.000189994 0.000167385 0.00110293 0.00101544 -1 -1 -1 -1 -1 -1 -1 -1 654 1027 31303 15229 -1 -1 -1 -1 -1 996 1634 -1 -1 -1 -1 -1 -1 -1 0.00 -1 -1 65.2 MiB 0.03 -1 -1 65.2 MiB -1 0.00 - k6_N10_mem32K_40nm.xml traffic.blif common_--route_chan_width_8_--analysis 0.27 vpr 65.18 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 3 6 0 0 exited with return code 2 v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 66748 6 8 39 47 1 20 17 5 5 25 clb auto 26.9 MiB 0.02 88 59 31 28 0 65.2 MiB 0.00 0.00 1.36028 -15.8 -1.36028 1.36028 0.00 0.000187343 0.000161123 0.00133988 0.00123837 -1 -1 -1 -1 142 7.47368 66 3.47368 654 1027 31303 15229 323364 161682 9037.03 361.481 -1 996 1634 -1 1.84852 1.84852 -21.9824 -1.84852 0 0 0.00 -1 -1 65.2 MiB 0.04 -1 -1 65.2 MiB -1 0.00 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time 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 +k6_N10_mem32K_40nm.xml traffic.blif common_--route_chan_width_20 0.18 vpr 63.66 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 3 6 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65184 6 8 39 47 1 20 17 5 5 25 clb auto 25.3 MiB 0.01 107 88 59 31 28 0 63.7 MiB 0.00 0.00 1.35996 1.35996 -15.7932 -1.35996 1.35996 0.00 7.9799e-05 7.1099e-05 0.000712939 0.000670565 -1 -1 -1 -1 77 4.05263 38 2.00000 131 232 5199 2021 323364 161682 20103.2 804.128 18 1140 2762 -1 1.30886 1.30886 -16.2255 -1.30886 0 0 0.00 -1 -1 63.7 MiB 0.01 0.00498597 0.004445 63.7 MiB -1 0.00 +k6_N10_mem32K_40nm.xml traffic.blif common_--route_chan_width_20_--analysis 0.18 vpr 63.93 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 3 6 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65460 6 8 39 47 1 20 17 5 5 25 clb auto 25.2 MiB 0.01 107 88 59 31 28 0 63.9 MiB 0.00 0.00 1.35996 1.35996 -15.7932 -1.35996 1.35996 0.00 8.1571e-05 7.2642e-05 0.000740217 0.000697213 -1 -1 -1 -1 77 4.05263 38 2.00000 131 232 5199 2021 323364 161682 20103.2 804.128 18 1140 2762 -1 1.30886 1.30886 -16.2255 -1.30886 0 0 0.00 -1 -1 63.9 MiB 0.01 0.00512095 0.00457576 63.9 MiB -1 0.00 +k6_N10_mem32K_40nm.xml traffic.blif common_--route_chan_width_8 0.19 vpr 63.23 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 3 6 0 0 exited with return code 2 v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 64752 6 8 39 47 1 20 17 5 5 25 clb auto 24.9 MiB 0.01 107 88 59 31 28 0 63.2 MiB 0.00 0.00 1.36028 1.36028 -15.8 -1.36028 1.36028 0.00 8.191e-05 7.295e-05 0.000726941 0.000683562 -1 -1 -1 -1 -1 -1 -1 -1 656 1029 31338 15241 -1 -1 -1 -1 -1 996 1634 -1 -1 -1 -1 -1 -1 -1 0.00 -1 -1 63.2 MiB 0.02 -1 -1 63.2 MiB -1 0.00 +k6_N10_mem32K_40nm.xml traffic.blif common_--route_chan_width_8_--analysis 0.19 vpr 63.76 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 3 6 0 0 exited with return code 2 v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65292 6 8 39 47 1 20 17 5 5 25 clb auto 25.1 MiB 0.01 107 88 59 31 28 0 63.8 MiB 0.00 0.00 1.36028 1.36028 -15.8 -1.36028 1.36028 0.00 8.0823e-05 7.2013e-05 0.00072635 0.000683135 -1 -1 -1 -1 141 7.42105 65 3.42105 656 1029 31338 15241 323364 161682 9037.03 361.481 -1 996 1634 -1 1.84852 1.84852 -21.9119 -1.84852 0 0 0.00 -1 -1 63.8 MiB 0.02 -1 -1 63.8 MiB -1 0.00 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_verify_rr_graph/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_verify_rr_graph/config/golden_results.txt index a8c8aed1d54..f6f2c1145a0 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_verify_rr_graph/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_verify_rr_graph/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 ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_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 - k4_N4_90nm.xml stereovision3.v common 2.42 vpr 61.41 MiB 0.07 9984 -1 -1 6 0.21 -1 -1 36540 -1 -1 69 11 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 62880 11 30 336 366 2 175 110 11 11 121 clb auto 21.7 MiB 0.07 1099 5370 731 4291 348 61.4 MiB 0.07 0.00 3.52668 -265.051 -3.52668 3.51868 0.00 0.000895008 0.000764708 0.0287001 0.0253164 -1 -1 -1 -1 1048 6.12865 1048 6.12865 944 2940 139156 30294 180575 153823 597941. 4941.66 16 20106 83797 -1 3.39028 3.32725 -266.23 -3.39028 -0.21991 -0.0734 0.19 -1 -1 61.4 MiB 0.11 0.0797492 0.0714232 61.4 MiB -1 0.02 - k6_frac_N10_40nm.xml stereovision3.v common 1.89 vpr 62.21 MiB 0.06 9984 -1 -1 4 0.20 -1 -1 36668 -1 -1 13 11 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 63704 11 30 262 292 2 110 54 6 6 36 clb auto 22.6 MiB 0.15 403 1584 300 1231 53 62.2 MiB 0.04 0.00 2.57043 -171.01 -2.57043 2.32238 0.00 0.000808513 0.00071129 0.0212101 0.0190689 -1 -1 -1 -1 496 4.67925 221 2.08491 205 325 10915 3976 862304 700622 161034. 4473.17 9 3844 24048 -1 2.61311 2.27483 -177.098 -2.61311 0 0 0.05 -1 -1 62.2 MiB 0.04 0.0510796 0.0464992 62.2 MiB -1 0.00 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time 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 +k4_N4_90nm.xml stereovision3.v common 2.87 odin 150.38 MiB 1.42 153984 -1 -1 6 0.13 -1 -1 33084 -1 -1 65 11 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 61456 11 30 336 366 2 170 106 11 11 121 clb auto 20.6 MiB 0.03 1794 1031 5856 842 4573 441 60.0 MiB 0.03 0.00 6.01276 3.5056 -244.76 -3.5056 3.41098 0.00 0.000481658 0.0004129 0.0143059 0.0124525 -1 -1 -1 -1 976 5.87952 976 5.87952 913 2746 123850 27697 180575 144906 597941. 4941.66 13 20106 83797 -1 3.39028 3.23041 -241.825 -3.39028 -0.29331 -0.0734 0.06 -1 -1 60.0 MiB 0.04 0.0324494 0.0284835 60.0 MiB -1 0.01 +k6_frac_N10_40nm.xml stereovision3.v common 2.96 odin 151.50 MiB 1.71 155136 -1 -1 4 0.12 -1 -1 33092 -1 -1 13 11 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 61812 11 30 262 292 2 107 54 6 6 36 clb auto 21.0 MiB 0.07 561 400 1890 329 1495 66 60.4 MiB 0.02 0.00 2.44705 2.33435 -170.194 -2.33435 2.21316 0.00 0.000401082 0.000350284 0.0105728 0.00946584 -1 -1 -1 -1 486 4.71845 224 2.17476 223 387 11633 4030 862304 700622 161034. 4473.17 11 3844 24048 -1 2.35133 2.20841 -178.735 -2.35133 0 0 0.01 -1 -1 60.4 MiB 0.02 0.0271978 0.024617 60.4 MiB -1 0.00 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_verify_rr_graph_bin/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_verify_rr_graph_bin/config/golden_results.txt index c745d2940f2..c5a98194fb1 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_verify_rr_graph_bin/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_verify_rr_graph_bin/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 ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_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 - k4_N4_90nm.xml stereovision3.v common 2.36 vpr 61.16 MiB 0.06 9984 -1 -1 6 0.24 -1 -1 36564 -1 -1 69 11 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 62624 11 30 336 366 2 175 110 11 11 121 clb auto 21.6 MiB 0.08 1099 5370 731 4291 348 61.2 MiB 0.08 0.00 3.52668 -265.051 -3.52668 3.51868 0.00 0.00109238 0.000939106 0.0296397 0.0256861 -1 -1 -1 -1 1048 6.12865 1048 6.12865 944 2940 139156 30294 180575 153823 597941. 4941.66 16 20106 83797 -1 3.39028 3.32725 -266.23 -3.39028 -0.21991 -0.0734 0.18 -1 -1 61.2 MiB 0.09 0.0740596 0.0653877 61.2 MiB -1 0.03 - k6_frac_N10_40nm.xml stereovision3.v common 1.71 vpr 62.40 MiB 0.03 10112 -1 -1 4 0.22 -1 -1 36668 -1 -1 13 11 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 63900 11 30 262 292 2 110 54 6 6 36 clb auto 22.9 MiB 0.13 403 1584 300 1231 53 62.4 MiB 0.04 0.00 2.57043 -171.01 -2.57043 2.32238 0.00 0.000733682 0.000641677 0.0178767 0.0155436 -1 -1 -1 -1 496 4.67925 221 2.08491 205 325 10915 3976 862304 700622 161034. 4473.17 9 3844 24048 -1 2.61311 2.27483 -177.098 -2.61311 0 0 0.04 -1 -1 62.4 MiB 0.04 0.0527381 0.04796 62.4 MiB -1 0.01 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time 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 +k4_N4_90nm.xml stereovision3.v common 2.68 odin 150.38 MiB 1.39 153984 -1 -1 6 0.12 -1 -1 33080 -1 -1 65 11 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 61460 11 30 336 366 2 170 106 11 11 121 clb auto 20.2 MiB 0.03 1794 1031 5856 842 4573 441 60.0 MiB 0.03 0.00 6.01276 3.5056 -244.76 -3.5056 3.41098 0.00 0.000486395 0.00042381 0.0138701 0.0120728 -1 -1 -1 -1 976 5.87952 976 5.87952 913 2746 123850 27697 180575 144906 597941. 4941.66 13 20106 83797 -1 3.39028 3.23041 -241.825 -3.39028 -0.29331 -0.0734 0.06 -1 -1 60.0 MiB 0.03 0.0307292 0.0268906 60.0 MiB -1 0.01 +k6_frac_N10_40nm.xml stereovision3.v common 2.71 odin 151.50 MiB 1.49 155136 -1 -1 4 0.12 -1 -1 33104 -1 -1 13 11 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 61808 11 30 262 292 2 107 54 6 6 36 clb auto 21.0 MiB 0.06 561 400 1890 329 1495 66 60.4 MiB 0.02 0.00 2.44705 2.33435 -170.194 -2.33435 2.21316 0.00 0.000398384 0.000344047 0.010359 0.0092135 -1 -1 -1 -1 486 4.71845 224 2.17476 223 387 11633 4030 862304 700622 161034. 4473.17 11 3844 24048 -1 2.35133 2.20841 -178.735 -2.35133 0 0 0.01 -1 -1 60.4 MiB 0.02 0.026643 0.0240418 60.4 MiB -1 0.00 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_verify_rr_graph_titan/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_verify_rr_graph_titan/config/golden_results.txt index 8249d51c4a6..7e66c359122 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_verify_rr_graph_titan/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_verify_rr_graph_titan/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 total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time 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 styr.blif common 34.23 vpr 978.34 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 -1 -1 success v8.0.0-12163-g0dba7016b-dirty Release VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-51-generic x86_64 2025-02-19T17:54:19 haydar-Precision-5820-Tower /home/haydar/vtr-verilog-to-routing 1001816 10 10 168 178 1 68 30 11 8 88 io auto 955.5 MiB 0.58 371 490 69 397 24 978.3 MiB 0.06 0.00 6.66046 -72.2933 -6.66046 6.66046 0.00 0.000593468 0.00051514 0.0111956 0.0102241 -1 -1 -1 -1 549 8.19403 169 2.52239 264 964 62268 28521 0 0 194014. 2204.70 13 11730 32605 -1 6.70864 6.70864 -73.3171 -6.70864 0 0 0.08 -1 -1 978.3 MiB 0.07 0.0418866 0.0386921 978.3 MiB -1 0.01 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time 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 styr.blif common 21.32 vpr 979.83 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 -1 -1 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 1003348 10 10 168 178 1 65 30 11 8 88 io auto 953.3 MiB 0.33 530 402 720 97 571 52 979.8 MiB 0.06 0.00 6.8225 6.61671 -72.4654 -6.61671 6.61671 0.00 0.000286578 0.00025614 0.00775293 0.0072086 -1 -1 -1 -1 669 10.4531 198 3.09375 255 965 67200 31259 0 0 194014. 2204.70 14 11730 32605 -1 6.73871 6.73871 -74.3689 -6.73871 0 0 0.03 -1 -1 979.8 MiB 0.05 0.0239292 0.0222252 979.8 MiB -1 0.01